/* ============================================================
   SUP — DESIGN SYSTEM
   Light theme: #E5E5E5 bg · #FFFFFF card/alt · #1A1A1A text/accent · Outfit font
============================================================ */

:root {
  --bg: #E5E5E5;
  --bg-2: #FFFFFF;
  --bg-card: #FFFFFF;
  --accent: #1A1A1A;
  --accent-dim: rgba(26,26,26,0.06);
  --accent-glow: rgba(26,26,26,0.12);
  --white: #1A1A1A;
  --gray-1: #1A1A1A;
  --gray-2: #1A1A1A;
  --gray-3: #7A7A7A;
  --border: rgba(26,26,26,0.08);
  --border-accent: rgba(26,26,26,0.15);
  --font: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.16,1,0.3,1);
  --nav-h: 72px;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg);
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--gray-2);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── PROGRESS BAR ───────────────────────────────────── */
.progress-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  z-index: 10000;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.1s linear;
}

/* ─── GRID OVERLAY ───────────────────────────────────── */
.grid-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 0;
  padding: 0 20px;
}
.grid-col {
  flex: 1;
  border-right: 1px dashed var(--border);
  height: 100%;
}
.grid-col:last-child { border-right: none; }

/* ─── LAYOUT HELPERS ─────────────────────────────────── */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.mt-8 { margin-top: 32px; }
.mt-6 { margin-top: 24px; }
.mt-4 { margin-top: 16px; }

/* ─── TYPOGRAPHY ─────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-3);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.section-sub {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--gray-2);
  line-height: 1.7;
  max-width: 520px;
}
.section-head { margin-bottom: 64px; }
.text-green { color: var(--accent); }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 8px 8px 24px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.btn-primary:hover {
  background: #333333;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.btn-primary .cta-arrow {
  width: 36px;
  height: 36px;
  background: #C7FF42;
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}
.btn-primary:hover .cta-arrow {
  transform: rotate(45deg);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-ghost-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-2);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s, border-color 0.25s;
}
.btn-ghost-sm:hover { color: var(--accent); border-color: var(--accent); }

/* ─── SCROLL ANIMATIONS ──────────────────────────────── */
.reveal, .fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible, .fade-in.visible {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav-header {
  position: fixed;
  top: 0; left: 20px; right: 20px;
  z-index: 100;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.4s, border-bottom-color 0.4s, backdrop-filter 0.4s;
}
.nav-header.scrolled {
  background: rgba(229, 229, 229, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: visible;
}
.nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-3);
  transition: color 0.2s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link.active::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #1A1A1A;
  margin-right: 6px;
}
.has-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s;
  z-index: 50;
}
.has-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown-panel a {
  display: block;
  padding: 10px 24px;
  font-size: 0.85rem;
  color: var(--gray-2);
  transition: color 0.2s, background 0.2s;
}
.dropdown-panel a:hover { color: var(--white); background: rgba(255,255,255,0.04); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 8px 8px 20px;
  border-radius: 50px;
  transition: all 0.3s;
}
.nav-cta span { flex: 1; white-space: nowrap; }
.cta-arrow {
  width: 34px; height: 34px;
  background: #FFFFFF;
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: transform 0.3s;
}
.nav-cta:hover .cta-arrow { transform: rotate(45deg); }
.nav-cta:hover { background: #333333; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  z-index: 101;
  position: relative;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s, width 0.25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ─── Mobile Menu ──────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: #0F0F0F;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 32px 48px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  overflow: hidden;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(26,26,26,0.25) 0%, transparent 65%);
  pointer-events: none;
}
.mobile-menu.open { transform: none; }

/* Close button */
.mob-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  background: transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.mob-close:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.3); }

/* Logo inside menu */
.mob-logo {
  display: block;
  margin-bottom: 40px;
}
.mob-logo-img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Nav links */
.mob-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  margin-bottom: 36px;
}
.mob-link {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  padding: 10px 20px;
  letter-spacing: -0.03em;
  position: relative;
  transition: color 0.2s;
  text-align: center;
}
.mob-link:hover { color: #fff; }

/* CTA button */
.mob-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1A1A1A;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  margin-bottom: 40px;
  transition: background 0.25s, transform 0.25s;
  letter-spacing: 0.01em;
}
.mob-cta:hover { background: #e5e5e5; transform: translateY(-2px); }

/* Social links */
.mob-socials {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.mob-social-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mob-social-link:hover { color: rgba(255,255,255,0.8); }
.mob-social-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background-color: #FFFFFF;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(26,26,26,0.02) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 32px 80px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Polaroid Cards */
.hero-cards-left, .hero-cards-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-cards-right { align-items: flex-end; }

.pcard {
  position: relative;
  border-radius: 16px;
  border: 1px solid #E5E5E5;
  padding: 6px;
  background: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transition: transform 0.6s var(--ease);
}
.pcard.tilt-left { transform: rotate(-5deg); }
.pcard.tilt-right { transform: rotate(5deg); }
.pcard:hover { transform: rotate(0deg) scale(1.02); }
.pcard.pcard-1 { animation: floatA 6s ease-in-out infinite; }
.pcard.pcard-3 { animation: floatB 6.5s ease-in-out infinite; }

.pcard-row {
  display: flex;
  gap: 16px;
  width: 100%;
}
.pcard-row.row-left {
  animation: floatB 7s ease-in-out infinite;
}
.pcard-row.row-right {
  animation: floatA 7.5s ease-in-out infinite;
}
.pcard-row:hover, .pcard-row:hover .pcard {
  animation: none;
}

.pcard-small {
  flex: 1;
  min-width: 0;
  padding: 4px !important;
  border-radius: 10px !important;
}
.pcard-small .square-aspect {
  width: 100%;
  aspect-ratio: 1/1;
}
.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes floatA {
  0%,100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-10px); }
}
@keyframes floatB {
  0%,100% { transform: rotate(5deg) translateY(-5px); }
  50% { transform: rotate(5deg) translateY(5px); }
}
.pcard:hover { animation: none; }

