/* ===========================
   Base Reset & Typography
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: #F6F8F0;
  color: #1A1A1A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F6F8F0; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }

/* ===========================
   Noise Overlay
   =========================== */
.noise-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ===========================
   Layout Wrapper
   =========================== */
.relative-z10 {
  position: relative;
  z-index: 10;
}

/* ===========================
   Hero Section (interactive map) — retained for Hero Section.html
   =========================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #F6F8F0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 500px at 20% 35%, rgba(157,76,221,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 80% 65%, rgba(157,76,221,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 350px 350px at 55% 20%, rgba(157,76,221,0.04) 0%, transparent 70%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse 78% 68% at 50% 50%, transparent 18%, rgba(10,10,10,0.88) 100%);
}

#map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

#connector-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

#labels {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

/* Country label pills */
.cpill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  border-radius: 9999px;
  border: 1px solid rgba(157,76,221,0.25);
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FAFAFA;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.7s ease, border-color 0.7s ease;
}
.cpill.show { opacity: 1; }
.cpill.hide { opacity: 0; }

.cpill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #9D4CDD;
  box-shadow: 0 0 8px rgba(157,76,221,0.9);
  flex-shrink: 0;
  animation: pdot 2.2s ease-in-out infinite;
}
@keyframes pdot {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(0.65); opacity: 0.5; }
}