.pcard-media { border-radius: 10px; overflow: hidden; }
.video-aspect { aspect-ratio: 9/16; width: 130px; }
.square-aspect { aspect-ratio: 1/1; width: 140px; }

/* Video Mock */
.video-mock {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a1a1a 0%, #2a2a2a 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.video-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.video-play:hover {
  transform: scale(1.1);
  background: rgba(199,255,66,0.2);
  color: var(--accent);
  border-color: var(--accent);
}
.video-bars {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  z-index: 2;
  transition: opacity 0.3s var(--ease);
}
.video-bars span {
  display: block;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  animation: barPulse 1.2s ease-in-out infinite alternate;
}
.video-bars.paused span {
  animation-play-state: paused;
}
.video-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.video-bars span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.video-bars span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.video-bars span:nth-child(4) { height: 60%; animation-delay: 0.3s; }
.video-bars span:nth-child(5) { height: 80%; animation-delay: 0.15s; }
.video-bars span:nth-child(6) { height: 45%; animation-delay: 0.25s; }
@keyframes barPulse {
  from { transform: scaleY(0.4); }
  to { transform: scaleY(1); }
}
.video-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--accent);
  color: #FFFFFF;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 2;
}
.video-mute {
  position: absolute;
  bottom: 12px; right: 10px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 2;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.video-mute:hover {
  transform: scale(1.1);
  background: rgba(255,255,255,0.15);
}

/* Image Mocks */
.img-mock {
  width: 100%; height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gradient-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.gradient-2 { background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 100%); }
.gradient-3 { background: linear-gradient(135deg, #1a0f2e 0%, #2d1b69 100%); }

/* Creator Stack */
.creator-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: 14px;
}
.creator-ring {
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: rgba(199,255,66,0.08);
}
.r1 { width: 40px; height: 40px; }
.r2 { width: 30px; height: 30px; border-color: rgba(199,255,66,0.5); }
.r3 { width: 20px; height: 20px; border-color: rgba(199,255,66,0.25); }
.creator-count-badge {
  font-size: 0.55rem;
  font-weight: 800;
  color: var(--accent);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

/* Analytics Widget */
.analytics-widget {
  position: relative;
  z-index: 2;
  padding: 12px;
  width: 90%;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
.aw-label { font-size: 0.55rem; color: var(--gray-3); font-weight: 600; letter-spacing: 0.08em; }
.aw-value { font-size: 1.3rem; font-weight: 800; color: var(--accent); margin: 4px 0; }
.aw-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
}
.aw-bars span {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  transition: background 0.3s;
}
.aw-bars .bar-accent { background: var(--accent); }
.aw-change { font-size: 0.6rem; color: var(--accent); margin-top: 6px; font-weight: 600; }

/* Views Widget */
.views-widget {
  position: relative;
  z-index: 2;
  padding: 14px;
  text-align: center;
  width: 90%;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
.vw-label { font-size: 0.55rem; color: var(--gray-3); font-weight: 600; letter-spacing: 0.08em; }
.vw-value { font-size: 1.5rem; font-weight: 800; color: var(--white); margin: 6px 0; }
.vw-icon { display: flex; justify-content: center; }

/* Sparkle Decorations */
.sparkle {
  position: absolute;
  pointer-events: none;
}
.sparkle-tl { top: -10px; left: -14px; }
.sparkle-tr { top: -10px; right: -14px; }

/* ── HERO CENTER ──────────────────────────────────────── */
.hero-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-mobile-logo-wrapper {
  display: none;
}
.hero-mobile-logo {
  display: block;
  width: 100%;
  height: auto;
}
.camera-bracket {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--accent);
  pointer-events: none;
}
.camera-bracket.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.camera-bracket.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.camera-bracket.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.camera-bracket.br { bottom: 0; right: 0; border-left: none; border-top: none; }

.rec-indicator {
  position: absolute;
  top: -12px;
  right: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: monospace;
  font-size: 0.58rem;
  font-weight: 800;
  color: #ff3b30;
  letter-spacing: 0.05em;
  pointer-events: none;
}
.rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ff3b30;
  box-shadow: 0 0 6px #ff3b30;
  animation: blinkRec 1.2s step-start infinite;
}
@keyframes blinkRec {
  50% { opacity: 0; }
}

/* Experts Row */
.experts-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.experts-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.experts-logos {
  display: flex;
  align-items: center;
  gap: 14px;
}
.experts-logos svg {
  display: block;
  transition: transform 0.3s var(--ease);
}
.experts-logos svg:hover {
  transform: scale(1.15);
}

/* Headline */
.hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 5.5rem);
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  text-align: center;
}
.get-word-wrapper {
  position: relative;
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.02em;
}
.get-g-sparkle {
  position: absolute;
  top: -18px;
  left: -8px;
  font-size: 1.4rem;
  line-height: 1;
  color: #7A7A7A;
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  pointer-events: none;
  filter: none;
  transform: rotate(-20deg);
  display: block;
}
.get-g-sparkle::before {
  content: '❧';
}

/* The "Viewed [circles] get" line — inline flex row */
.viewed-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* Overlapping circles container */
.inline-avatars {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Each circle */
.iavatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid #FFFFFF;
  margin-left: -28px;
  overflow: hidden;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-80px);
  animation: slideInAvatar 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #F3F3F3;
  position: relative;
}
.iavatar:first-child { margin-left: 0; }

.iavatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.highlight-loved {
  display: block;
  font-size: clamp(3.2rem, 8.5vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #1A1A1A;
}

@keyframes slideInAvatar {
  0% {
    transform: translateX(-80px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}




.hero-sub {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto 36px;
  text-align: center;
}

/* Dynamic Combined CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.btn-primary-pill {
  background: #1A1A1A;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.btn-primary-pill:hover {
  background: #7A7A7A;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.14);
}
.btn-arrow-circle {
  width: 48px;
  height: 48px;
  background: #E5E5E5;
  color: #1A1A1A !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.btn-arrow-circle:hover {
  transform: rotate(45deg) scale(1.05);
  background: #7A7A7A;
  color: #FFFFFF !important;
}
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-3);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid var(--gray-3);
  border-radius: 11px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: #1A1A1A;
  border-radius: 2px;
  animation: scrollDown 1.5s ease infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}
.reel-icon svg {
  transform: translateX(2px); /* visual center for play button */
}

/* ======================================================
   VIDEO MODAL (Fullscreen Preview)
====================================================== */
.vmodal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.vmodal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.vmodal-container {
  position: relative;
  width: 90%;
  max-width: 450px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s;
}
.vmodal-overlay.open .vmodal-container {
  transform: scale(1);
}
.vmodal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}
.vmodal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.vmodal-frame {
  position: relative;
  width: 100%;
  padding-top: 177.77%; /* 16:9 vertical (9:16) */
}
.vmodal-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.vmodal-label {
  padding: 16px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

/* ============================================================
   MYTHS / STATS SECTION
============================================================ */
.myths-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.myths-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.myths-label-col {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.section-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-3);
  margin-bottom: 12px;
}
.myths-big-heading {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.myths-intro {
  font-size: 1.05rem;
  color: var(--gray-2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.myths-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}
.myth-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--gray-1);
  font-weight: 500;
}
.myth-item:first-child { border-top: 1px solid var(--border); }
.myth-cross {
  color: #ff4444;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.myths-closer {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 24px;
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 3px solid #000000;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-block {
  padding: 36px 24px;
  border-right: 2px solid #000000;
  transition: background 0.3s;
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: rgba(255,255,255,0.02); }
.stat-num {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-divider {
  width: 24px; height: 2px;
  background: var(--accent);
  margin-bottom: 10px;
  border-radius: 2px;
}
.stat-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.stat-desc {
  font-size: 0.75rem;
  color: var(--gray-3);
  line-height: 1.6;
}

/* ============================================================
   PARTNERS & CREATORS CIRCLE FLYWHEEL SECTION
============================================================ */
:root {
  --outer-radius: 228px;
  --inner-radius: 114px;
}
@media (max-width: 768px) {
  :root {
    --outer-radius: 180px;
    --inner-radius: 95px;
  }
}
@media (max-width: 480px) {
  :root {
    --outer-radius: 140px;
    --inner-radius: 75px;
  }
}

.partners-circle-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 991px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .partners-info {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.partners-metrics {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .partners-metrics {
    justify-content: center;
  }
}
.partner-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pm-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.pm-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Circles System */
.partners-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.circles-container {
  position: relative;
  width: 576px;
  height: 576px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .circles-container {
    width: 480px;
    height: 480px;
  }
}
@media (max-width: 480px) {
  .circles-container {
    width: 420px;
    height: 420px;
  }
}

/* Center Core */
.circles-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 65px; height: 65px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 0 30px var(--accent-glow);
}
.core-logo-img {
  max-width: 65%;
  max-height: 65%;
  object-fit: contain;
  z-index: 2;
}
.core-pulse {
  position: absolute;
  inset: -15px;
  border: 1px solid var(--border-accent);
  background: var(--accent-dim);
  border-radius: 50%;
  z-index: -1;
  animation: corePulse 3s infinite ease-in-out;
}
@keyframes corePulse {
  0% { transform: scale(0.92); opacity: 0.4; }
  50% { transform: scale(1.08); opacity: 0.75; }
  100% { transform: scale(0.92); opacity: 0.4; }
}
@media (max-width: 768px) {
  .circles-core {
    width: 42px; height: 42px;
    font-size: 1.1rem;
  }
  .core-pulse { inset: -10px; }
}
@media (max-width: 480px) {
  .circles-core {
    width: 32px; height: 32px;
    font-size: 0.9rem;
  }
  .core-pulse { inset: -8px; }
}

/* Orbits Base Layout */
.inner-circle-orbit,
.outer-circle-orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.inner-circle-orbit {
  width: calc(var(--inner-radius) * 2);
  height: calc(var(--inner-radius) * 2);
  z-index: 5;
  pointer-events: none;
}
.outer-circle-orbit {
  width: calc(var(--outer-radius) * 2);
  height: calc(var(--outer-radius) * 2);
  z-index: 4;
  pointer-events: none;
}

.orbit-line-inner,
.orbit-line-outer {
  position: absolute;
  inset: 0;
  border: 1.5px dashed rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-line-inner {
  border-color: rgba(199, 255, 66, 0.08);
}

/* Rotation Containers */
.inner-rotate-container {
  position: absolute;
  inset: 0;
  animation: spin-counter-clockwise 32s linear infinite;
  pointer-events: none;
}
.outer-rotate-container {
  position: absolute;
  inset: 0;
  animation: spin-clockwise 45s linear infinite;
  pointer-events: none;
}

.partners-visual:hover .inner-rotate-container,
.partners-visual:hover .outer-rotate-container,
.partners-visual:hover .item-content,
.circles-container:hover .inner-rotate-container,
.circles-container:hover .outer-rotate-container,
.circles-container:hover .item-content,
.inner-rotate-container:hover,
.inner-rotate-container:hover .inner-content,
.outer-rotate-container:hover,
.outer-rotate-container:hover .outer-content {
  animation-play-state: paused !important;
}

/* Orbit Items and Counter-Rotations */
.orbit-item {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--radius)) rotate(calc(-1 * var(--angle)));
  transform-origin: center;
}
.item-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-content {
  animation: spin-clockwise 32s linear infinite;
}
.outer-content {
  animation: spin-counter-clockwise 45s linear infinite;
}

/* Brand Cards inside Collaboration Orbit */
.brand-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: none;
  border: none;
  box-shadow: none;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  transition: all 0.3s var(--ease);
}
.brand-logo-circle {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.brand-card:hover .brand-logo-circle {
  transform: scale(1.1);
}
.brand-logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Keep original color - no grayscale filter! */
  transition: all 0.3s var(--ease);
}
.brand-logo-name {
  position: absolute;
  top: calc(100% + 6px); /* Absolute positioning below the circle to keep the card centered */
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-3);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
  pointer-events: none; /* Make sure it doesn't block hover events */
}
.brand-card:hover .brand-logo-name {
  color: var(--accent);
}