/* Hero copy */
.content {
  position: relative;
  z-index: 6;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  user-select: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  margin-bottom: 24px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A1A1AA;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.badge svg { width: 10px; height: 10px; flex-shrink: 0; }

.headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(52px, 7.5vw, 108px);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: #FAFAFA;
  line-height: 1.05;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.65s forwards;
}
.headline strong {
  font-weight: 500;
  background: linear-gradient(to right, #9D4CDD, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub {
  margin-top: 18px;
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 300;
  color: #A1A1AA;
  letter-spacing: 0.02em;
  line-height: 1.65;
  max-width: 420px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.vline {
  width: 1px;
  height: 44px;
  margin-top: 28px;
  background: linear-gradient(to bottom, transparent, #9D4CDD 50%, transparent);
  opacity: 0;
  animation: fadeUp 0.9s ease 1.1s forwards;
}

/* Loading spinner */
#loader {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F8F0;
  transition: opacity 0.8s ease;
}
#loader.hidden { opacity: 0; pointer-events: none; }

.loader-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(157,76,221,0.15);
  border-top-color: #9D4CDD;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 2rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: #9D4CDD;
  color: #fff;
  box-shadow: 0 0 24px rgba(157, 76, 221, 0.3);
}
.btn-primary:hover {
  background-color: #8A38C9;
  box-shadow: 0 0 32px rgba(157, 76, 221, 0.5);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-outline {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: #FAFAFA;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
}

.btn-icon {
  width: 1rem; height: 1rem;
  flex-shrink: 0;
}

.btn-send, .btn-email {
  font-size: 1rem;
}

/* ===========================
   Section Reveal (blur → focus)
   =========================== */
.section-reveal {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(32px) scale(0.985);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .section-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

/* ===========================
   Marquee Section
   =========================== */
.marquee-section {
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.marquee-header {
  max-width: 80rem;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
  text-align: center;
}

.marquee-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #A1A1AA;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
}

.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-left  { left: 0;  background: linear-gradient(to right, #F6F8F0, transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(to left,  #F6F8F0, transparent); }

.marquee-track-container {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 2rem;
  cursor: default;
}

.client-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #9D4CDD;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}
.marquee-item:hover .client-avatar {
  border-color: rgba(157,76,221,0.4);
}

.client-info {
  display: flex;
  flex-direction: column;
}

.client-name {
  color: #FAFAFA;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.marquee-item:hover .client-name { color: #9D4CDD; }

.client-label {
  color: #A1A1AA;
  font-size: 0.75rem;
  white-space: nowrap;
}

.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  margin-left: 1rem;
}

/* ===========================
   Section Base
   =========================== */
.section-base {
  padding: 6rem 0;
}

@media (min-width: 640px) {
  .section-base { padding: 8rem 0; }
}

.section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .section-container { padding: 0 3rem; }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9D4CDD;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #FAFAFA;
}

.section-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #A1A1AA;
  max-width: 36rem;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* ===========================
   Services Grid
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.glass-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(157, 76, 221, 0.15);
  border-color: rgba(157, 76, 221, 0.3);
}

.service-card {
  padding: 2rem;
}

.service-icon-box {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: rgba(157,76,221,0.1);
  border: 1px solid rgba(157,76,221,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon-svg {
  width: 1.25rem; height: 1.25rem;
}

.service-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #FAFAFA;
  margin-bottom: 1rem;
}

.service-desc {
  color: #A1A1AA;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===========================
   Portfolio Grid
   =========================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

.portfolio-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.portfolio-card:hover .portfolio-img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-play-btn {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: rgba(157,76,221,0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transform: scale(0.75);
  transition: transform 0.3s ease, background 0.3s ease;
}
.portfolio-card:hover .portfolio-play-btn { transform: scale(1); }
.portfolio-play-btn:hover { background: #9D4CDD; }
.portfolio-play-btn svg { width: 1.75rem; height: 1.75rem; margin-left: 3px; }

.portfolio-overlay-title {
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  padding: 0 1rem;
}

.portfolio-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #FAFAFA;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials-section {
  background: rgba(255,255,255,0.01);
}

.carousel-wrapper {
  max-width: 56rem;
  margin: 0 auto;
}

.carousel {
  overflow: hidden;
  border-radius: 1rem;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.testimonial-card {
  padding: 3rem;
  text-align: center;
}

@media (min-width: 640px) {
  .testimonial-card { padding: 4rem; }
}

.stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
.star-icon {
  width: 1.25rem; height: 1.25rem;
}

.testimonial-quote {
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  color: #FAFAFA;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.author-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #FAFAFA;
}
.author-role {
  font-size: 0.875rem;
  color: #A1A1AA;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #A1A1AA;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.carousel-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(157,76,221,0.4);
  color: #9D4CDD;
}
.carousel-btn svg { width: 1rem; height: 1rem; }

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.carousel-dot.active {
  background: #9D4CDD;
  transform: scale(1.3);
}

/* ===========================
   Contact Form
   =========================== */
.contact-section {
  padding: 8rem 0;
  background-color: #121212;
  width: 100%;
}

.contact-form-wrap {
  width: 100%;
  margin: 0 auto;
}
.contact-delay { transition-delay: 0.2s; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  color: #A1A1AA;
  margin-bottom: 0.5rem;
  display: block;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  color: #FAFAFA;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-input,
.form-select {
  height: 2.75rem;
  padding: 0 1rem;
}

.form-textarea {
  padding: 0.75rem 1rem;
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A1A1AA' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(161,161,170,0.5); }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(157,76,221,0.5);
  box-shadow: 0 0 0 1px rgba(157,76,221,0.3);
}

.form-select option {
  background: #121212;
  color: #FAFAFA;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: #121212;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0;
  width: 100vw;
  position: relative;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .footer-inner { padding: 0 3rem; }
}

.footer-col {
  display: flex;
  align-items: center;
}

.footer-col.left { justify-content: flex-start; flex: 1; }
.footer-col.center { justify-content: center; flex: 1; }
.footer-col.right { justify-content: flex-end; flex: 1; }

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-link {
  color: #A1A1AA;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer-link:hover { color: #FAFAFA; }

.footer-copy {
  font-size: 0.875rem;
  color: #A1A1AA;
  text-align: center;
}

@media (max-width: 639px) {
  .footer-col.left, .footer-col.center, .footer-col.right {
    justify-content: center;
  }
}

/* ===========================
   Portfolio Modal
   =========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #121212;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  overflow: hidden;
  max-width: 48rem;
  width: 100%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #FAFAFA;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-close svg { width: 1rem; height: 1rem; }

.modal-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.modal-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.modal-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  cursor: pointer;
}

.modal-play-btn {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: rgba(157,76,221,0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}
.modal-play-btn:hover { background: #9D4CDD; }
.modal-play-btn svg { width: 2.25rem; height: 2.25rem; margin-left: 4px; }

.modal-play-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
}

.modal-info {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #FAFAFA;
}
.modal-desc {
  font-size: 0.875rem;
  color: #A1A1AA;
  margin-top: 0.25rem;
}

.modal-tag {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(157,76,221,0.15);
  border: 1px solid rgba(157,76,221,0.3);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9D4CDD;
  white-space: nowrap;
}

/* ===========================
   Toast
   =========================== */
.toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2000;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  max-width: 20rem;
  background: #121212;
  border: 1px solid rgba(255,255,255,0.1);
  color: #FAFAFA;
  opacity: 0;
  transform: translateX(110%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.toast.success { border-color: rgba(157,76,221,0.4); }
.toast.error   { border-color: rgba(239,68,68,0.4); }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 480px) {
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; }
}

/* ════════════════════════════════════════════════════
   ████  SUPERCHARGED HERO  ████
   Matching reference: dark bg, purple glow, timeline
   UI bars, lightning, profile avatar, sparkle
   ════════════════════════════════════════════════════ */

.super-hero {
  position: relative;
  /* Reduced height to reveal 'Trusted by' section on load */
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
  z-index: 20;
  /* Deep dark background with purple glow in center */
  background: #0E1E1C;
}

/* Giant purple glow behind everything */
.super-hero::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(120, 40, 200, 0.22) 0%, rgba(80, 20, 160, 0.12) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Secondary subtle glow near bottom */
.super-hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 400px;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Navigation ── */
.super-nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14, 30, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 0.65rem 2.5rem;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  animation: fadeDown 0.8s ease 0.2s both;
}
.super-nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  margin: 0;
  padding: 0;
}
.super-nav a {
  text-decoration: none;
  color: #a1a1aa;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.super-nav a:hover {
  color: #fff;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Main content area ── */
.super-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  width: 100%;
  padding-bottom: 2rem;
}

/* ── Headline ── */
.super-headline {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #F6F8F0;
  letter-spacing: -0.02em;
  position: relative;
  margin: 0;
  animation: fadeUp 0.9s ease 0.5s both;
}

.line1 {
  margin-bottom: 0.4rem;
}

/* "Supercharged" glowing text */
.glow-text {
  position: relative;
  display: inline-block;
  color: #F6F8F0;
  text-shadow:
    0 0 20px rgba(168,85,247,0.4),
    0 0 60px rgba(168,85,247,0.2);
}

/* ── "Video Editing" line with SVG frame asset ── */
.line2 {
  margin: 0;
  margin-bottom: -4%; /* pull the next line up into the SVG's drop shadow area */
  animation: fadeUp 0.9s ease 0.7s both;
}

.video-editing-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* The SVG frame image */
.ve-frame-svg {
  display: block;
  width: clamp(340px, 55vw, 750px);
  height: auto;
  pointer-events: none;
}

/* "Video Editing" text centered over the frame */
.ve-text-overlay {
  position: absolute;
  /* The SVG's actual shape is in the top 67% (208px out of 308px). So its center is at ~34%. */
  top: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  z-index: 2;
  text-shadow: 0 0 30px rgba(168,85,247,0.3);
}

/* ── "For Agencies" line ── */
.line3 {
  margin-top: -1rem; /* Pull up to counteract the SVG bottom padding */
  animation: fadeUp 0.9s ease 0.9s both;
}

/* ── Subtitle paragraph ── */
.super-sub {
  color: #a1a1aa;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-family: 'Manrope', sans-serif;
  margin-top: 2rem;
  max-width: 620px;
  line-height: 1.8;
  font-weight: 400;
  animation: fadeUp 0.9s ease 1.1s both;
}

/* ── Action buttons ── */
.super-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: center;
  animation: fadeUp 0.9s ease 1.3s both;
}

.btn-explore {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #a1a1aa;
  padding: 0.75rem 1.8rem;
  border-radius: 9999px;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.btn-explore:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.btn-book {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #a1a1aa;
  padding: 0.75rem 1.8rem;
  border-radius: 9999px;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.btn-book:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.cal-icon {
  width: 16px;
  height: 16px;
}

/* ════════════════════════════════════
   Background UI Elements (timelines)
   ════════════════════════════════════ */
.bg-ui-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.bg-timeline {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
}

.bg-element-left {
  position: absolute;
  top: 40%;
  left: 5%;
  width: auto;
  max-width: 30%;
}

.bg-element-right {
  position: absolute;
  top: 38%;
  right: 5%;
  width: auto;
  max-width: 35%;
}

/* Individual timeline bars */
.ui-bar {
  position: absolute;
  height: 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 3px;
  display: flex;
  align-items: center;
}
.ui-bar-fill {
  height: 100%;
  background: rgba(100, 50, 180, 0.5);
  border-radius: 3px;
  position: relative;
  box-shadow: 0 0 8px rgba(168,85,247,0.2);
}
.ui-bar-thumb {
  width: 10px;
  height: 10px;
  background: #d8b4fe;
  border-radius: 50%;
  position: absolute;
  right: -5px;
  top: -2px;
  box-shadow: 0 0 8px rgba(192,132,252,0.6);
}

.time-start, .time-end {
  position: absolute;
  top: 14px;
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  font-family: 'Manrope', sans-serif;
}
.time-start { left: 0; }
.time-end { right: 0; }

/* ── Top-right bars (stacked timeline tracks) ── */
.bar-tr1 {
  top: 28%;
  right: 5%;
  width: 180px;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.2s forwards;
}
.bar-tr1 .ui-bar-fill { width: 55%; }

.bar-tr2 {
  top: 35%;
  right: 3%;
  width: 230px;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.4s forwards;
}
.bar-tr2 .ui-bar-fill { width: 75%; }

.bar-tr3 {
  top: 42%;
  right: 8%;
  width: 140px;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.6s forwards;
}
.bar-tr3 .ui-bar-fill { width: 90%; }

/* ── Bottom-left bar (timeline with timestamps) ── */
.bar-bl1 {
  bottom: 32%;
  left: 5%;
  width: 280px;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.0s forwards;
}
.bar-bl1 .ui-bar-fill { width: 40%; }

/* ── Additional decorative bars to match the reference ── */
.bar-tl1 {
  top: 22%;
  left: 4%;
  width: 220px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.8s forwards;
}
.bar-tl1 .ui-bar-fill { width: 30%; }

.bar-tl2 {
  top: 30%;
  left: 7%;
  width: 160px;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.0s forwards;
}
.bar-tl2 .ui-bar-fill { width: 65%; }

.bar-br1 {
  bottom: 22%;
  right: 6%;
  width: 170px;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.3s forwards;
}
.bar-br1 .ui-bar-fill { width: 60%; }

.bar-br2 {
  bottom: 28%;
  right: 4%;
  width: 200px;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.5s forwards;
}
.bar-br2 .ui-bar-fill { width: 45%; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ════════════════════════════════════
   Profile Avatar (bottom-right corner)
   ════════════════════════════════════ */
.hero-avatar {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 12;
  animation: fadeUp 0.9s ease 1.5s both;
}

.hero-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 0 20px rgba(168,85,247,0.3);
  background: rgba(255,255,255,0.05);
  display: block;
}

/* ════════════════════════════════════
   Sparkle Star (bottom-right)
   ════════════════════════════════════ */
.hero-sparkle {
  position: absolute;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 12;
  animation: fadeUp 0.9s ease 1.7s both;
}

.hero-sparkle svg {
  width: 20px;
  height: 20px;
  fill: #d8b4fe;
  filter: drop-shadow(0 0 6px rgba(192,132,252,0.7));
  animation: sparklePulse 2s ease-in-out infinite;
}

@keyframes sparklePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.8); opacity: 0.6; }
}

/* ════════════════════════════════════
   Responsive Tweaks
   ════════════════════════════════════ */
@media (max-width: 768px) {
  .super-nav {
    top: 0.85rem;
    width: calc(100% - 2rem);
    max-width: 28rem;
    padding: 0.6rem 1.5rem;
  }
  .super-nav ul { gap: 1.5rem; }

  .bg-ui-elements { display: none; }

  .super-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .ve-text-overlay {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .ve-frame-svg {
    width: clamp(280px, 80vw, 500px);
  }
  .lightning-bolt {
    width: clamp(140px, 30vw, 250px);
    top: -70%;
    right: -25%;
  }

  .hero-avatar { bottom: 1.5rem; right: 1.5rem; }
  .hero-avatar-img { width: 44px; height: 44px; }
  .hero-sparkle { bottom: 1rem; right: 0.75rem; }
}

@media (max-width: 480px) {
  .super-nav ul { gap: 1rem; }
  .super-nav a { font-size: 0.8rem; }
  .super-actions { flex-direction: column; gap: 0.75rem; }
  .btn-explore, .btn-book { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════
   ████  SERVICE CHICKLET MARQUEE  ████
   Auto-scrolling strip of service categories
   ════════════════════════════════════════════════════ */

.chicklet-strip {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  z-index: 20;
}

/* Left/right edge fades */
.chicklet-fade-left,
.chicklet-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 3;
  pointer-events: none;
}
.chicklet-fade-left {
  left: 0;
  background: linear-gradient(to right, #0E1E1C, transparent);
}
.chicklet-fade-right {
  right: 0;
  background: linear-gradient(to left, #0E1E1C, transparent);
}

/* The scrolling track */
.chicklet-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: chickletScroll 40s linear infinite;
}
.chicklet-track:hover {
  animation-play-state: paused;
}

@keyframes chickletScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual chicklet container */
.chicklet {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  margin: 0 0.85rem;
  padding: 0.25rem 0.85rem 0.25rem 0.25rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  cursor: default;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.chicklet:hover {
  background: #F6F8F0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Thumbnail image */
.chicklet-img {
  width: 91px;
  height: 57px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: #222;
}

/* Label text */
.chicklet-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  color: #1A1A1A;
  letter-spacing: 0.01em;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .chicklet-fade-left,
  .chicklet-fade-right {
    width: 50px;
  }
  .chicklet-img {
    width: 71px;
    height: 45px;
  }
  .chicklet {
    padding: 0.2rem 0.6rem 0.2rem 0.2rem;
    gap: 0.6rem;
    border-radius: 10px;
  }
  .chicklet-label {
    font-size: 0.8rem;
  }
}

/* ════════════════════════════════════════════════════
   ████  RESULTS STATS SECTION  ████
   ════════════════════════════════════════════════════ */

.results-stats-section {
  padding: 6rem 2rem;
  background: #F6F8F0;
  display: flex;
  justify-content: center;
}

.results-container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.results-header {
  text-align: center;
}

.results-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 1rem;
}

.results-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #061a15;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.serif-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1.5rem;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  color: #061a15;
  line-height: 1;
  margin: 0;
}

.stat-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ════════════════════════════════════════════════════
   ████  BENTO PRODUCTION SECTION  ████
   ════════════════════════════════════════════════════ */

.bento-section {
  padding: 4rem 2rem 6rem;
  background: #F6F8F0;
  display: flex;
  justify-content: center;
}

.bento-container {
  max-width: 1400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.bento-header {
  text-align: center;
}

.bento-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 1rem;
}

.bento-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: #061a15;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.bento-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #4b5563;
  line-height: 1.5;
  margin: 0 auto;
}

/* Bento Grid System */
.bento-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bento-row {
  display: flex;
  gap: 0.75rem;
  height: 350px;
  width: 100%;
}

/* Base Card Styling */
.bento-card {
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s ease;
}

.bento-card.dark-card,
.bento-card.blue-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bento-card:hover {
  transform: translateY(-4px);
}

.bento-wide {
  flex: 2 1 0%;
}

.bento-narrow {
  flex: 1 1 0%;
}

@media (min-width: 1025px) {
  .bento-card:hover {
    flex: 0 0 622.22px; /* 16:9 ratio for 350px height */
  }
}

/* Video Background Styling */
.bento-poster,
.bento-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.bento-poster {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.bento-bg-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.bento-card.is-playing .bento-bg-video {
  opacity: 1;
}

.bento-card.is-playing .bento-poster {
  opacity: 0;
}

/* Card Overlay for Text Readability */
.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.8) 100%);
  z-index: 3;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bento-card:hover::after {
  opacity: 0;
}

/* Ensure Content Fades Out on Hover */
.bento-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: opacity 0.4s ease;
}

.bento-card:hover .bento-content {
  opacity: 0;
}

/* Title and description positioning */
.bento-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
  z-index: 2;
}

.bento-card-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
}

.bento-wide .bento-card-desc {
  max-width: 65%;
}

/* Push description to bottom */
.desc-bottom {
  margin-top: auto;
}

/* Temporary Backgrounds */
.dark-card {
  background: linear-gradient(145deg, #1A1A1A, #0A0A0A);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blue-card {
  background: linear-gradient(135deg, #7baee4, #5c8fc4);
}
.blue-card .bento-card-desc {
  color: #fff;
}

/* ===========================
   Trusted By Section
   =========================== */
.trusted-section {
  padding: 4rem 0;
  background-color: #F6F8F0;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.trusted-header {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 2.5rem;
}

.trusted-carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: flex;
}

/* Fading edges */
.trusted-carousel-container::before,
.trusted-carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}
.trusted-carousel-container::before {
  left: 0;
  background: linear-gradient(to right, #F6F8F0, transparent);
}
.trusted-carousel-container::after {
  right: 0;
  background: linear-gradient(to left, #F6F8F0, transparent);
}

.trusted-track {
  display: flex;
  width: max-content;
  animation: scrollTrusted 30s linear infinite;
}
.trusted-track:hover {
  animation-play-state: paused;
}

.trusted-logo-group {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding-right: 5rem;
}
.trusted-track:hover {
  animation-play-state: paused;
}

.trusted-track img {
  max-width: 160px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}
.trusted-track img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Specific logo adjustments */
.trusted-track img.logo-imdb {
  max-height: 45px;
}

.trusted-track img.logo-unacademy {
  max-height: 85px;
  max-width: 200px;
}

@keyframes scrollTrusted {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Responsive */
@media (max-width: 1024px) {
  .bento-row {
    flex-wrap: wrap;
    height: auto;
  }
  .bento-card {
    height: 350px;
    flex: 1 1 45%;
  }
  .bento-wide {
    flex: 1 1 100%;
  }
}

@media (max-width: 640px) {
  .bento-card {
    flex: 1 1 100%;
  }
}

/* ===========================
   Tweet Testimonials
   =========================== */
.tweet-testimonials-section {
  padding: 8rem 0;
  background: #121212;
  width: 100%;
}

.tweet-testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tweet-masonry-grid {
  display: flex;
  gap: 24px;
}

.tweet-masonry-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .tweet-masonry-grid {
    flex-direction: column;
  }
}

.tweet-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tweet-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tweet-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #FAFAFA;
  background: rgba(255, 255, 255, 0.05);
}

.bg-yellow, .bg-teal, .bg-white { 
  /* Legacy classes kept for HTML compatibility */
}

.tweet-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tweet-author-info {
  display: flex;
  flex-direction: column;
}

.tweet-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #FAFAFA;
}

.tweet-handle {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  color: #A1A1AA;
}

.tweet-content {
  flex: 1;
}

.tweet-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  color: #E4E4E7;
  line-height: 1.6;
  margin-top: 16px;
}

.tweet-footer {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  color: #71717A;
  margin-top: 16px;
}

/* ===========================
   Deliver Section
   =========================== */
.deliver-section {
  padding: 8rem 0;
  background-color: #121212;
  display: flex;
  justify-content: center;
  width: 100%;
}

.deliver-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .deliver-container {
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
  }
}

.deliver-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
}

.deliver-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #A1A1AA;
  margin-bottom: 1.5rem;
}

.deliver-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  color: #FAFAFA;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.deliver-highlight {
  background-color: #FAFAFA;
  color: #121212;
  padding: 0.1rem 0.5rem;
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 400;
}

.deliver-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: #A1A1AA;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}

.deliver-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 2rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #FAFAFA;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.deliver-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FAFAFA;
}

.deliver-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .deliver-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.deliver-card {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.deliver-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.deliver-icon {
  width: 2rem;
  height: 2rem;
  color: #9D4CDD;
  margin-bottom: 1.5rem;
}

.deliver-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #FAFAFA;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.deliver-card-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  color: #71717A;
  line-height: 1.6;
  font-weight: 300;
}