/* Mobile responsive scaling for brand cards */
@media (max-width: 768px) {
  .brand-card {
    width: 48px;
    height: 48px;
  }
  .brand-logo-circle {
    width: 48px;
    height: 48px;
  }
  .brand-logo-name {
    top: calc(100% + 4px);
    font-size: 0.6rem;
  }
}
@media (max-width: 480px) {
  .brand-card {
    width: 36px;
    height: 36px;
  }
  .brand-logo-circle {
    width: 36px;
    height: 36px;
  }
  .brand-logo-name {
    top: calc(100% + 3px);
    font-size: 0.5rem;
    font-weight: 600;
  }
}

/* Creator Avatars */
.avatar-init {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 700;
  color: #050505;
  border: 2px solid var(--bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  cursor: default;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.avatar-init:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255,255,255,0.15);
}
@media (max-width: 768px) {
  .avatar-init {
    width: 32px; height: 32px;
    font-size: 0.7rem;
  }
}
@media (max-width: 480px) {
  .avatar-init {
    width: 25px; height: 25px;
    font-size: 0.55rem;
  }
}

/* Creator Profile Cards (Collaboration Orbit Inner Circle) */
.creator-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  transition: all 0.3s var(--ease);
}
.creator-avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s var(--ease);
  background: #FFFFFF;
}
.creator-card:hover .creator-avatar-circle {
  transform: scale(1.1);
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.creator-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover is best for face photos! */
  transition: transform 0.3s var(--ease);
}
.creator-name-label {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--gray-3);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
  pointer-events: none;
}
.creator-card:hover .creator-name-label {
  color: var(--accent);
}

/* Mobile responsive scaling for creator cards */
@media (max-width: 768px) {
  .creator-card {
    width: 38px;
    height: 38px;
  }
  .creator-avatar-circle {
    width: 38px;
    height: 38px;
  }
  .creator-name-label {
    top: calc(100% + 3px);
    font-size: 0.5rem;
  }
}
@media (max-width: 480px) {
  .creator-card {
    width: 30px;
    height: 30px;
  }
  .creator-avatar-circle {
    width: 30px;
    height: 30px;
  }
  .creator-name-label {
    top: calc(100% + 2px);
    font-size: 0.4rem;
    font-weight: 600;
  }
}

/* Creator Avatar Colors */
.av-green { background: linear-gradient(135deg, #C7FF42 0%, #8bc34a 100%); }
.av-orange { background: linear-gradient(135deg, #FF6B35 0%, #ff8c55 100%); }
.av-purple { background: linear-gradient(135deg, #845EC2 0%, #d4a5ff 100%); }
.av-blue { background: linear-gradient(135deg, #00C9A7 0%, #00897b 100%); }
.av-pink { background: linear-gradient(135deg, #D65DB1 0%, #FF96AD 100%); }
.av-red { background: linear-gradient(135deg, #FF5E62 0%, #FF9966 100%); }


/* ROTATION KEYFRAMES */
@keyframes spin-clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spin-counter-clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* ============================================================
   OUR WORK — REELS GRID
============================================================ */
.video-showcase-section {
  padding: 100px 0 20px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.vshowcase-head {
  margin-bottom: 56px;
}

/* ── Track wrapper (full-bleed) ─────────────────────────── */
.reels-track-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;  /* clips the infinite scroll */
}

/* Pause the whole marquee when user hovers */
.reels-track-wrap:hover .reels-marquee-track {
  animation-play-state: paused;
}

/* Single moving track container containing both copies side-by-side */
.reels-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reelMarquee 38s linear infinite;
}

@keyframes reelMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

/* Inner scroll belt */
.reels-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: center; /* Center align cards dynamically */
  flex-shrink: 0;      /* Prevent shrinking inside the flex container */
}

/* ── Fade edges ─────────────────────────────────────────── */
.reels-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.reels-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg) 30%, transparent);
}
.reels-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg) 30%, transparent);
}

/* ── Individual reel card ───────────────────────────────── */
.reel-card {
  flex: 0 0 200px;
  transition: transform 0.35s ease;
  padding: 16px 0 16px 0; /* adjusted vertical padding */
}
.reel-card:nth-child(even) {
  flex: 0 0 235px; /* Alternate grids slightly bigger */
}
.reel-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.reel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
  border: 2.5px solid var(--accent); /* visible border on every grid */
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.reel-frame:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.25), 0 0 0 4px var(--accent-glow);
}

/* Actual video element */
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1;
  display: block;
  pointer-events: none;
  border: none;
}
.reel-frame.has-video .reel-video { 
  opacity: 1;
  display: block;
}
.reel-placeholder { display: none !important; }

/* Overlay — visible on hover */
.reel-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.reel-frame:hover .reel-overlay { opacity: 1; }
.reel-frame.has-video .reel-overlay { opacity: 1; }

.reel-play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(199, 255, 66, 0.95);
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(199,255,66,0.5);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.reel-frame:hover .reel-play { transform: scale(1.12); }

.reel-info {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
}
.reel-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
}

/* Placeholder state */
.reel-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-3);
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}
.reel-placeholder span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.35;
}
.reel-frame:hover .reel-placeholder {
  background: linear-gradient(145deg, rgba(199,255,66,0.05), rgba(199,255,66,0.01));
}
.reel-frame:hover .reel-placeholder span { opacity: 0.7; color: var(--accent); }

/* ── Bottom CTA strip ───────────────────────────────────── */
.reels-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.reels-cta-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  max-width: 480px;
}
@media (max-width: 640px) {
  .reels-cta { flex-direction: column; text-align: center; }
  .reels-cta-text { max-width: 100%; }
}


/* ============================================================
   SERVICES SECTION
============================================================ */
.services-section {
  padding: 50px 0 100px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.svc-card {
  perspective: 1000px;
  height: 280px;
  cursor: pointer;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 290px;
}
@media (max-width: 991px) {
  .svc-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 650px) {
  .svc-card {
    flex: 0 0 100%;
  }
}
.svc-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s var(--ease);
  border-radius: var(--radius);
}
.svc-card:hover .svc-inner { transform: rotateY(180deg); }
.svc-front, .svc-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 36px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.svc-front {
  background: var(--bg-card);
  border: 2px solid #000000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.svc-card:hover .svc-front { border-color: var(--border-accent); }
.svc-back {
  background: var(--accent);
  border: 2px solid #FFFFFF;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.svc-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gray-3);
  text-transform: uppercase;
}
.svc-name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.svc-plus {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
}
.svc-back p {
  font-size: 0.95rem;
  color: var(--bg) !important;
  line-height: 1.7;
  font-weight: 500;
}
.svc-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg) !important;
  border-bottom: 1.5px solid var(--border-accent);
  padding-bottom: 2px;
  display: inline-block;
}


/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testi-orbit-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}

/* ── Testimonial Marquee ─────────────────────────── */
.testi-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.testi-track-wrap:hover .testi-marquee-track {
  animation-play-state: paused;
}
.testi-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reelMarquee 35s linear infinite;
}
.testi-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: flex-start;
  flex-shrink: 0;
}

.testi-card {
  flex: 0 0 380px;
  width: 380px;
  padding: 36px;
  background: var(--bg-card);
  border: 3px solid #000000;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.testi-purple {
  background: linear-gradient(145deg, rgba(132, 94, 194, 0.15) 0%, rgba(212, 165, 255, 0.05) 100%), #FFFFFF;
  border: 3px solid #000000;
}
.testi-green {
  background: linear-gradient(145deg, rgba(199, 255, 66, 0.2) 0%, rgba(139, 195, 74, 0.05) 100%), #FFFFFF;
  border: 3px solid #000000;
}
.testi-stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }
.testi-quote {
  font-size: 0.9rem;
  color: var(--gray-1);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.av-green { background: linear-gradient(135deg, #C7FF42, #8bc34a); color: #050505; }
.av-orange { background: linear-gradient(135deg, #FF6B35, #ff8c55); color: #fff; }
.av-purple { background: linear-gradient(135deg, #845EC2, #d4a5ff); color: #fff; }
.testi-info { display: flex; flex-direction: column; gap: 3px; }
.testi-name { font-size: 0.85rem; font-weight: 700; color: var(--white); }
.testi-role { font-size: 0.75rem; color: var(--gray-3); }

/* ============================================================
   ABOUT / PROCESS
============================================================ */
.about-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.about-left { position: sticky; top: calc(var(--nav-h) + 32px); }
.about-desc {
  font-size: 1rem;
  color: var(--gray-2);
  line-height: 1.7;
  margin-top: 16px;
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step-card {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.process-step-card:first-child { border-top: 1px solid var(--border); }
.ps-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 4px;
  width: 28px;
}
.ps-content { flex: 1; }
.ps-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.ps-content p {
  font-size: 0.875rem;
  color: var(--gray-2);
  line-height: 1.7;
}

/* ============================================================
   FAQ
============================================================ */
.faq-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
  z-index: 1;
}
.faq-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-left { position: sticky; top: calc(var(--nav-h) + 32px); }
.faq-sub {
  font-size: 1rem;
  color: var(--gray-2);
  line-height: 1.7;
  margin-top: 16px;
}
.faq-right { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
  cursor: pointer;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gray-3);
  transition: all 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.faq-item.open .faq-q { color: var(--accent); }
.faq-a {
  display: none;
  padding: 0 0 24px 0;
}
.faq-item.open .faq-a { display: block; }
.faq-a p {
  font-size: 0.9rem;
  color: var(--gray-2);
  line-height: 1.8;
}




.footprint-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footprint-map-wrap {
  margin-top: 48px;
  position: relative;
  width: 100%;
}
/* Map Container */
.map-canvas-container {
  background: #090A0C; /* Deep space dark canvas */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Dashboard grid overlay background effect */
.map-canvas-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* Radial central glow aura */
.map-canvas-container::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(199, 255, 66, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Map SVG Styling */
#world-map {
  width: 100%;
  height: auto;
  max-height: 480px;
  position: relative;
  z-index: 2;
}
#world-map path, #world-map g {
  fill: #121316; /* Dark background continents */
  stroke: rgba(255, 255, 255, 0.04); /* Very thin, dark continent dividers */
  stroke-width: 0.8;
  transition: fill 0.4s ease, stroke 0.4s ease;
}

/* Highlighted countries */
#world-map path.active-country, 
#world-map g.active-country path {
  fill: rgba(199, 255, 66, 0.04); /* Glow background fill */
  stroke: rgba(199, 255, 66, 0.35); /* Bright green border */
  stroke-width: 1.2;
  filter: drop-shadow(0 0 4px rgba(199, 255, 66, 0.15));
}
#world-map path.active-country:hover, 
#world-map g.active-country path:hover {
  fill: rgba(199, 255, 66, 0.1);
  stroke: rgba(199, 255, 66, 0.8);
  filter: drop-shadow(0 0 8px rgba(199, 255, 66, 0.3));
}

/* Underlay static connection baselines */
.map-conn-base {
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 1.2;
  fill: none;
}

/* Connection Arcs Styling */
.map-connection {
  stroke: #C7FF42; /* Vibrant green flow arc */
  stroke-width: 1.5;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 8, 12; /* Clean dash rhythm */
  stroke-dashoffset: 200;
  animation: connectionFlow 15s linear infinite;
  filter: drop-shadow(0 0 3px rgba(199, 255, 66, 0.5));
}

@keyframes connectionFlow {
  to {
    stroke-dashoffset: 0;
  }
}

/* Pins styling */
.map-pin {
  fill: #C7FF42;
  stroke: #090A0C;
  stroke-width: 1.5;
}
.map-pin-pulse {
  fill: none;
  stroke: #C7FF42;
  stroke-width: 1.5;
  transform-origin: center;
  animation: pinPulse 2.5s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Operational Hub styling */
.map-hub {
  fill: #C7FF42;
  stroke: #090A0C;
  stroke-width: 2;
}
.map-hub-pulse-1 {
  fill: none;
  stroke: #C7FF42;
  stroke-width: 2;
  transform-origin: center;
  animation: hubPulse 3s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.map-hub-pulse-2 {
  fill: none;
  stroke: #C7FF42;
  stroke-width: 2;
  transform-origin: center;
  animation: hubPulse 3s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-delay: 1.5s;
}

/* Sleek Map Labels styling */
.map-label-bg {
  fill: #14161B;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1;
  rx: 4px;
}
.map-label-text {
  font-family: monospace;
  font-size: 8px;
  fill: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  font-weight: bold;
}
.map-label-hub-text {
  fill: #C7FF42;
}

@keyframes pinPulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(3.5); opacity: 0; }
}
@keyframes hubPulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(4.5); opacity: 0; }
}

/* Legend Styling */
.map-legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.hub-dot {
  background: #C7FF42;
  box-shadow: 0 0 10px rgba(199, 255, 66, 0.8);
}
.active-dot {
  background: rgba(199, 255, 66, 0.2);
  border: 1.5px solid #C7FF42;
}
.legend-text {
  font-size: 0.8rem;
  color: var(--gray-3);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}
.contact-sub {
  font-size: 1rem;
  color: var(--gray-2);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 40px;
}
.contact-detail { margin-bottom: 20px; }
.cd-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gray-3);
  margin-bottom: 4px;
}
.cd-value {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}
a.cd-value:hover { color: var(--accent); }

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

/* Section header + hint */
.form-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.form-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gray-3);
  text-transform: uppercase;
}
.pillar-hint {
  font-size: 0.7rem;
  color: var(--gray-3);
  opacity: 0.6;
}

/* Pillar Buttons */
.pillars-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.pillar-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px 8px 10px;
  border-radius: 30px;
  border: 1px solid var(--border);
  color: var(--gray-2);
  background: transparent;
  transition: all 0.22s ease;
  cursor: pointer;
  font-family: var(--font);
}
.pillar-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
  transition: all 0.22s ease;
  opacity: 0.45;
}
.pillar-check svg { opacity: 0; transition: opacity 0.2s; }
.pillar-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pillar-btn:hover .pillar-check { opacity: 0.7; }
.pillar-btn.selected {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.pillar-btn.selected .pillar-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #050505;
  opacity: 1;
}
.pillar-btn.selected .pillar-check svg { opacity: 1; }

/* Divider */
.form-divider {
  height: 1px;
  background: var(--border);
  margin: 22px 0;
  opacity: 0.5;
}

/* Form layout */
.contact-form { display: flex; flex-direction: column; gap: 14px; }

/* 2-column row */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Field wrapper */
.field-group { position: relative; }

/* Icon */
.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-3);
  pointer-events: none;
  display: flex;
  align-items: center;
  z-index: 2;
  transition: color 0.2s;
}
.field-textarea ~ .field-icon,
.field-group:has(.field-textarea) .field-icon {
  top: 20px;
  transform: none;
}

/* Inputs */
.field-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 14px 6px 14px;
  color: var(--white);
  font-size: 0.88rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.field-input.has-icon { padding-left: 40px; }
.field-input:focus {
  border-color: var(--accent);
  background: rgba(199, 255, 66, 0.04);
  box-shadow: 0 0 0 3px rgba(199, 255, 66, 0.08);
}
.field-group:focus-within .field-icon { color: var(--accent); }
@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-5px); }
  40%       { transform: translateX(5px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.field-shake { animation: fieldShake 0.4s ease; }

/* Floating label */
.field-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  font-size: 0.82rem;
  color: var(--gray-3);
  font-weight: 500;
  pointer-events: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 28px);
}
.field-input.has-icon ~ .field-label { left: 40px; }
.field-textarea { resize: vertical; min-height: 96px; padding-top: 22px; }
.field-group:has(.field-textarea) .field-label { top: 16px; transform: none; }

.field-input:focus ~ .field-label,
.field-input:not(:placeholder-shown) ~ .field-label {
  top: 8px;
  transform: none;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-weight: 600;
}
.field-group:has(.field-textarea) .field-input:focus ~ .field-label,
.field-group:has(.field-textarea) .field-input:not(:placeholder-shown) ~ .field-label {
  top: 6px;
}

/* Select field */
.select-group { position: relative; }
.field-select {
  cursor: pointer;
  padding-right: 38px;
}
.field-select option { background: #1a1a1a; color: var(--white); }
.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--gray-3);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.field-group:focus-within .select-arrow { color: var(--accent); }
.select-label {
  top: 50%;
  transform: translateY(-50%);
}
.field-select:not([value=""]):valid ~ .select-label,
.field-select:focus ~ .select-label {
  top: 8px;
  transform: none;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-weight: 600;
}

/* Submit button */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #050505 !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 17px 32px;
  border-radius: 10px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 6px;
  font-family: var(--font);
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-submit:hover::before { opacity: 1; }
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(199, 255, 66, 0.3);
}
.btn-submit:active { transform: translateY(0); }
.submit-arrow { transition: transform 0.3s ease; }
.btn-submit:hover .submit-arrow { transform: translateX(4px); }

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 48px 24px;
  text-align: center;
}
.form-success.visible { display: flex; }
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  animation: successPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes successPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.success-body { display: flex; flex-direction: column; gap: 8px; }
.form-success h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.form-success p {
  font-size: 0.88rem;
  color: var(--gray-2);
  line-height: 1.7;
  max-width: 320px;
}
.form-success p strong { color: var(--accent); }
.btn-ghost-sm {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-3);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 9px 20px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s;
}
.btn-ghost-sm:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0F0F0F;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px 40px;
}
.footer-giant {
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 800;
  color: #E5E5E5;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 60px;
  user-select: none;
}
.footer-row {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.footer-about {
  font-size: 0.875rem;
  color: #7A7A7A;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.fsocial {
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #7A7A7A;
  transition: all 0.25s;
}
.fsocial:hover { border-color: #FFFFFF; color: #FFFFFF; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #7A7A7A;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-link {
  font-size: 0.875rem;
  color: #A0A0A0;
  transition: color 0.2s;
}
.footer-link:hover { color: #FFFFFF; }
.footer-cta-link { color: #FFFFFF; font-weight: 700; }
.footer-cta-link:hover { opacity: 0.8; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: #7A7A7A;
}


/* ============================================================
   RESPONSIVE — Production-Ready Overhaul
   Breakpoints: 1280 | 1100 | 900 | 768 | 600 | 480 | 360
============================================================ */

/* ── BASE: Nav logo desktop size ─────────────────────── */
.nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
}

/* ΓöÇΓöÇ 1280px: Wide monitors ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ */
@media (max-width: 1280px) {
  .hero-inner {
    grid-template-columns: 200px 1fr 200px;
    gap: 32px;
  }
}

/* ΓöÇΓöÇ 1100px: Large tablets / small laptops ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 160px 1fr 160px;
    gap: 20px;
  }
  .video-aspect { width: 100px; }
  .square-aspect { width: 110px; }
  .contact-grid { grid-template-columns: 300px 1fr; gap: 60px; }
  .about-grid { grid-template-columns: 280px 1fr; gap: 60px; }
  .faq-grid { grid-template-columns: 280px 1fr; gap: 60px; }
  .stats-row { grid-template-columns: repeat(5, 1fr); }
  .section-inner { padding: 0 24px; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ΓöÇΓöÇ 900px: Tablets ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ */
@media (max-width: 900px) {
  :root { --nav-h: 72px; }

  /* Navbar */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 45px; }
  .nav-inner { height: var(--nav-h); padding: 0 20px; align-items: center; }
  .nav-header { left: 12px; right: 12px; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px 20px 60px;
    gap: 32px;
  }
  .hero-cards-left, .hero-cards-right {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-cards-right { order: 3; align-items: center; }
  .hero-center { order: 2; }
  .video-aspect { width: 80px; }
  .square-aspect { width: 90px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3.2rem); }
  .headline-row-avatars { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin: 0 auto 32px; }

  /* Myths & stats */
  .myths-grid { grid-template-columns: 1fr; gap: 40px; }
  .myths-label-col { position: static; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(5) { grid-column: 1 / -1; border-right: none; }

  /* Services */
  .services-grid { flex-wrap: wrap; }
  .svc-card {
    height: 240px;
    flex: 0 0 calc(50% - 10px);
    min-width: 240px;
  }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-left { position: static; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 24px; }

  /* Footer */
  .footer-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-giant { font-size: clamp(4rem, 14vw, 8rem); margin-bottom: 48px; }
  .footer-inner { padding: 60px 24px 32px; }
}

/* ΓöÇΓöÇ 768px: Small tablets / large phones landscape ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Navbar */
  .nav-logo-img { height: 72px; }
  .nav-inner { height: var(--nav-h); align-items: center; padding: 0 16px; }
  .nav-header { left: 8px; right: 8px; }

  /* Hero ΓÇö hide cards and show large logo above text on mobile */
  .hero-cards-left { display: none; }
  .hero-cards-right { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 24px 20px 60px;
    gap: 0;
  }
  .hero-center {
    order: 1;
    margin-bottom: 0;
  }
  .hero-mobile-logo-wrapper {
    display: inline-block;
    position: relative;
    width: 80%;
    max-width: 240px;
    margin: 0 auto 32px;
    padding: 12px;
    box-sizing: border-box;
  }
  .hero-headline { font-size: clamp(2rem, 10vw, 3rem); margin-bottom: 20px; }
  .hero-sub { font-size: 0.95rem; }
  .hero-btns { gap: 12px; flex-wrap: wrap; }
  .iavatar { width: 34px; height: 34px; }

  /* Myths */
  .myths-section { padding: 72px 0; }
  .myths-big-heading { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    border-radius: var(--radius);
  }
  .stat-block { padding: 24px 16px; }
  .stat-block:nth-child(5) { grid-column: 1 / -1; border-right: none; }

  /* Partners circle */
  .partners-grid { gap: 48px; }

  /* Services */
  .services-section { padding: 72px 0; }
  .services-grid { gap: 16px; }
  .svc-card {
    height: 220px;
    flex: 0 0 100%;
    min-width: unset;
  }

  /* Testimonials */
  .testimonials-section { padding: 72px 0; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }

  /* About & Contact */
  .about-section, .contact-section { padding: 72px 0; }
  .video-showcase-section { padding: 72px 0 16px; }
  .faq-section { padding: 72px 0; }

  /* Contact form */
  .contact-form-wrap { padding: 24px 20px; }

  /* Footer */
  .footer-row { grid-template-columns: 1fr; gap: 28px; }
  .footer-about { max-width: 100%; }
  .footer-giant { font-size: clamp(3rem, 18vw, 6rem); margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-inner { padding: 48px 20px 28px; }

  /* Global Footprint */
  .footprint-section { padding: 72px 0; }
  .map-canvas-container { padding: 24px 16px; }
}

/* ΓöÇΓöÇ 600px: Large phones portrait ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ */
@media (max-width: 600px) {
  :root { --nav-h: 60px; }

  /* Layout */
  .section-inner { padding: 0 16px; }
  .section-head { margin-bottom: 40px; }

  /* Navbar */
  .nav-logo-img { height: 64px; }
  .nav-inner { height: var(--nav-h); padding: 0 16px; }
  .nav-header { left: 0; right: 0; border-radius: 0; border-left: none; border-right: none; }

  /* Hero */
  .hero { padding-top: var(--nav-h); }
  .hero-inner { padding: 20px 16px 48px; }
  .hero-headline { font-size: clamp(1.9rem, 11vw, 2.8rem); letter-spacing: -0.03em; }
  .hero-sub { font-size: 0.9rem; line-height: 1.7; }
  .btn-primary, .btn-ghost { font-size: 0.85rem; padding: 12px 22px; }
  .experts-row { padding: 8px 14px; gap: 8px; }
  .experts-label { font-size: 0.7rem; }
  .expert-logo { height: 16px; }

  /* Myths */
  .myths-section { padding: 60px 0; }
  .myths-big-heading { font-size: clamp(2rem, 12vw, 3rem); }
  .myths-intro { font-size: 0.95rem; }
  .stat-block { padding: 20px 14px; }
  .stat-num { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Services */
  .services-section { padding: 60px 0; }
  .svc-card { height: 200px; }

  /* Testimonials */
  .testi-card { padding: 24px; }
  .testi-quote { font-size: 0.875rem; }

  /* About */
  .about-section { padding: 60px 0; }
  .process-step-card { gap: 16px; padding: 24px 0; }

  /* Video showcase */
  .video-showcase-section { padding: 60px 0 16px; }

  /* FAQ */
  .faq-section { padding: 60px 0; }
  .faq-q { font-size: 0.9rem; padding: 20px 0; }

  /* Contact */
  .contact-section { padding: 60px 0; }
  .contact-form-wrap { padding: 20px 16px; border-radius: var(--radius); }
  .field-row { grid-template-columns: 1fr; gap: 14px; }
  .field-input { padding: 16px 14px 6px; font-size: 0.875rem; }
  .field-input.has-icon { padding-left: 38px; }

  /* Footer */
  .footer-row { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-giant {
    font-size: clamp(2.5rem, 20vw, 5rem);
    margin-bottom: 32px;
    letter-spacing: -0.04em;
  }
  .footer-inner { padding: 40px 16px 24px; }
  .footer-socials { gap: 8px; }

  /* Reels CTA */
  .reels-cta { flex-direction: column; text-align: center; padding: 24px 20px; }
  .reels-cta-text { max-width: 100%; font-size: 0.95rem; }
}

/* ΓöÇΓöÇ 480px: Small phones ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ */
@media (max-width: 480px) {
  :root { --nav-h: 56px; }

  /* Navbar */
  .nav-logo-img { height: 56px; }
  .nav-inner { height: var(--nav-h); padding: 0 14px; }
  .nav-header { left: 0; right: 0; border-left: none; border-right: none; border-radius: 0; }

  /* Hero */
  .hero-headline { font-size: clamp(1.7rem, 12vw, 2.4rem); }
  .hero-sub { font-size: 0.875rem; max-width: 100%; }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .scroll-hint { display: none; }
  .headline-row-avatars { justify-content: center; }

  /* Stats */
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-block:nth-child(5) { grid-column: 1 / -1; border-right: none; }
  .stat-block { padding: 18px 12px; }

  /* Myths */
  .myth-item { font-size: 0.9rem; gap: 12px; }

  /* Services */
  .svc-card { height: 180px; }
  .svc-name { font-size: clamp(1.2rem, 5vw, 1.8rem); }

  /* Testimonials */
  .testi-card { padding: 20px 16px; }
  .testi-quote { font-size: 0.85rem; }

  /* Contact */
  .contact-form-wrap { padding: 18px 12px; }
  .pillars-row { gap: 6px; }
  .pillar-btn { font-size: 0.75rem; padding: 7px 12px; }
  .form-section-header { flex-direction: column; gap: 4px; align-items: flex-start; }

  /* Footer */
  .footer-giant {
    font-size: clamp(2rem, 22vw, 4rem);
    margin-bottom: 28px;
  }
  .footer-col-title { margin-bottom: 6px; }
  .footer-col { gap: 10px; }

  /* Section headings scale */
  .section-h2 { font-size: clamp(1.8rem, 8vw, 3rem); }
  .section-sub { font-size: 0.9rem; }

  /* Global Footprint */
  .footprint-section { padding: 60px 0; }
  .map-canvas-container { padding: 16px; }

  /* Vshowcase head */
  .vshowcase-head { margin-bottom: 36px; }

  /* Process steps */
  .process-step-card { flex-direction: row; gap: 14px; }
  .ps-num { width: 24px; }

  /* Partners */
  .partners-circle-section { padding: 72px 0; }
  .partners-metrics { gap: 20px; }
  .pm-value { font-size: 1.8rem; }
}

/* ΓöÇΓöÇ 360px: Very small phones ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ */
@media (max-width: 360px) {
  :root { --nav-h: 52px; }

  .nav-logo-img { height: 48px; }
  .nav-inner { height: var(--nav-h); padding: 0 12px; }

  .hero-headline { font-size: clamp(1.5rem, 13vw, 2rem); }
  .hero-inner { padding: 16px 12px 40px; }
  .section-inner { padding: 0 12px; }

  .contact-form-wrap { padding: 16px 10px; }
  .footer-inner { padding: 32px 12px 20px; }
  .footer-giant { font-size: clamp(1.8rem, 24vw, 3.5rem); }
  .stat-num { font-size: 1.4rem; }
  .section-h2 { font-size: clamp(1.6rem, 9vw, 2.5rem); }

  /* Global Footprint */
  .footprint-section { padding: 56px 0; }
  .map-legend { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* FAQ */
  .faq-q { font-size: 0.85rem; gap: 12px; }
  .faq-icon { width: 26px; height: 26px; }
}

/* ΓöÇΓöÇ Touch / Hover improvements for mobile ΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇΓöÇ */
.mobile-menu {    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
  }
  .mob-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .mob-link {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
  }
  .mob-cta {
    margin-top: 20px;
    padding: 15px 30px;
    background: #C7FF42;
    color: #000;
    font-size: 20px;
    border-radius: 30px;
    text-decoration: none;
  /* Global Paddings */
  section { padding: 60px 5% !important; }
  
  /* Myths & Stats */
  .myths-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stats-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .stat-block { width: 100%; }
  
  /* Video Showcase */
  .reel-card {
    width: 240px;
    height: 400px;
  }
  .reels-marquee-track {
    animation-duration: 40s;
  }

  /* Services Grid */
  .services-grid, .svc-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Process Grid */
  .process-grid, .steps-grid, .services-wrapper {
    grid-template-columns: 1fr !important;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrap {
    width: 100%;
  }
  
  /* Footer */
  .footer-col {
    width: 100%;
  }
}


/* Fix for oval shapes on mobile */
.brand-card, .creator-card, .brand-logo-circle, .creator-avatar-circle {
    flex-shrink: 0 !important;
}
