@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ══════════════════════════════════════════════════════
   DESIGN TOKENS — VIBRANT LIGHT THEME
══════════════════════════════════════════════════════ */
:root {
  --primary:      #ffffff;
  --surface:      #f8f9ff;
  --surface-2:    #f0f2ff;
  --surface-3:    #e8ebff;

  --purple:       #6B21A8;
  --purple-light: #9333EA;
  --orange:       #F97316;
  --pink:         #EC1E6B;
  --accent:       #2563EB;
  --accent-light: #3B82F6;
  --secondary:    #06B6D4;

  --grad-brand:   linear-gradient(135deg, #6B21A8 0%, #F97316 50%, #EC1E6B 100%);
  --grad-accent:  linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);

  --text-primary:   #0f172a;
  --text-secondary: #334155;
  --text-muted:     #64748b;
  --text-faint:     #94a3b8;

  --border:         #e2e8f0;
  --border-strong:  #cbd5e1;
  --border-brand:   rgba(107,33,168,0.2);
  --border-hover:   rgba(107,33,168,0.35);

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-brand: 0 8px 32px rgba(107,33,168,0.18);
  --shadow-glow:  0 0 40px rgba(107,33,168,0.12);

  --glass:        rgba(255,255,255,0.85);
  --glass-light:  rgba(255,255,255,0.6);

  --hero-bg: #f8f9fa;
  --hero-ink: #111827;
  --hero-muted: #6B7280;
  --hero-accent: #6B21A8;
  --hero-accent-dark: #4C1D95;
  --hero-accent-hot: #EC1E6B;
  --hero-accent-warm: #F97316;
  --hero-brand-gradient: linear-gradient(135deg, #6B21A8 0%, #F97316 48%, #EC1E6B 100%);
  --hero-border: rgba(15,23,42,0.1);
  --hero-shadow: 0 28px 80px rgba(15,23,42,0.08);
  --hero-radius: 24px;
  --hero-space: clamp(24px, 5vw, 72px);
  --hero-display: clamp(52px, 6.6vw, 92px);
  --hero-body: clamp(18px, 1.4vw, 22px);
}

/* ══════════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
  word-break: break-word;
  overflow-wrap: break-word;
}

img, video { max-width: 100%; }

h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--grad-brand); border-radius: 2px; }

::selection { background: rgba(107,33,168,0.15); color: var(--purple); }

.noise::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.25;
}

/* ══════════════════════════════════════════════════════
   FLOATING NAV — LIQUID GLASS GLOW
══════════════════════════════════════════════════════ */
@keyframes glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 18px 4px rgba(107,33,168,0.35),
      0 0 48px 10px rgba(107,33,168,0.12),
      0 8px 32px rgba(6,182,212,0.2),
      0 2px 8px rgba(0,0,0,0.08);
  }
  50% {
    box-shadow:
      0 0 24px 6px rgba(249,115,22,0.32),
      0 0 60px 14px rgba(249,115,22,0.1),
      0 8px 36px rgba(236,30,107,0.22),
      0 2px 8px rgba(0,0,0,0.08);
  }
}

@keyframes shimmer-sweep {
  0%   { transform: translateX(-120%) skewX(-14deg); }
  100% { transform: translateX(320%)  skewX(-14deg); }
}

.menu {
  position: fixed;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 520px;
  z-index: 1000;
  padding: 6px;
  border-radius: 99rem;
  display: flex;
  justify-content: center;
  gap: 4px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);

  animation: glow-pulse 4s ease-in-out infinite;
  transition: background 0.4s ease;
}

.menu.glass-active {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(60px) saturate(210%) brightness(1.15);
  -webkit-backdrop-filter: blur(60px) saturate(210%) brightness(1.15);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

/* Top glass sheen */
.menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  /* Match the navbar curvature so it doesn't overlay awkwardly */
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Ensure sheen + shimmer always stay clipped to the pill shape */
.menu {
  overflow: hidden;
}


/* Sweeping shimmer */
.menu::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.28) 50%, transparent 60%);
  animation: shimmer-sweep 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

.menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  min-width: 0;
  color: var(--text-muted);
  text-decoration: none;
  padding: 9px 6px;
  border-radius: 999rem;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 3;
  white-space: nowrap;
}

.menu a:hover {
  color: var(--purple);
  background: rgba(107,33,168,0.09);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(107,33,168,0.18);
}

.menu a i    { font-size: 1.3rem; }
.menu a span {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 3px;
  letter-spacing: 0.01em;
}

.menu a.active {
  color: white;
  background: var(--grad-brand);
  box-shadow: 0 4px 18px rgba(107,33,168,0.32), inset 0 1px 0 rgba(255,255,255,0.2);
}

.menu a:active { transform: scale(0.96); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 120px 120px 0;
  background: #ffffff;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

#hero.hero-section .hero-video-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 90%,
    rgba(255,255,255,0.18) 96%,
    rgba(255,255,255,0.3) 100%
  );
}

#hero-video {
  position: absolute;
  top: 0;
  left: 50%;
  width: 115%;
  height: 115%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  will-change: opacity;
  pointer-events: none;
}

#hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
  pointer-events: none;
}

.hero-nav {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.hero-logo {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -1.44px;
  color: #000;
}

.hero-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.hero-menu a {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.2px;
  color: #000;
  text-decoration: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-btn {
  border: none;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.2px;
  border-radius: 12px;
  padding: 12px 0;
  cursor: pointer;
}

.hero-btn-outline {
  width: 82px;
  color: #000;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
}

.hero-btn-solid {
  width: 101px;
  color: #fff;
  background: #000;
}

.hero-content-modern {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
  margin-top: -50px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 34px;
  max-width: 736px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badge-micon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  background: linear-gradient(135deg, #120627 0%, #21113d 100%);
  border: 1px solid rgba(107,33,168,0.35);
  border-radius: 28px;
  padding: 12px 20px;
  box-shadow: 0 18px 48px rgba(15,23,42,0.22), 0 0 0 1px rgba(107,33,168,0.12);
}

.hero-badge-micon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #A78BFA 0%, #F97316 50%, #EC4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.hero-badge-pill,
.hero-badge-copy {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}

.hero-headline {
  font-family: 'Fustat', serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -4.8px;
  color: #ffffff;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.3);
}

.hero-sub {
  font-family: 'Fustat', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.4px;
  color: rgba(255,255,255,0.85);
  max-width: 736px;
  width: min(736px, 100%);
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}


.hero-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  justify-content: center;
  align-items: center;
}

.hero-icon-chevron::before {
  content: '▾';
}

.hero-icon-arrow-up::before {
  content: '↑';
}

.hero-icon-sparkle::before {
  content: '✦';
}

.hero-icon-attach::before {
  content: '📎';
}

.hero-icon-voice::before {
  content: '🎙️';
}

.hero-icon-search::before {
  content: '🔍';
}

@media (max-width: 1200px) {
  #hero {
    padding: 80px 40px 0;
  }
  .hero-content-modern {
    gap: 32px;
  }
  .hero-headline {
    font-size: 64px;
  }
}

@media (max-width: 768px) {
  #hero {
    padding: 60px 24px 0;
  }
  .hero-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-menu {
    justify-content: center;
    gap: 18px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-search-main {
    flex-direction: column;
  }
  .hero-search-main input {
    min-height: 72px;
  }
  .hero-search-submit {
    width: 100%;
    height: 56px;
    border-radius: 12px;
  }
  .hero-search-bottom-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* GPU-accelerate showcase video cards for smooth playback */
.video-card video {
  will-change: contents;
  transform: translateZ(0);
}

/* Defer rendering of off-screen sections to speed up initial paint */
#services, #lineads, #clients, #cta, #contact, #footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}


#hero-overlay {
  position: absolute; 
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}

#hero-overlay::after {
  display: none;
}

#hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.25) 0%, transparent 65%);
  z-index: 2;
  pointer-events: none;
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 80px;
  gap: 30px;
}


.hero-content-left {
  flex: 1;
  max-width: 100%;
  width: 100%;
}

.hero-content-right {
  display: none;
}

.hero-placeholder-asset {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,0.03);
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.hero-placeholder-asset:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding-top: 140px;
    gap: 40px;
  }
  .hero-content-left {
    max-width: 100%;
  }
  .hero-headline, .hero-sub {
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-btns {
    justify-content: center !important;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  text-transform: uppercase;
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.2), inset 0 0 0 1px rgba(255,255,255,0.1);
}

.badge-dot {
  width: 7px; height: 7px;
  background: #FBBF24;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
  box-shadow: 0 0 6px #FBBF24;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.75); }
}

.hero-headline {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  overflow: hidden;
  text-align: left;
  color: white;
  filter: drop-shadow(0px 8px 16px rgba(0,0,0,0.4));
}

.hero-headline .line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: slide-up 0.85s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero-headline .line:nth-child(1) { animation-delay: 0.15s; }
.hero-headline .line:nth-child(2) {
  animation-delay: 0.3s;
  background: linear-gradient(90deg, #FBBF24, #FB923C, #ec4899, #8b5cf6, #FBBF24);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slide-up 0.85s cubic-bezier(0.4,0,0.2,1) forwards, gradient-shift 5s linear infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-sub {
  max-width: 620px;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 500;
  color: #f8fbff;
  line-height: 1.6;
  margin: 0 0 32px 0;
  opacity: 0;
  animation: fade-in 1s ease 0.6s forwards;
  text-align: left;
  text-shadow: 0 4px 14px rgba(0,0,0,0.45);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #eef2ff;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  animation: hero-fade-up 0.72s ease 0.56s forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fade-in 1s ease 0.75s forwards;
}

@keyframes slide-up { to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in  { to { opacity: 1; } }

/* ── FLOATING HERO BUTTONS ── */
@keyframes float-primary {
  0%,100% {
    transform: translateY(0px);
    box-shadow: 0 8px 28px rgba(37,99,235,0.45), 0 20px 48px rgba(37,99,235,0.18), 0 2px 8px rgba(0,0,0,0.2);
  }
  50% {
    transform: translateY(-7px);
    box-shadow: 0 18px 48px rgba(37,99,235,0.5), 0 36px 72px rgba(37,99,235,0.22), 0 4px 16px rgba(0,0,0,0.15);
  }
}

@keyframes float-secondary {
  0%,100% {
    transform: translateY(0px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.25), 0 18px 40px rgba(0,0,0,0.1);
  }
  50% {
    transform: translateY(-7px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.28), 0 32px 60px rgba(0,0,0,0.12);
  }
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 55%),
                    linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
  animation: float-primary 3.2s ease-in-out infinite;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  border-radius: 14px 14px 60% 60% / 30% 30% 20% 20%;
  pointer-events: none;
}

.btn-primary:hover {
  animation-play-state: paused;
  transform: translateY(-10px);
  box-shadow: 0 22px 56px rgba(37,99,235,0.55), 0 40px 80px rgba(37,99,235,0.22);
  background-image: linear-gradient(160deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0) 55%),
                    linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.btn-primary:active {
  animation-play-state: paused;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  animation: float-secondary 3.2s ease-in-out 0.6s infinite;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 44%;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 100%);
  border-radius: 14px 14px 60% 60% / 30% 30% 20% 20%;
  pointer-events: none;
}

.btn-secondary:hover {
  animation-play-state: paused;
  transform: translateY(-10px);
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 22px 52px rgba(0,0,0,0.3), 0 40px 72px rgba(0,0,0,0.14);
}

.btn-secondary:active {
  animation-play-state: paused;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* Stop float animation outside hero */
:not(#hero) .btn-primary  {
  animation: none;
  background: var(--accent);
  box-shadow: 0 4px 20px rgba(37,99,235,0.3);
  transition: all 0.25s ease;
}
:not(#hero) .btn-primary:hover  {
  background: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,99,235,0.45);
}
:not(#hero) .btn-secondary {
  animation: none;
  background: rgba(255,255,255,0.1);
  transition: all 0.25s ease;
}
:not(#hero) .btn-secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fade-in 1s ease 1.3s forwards;
}
.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-wheel {
  width: 3px; height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}
@keyframes scroll-wheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ══════════════════════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════════════════════ */
section { padding: 96px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; width: 100%; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}

.section-headline {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  color: var(--text-primary);
}
.section-headline .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.75;
  max-width: 560px;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 0 24px;
}

/* ══════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════ */
#stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 24px;
}

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

.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-brand);
}
.stat-card:hover::before { transform: scaleX(1); }

.stat-number {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1;
}
.stat-number .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.progress-bar-track {
  height: 4px;
  background: var(--surface-3);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 12px;
}
.progress-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--grad-brand);
  width: 0;
  transition: width 1.5s cubic-bezier(0.4,0,0.2,1);
}

/* ══════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════ */
#about { background: white; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.feature-cards { display: flex; flex-direction: column; gap: 16px; }

.feature-card {
  padding: 28px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all 0.3s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-brand);
  transform: scaleY(0);
  transition: transform 0.35s ease;
  transform-origin: bottom;
  border-radius: 0 2px 2px 0;
}
.feature-card:hover {
  border-color: var(--border-brand);
  background: white;
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.feature-card:hover::before { transform: scaleY(1); }

.feature-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(107,33,168,0.1), rgba(249,115,22,0.08));
  border-radius: 12px;
  color: var(--purple);
  margin-bottom: 16px;
  border: 1px solid rgba(107,33,168,0.12);
}

.feature-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* Legendary card spinning words */
.legendary-card {
  --bg-color: var(--surface);
  padding: 36px 28px;
  background: var(--bg-color);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.legendary-card:hover {
  border-color: var(--border-brand);
  background: white;
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.legendary-card .loader {
  color: var(--text-muted);
  font-weight: 800;
  font-size: clamp(14px, 2.5vw, 18px);
  box-sizing: content-box;
  height: 32px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 32px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}
.legendary-card .words { overflow: hidden; position: relative; height: 32px; display: flex; flex-direction: column; align-items: center; }
.legendary-card .words::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--bg-color) 10%, transparent 30%, transparent 70%, var(--bg-color) 90%);
  z-index: 20;
}
.legendary-card .word {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 100%;
  height: 100%;
  padding-left: 0;
  white-space: nowrap;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: spin_words 5s infinite;
  line-height: 32px;
  text-align: center;
}
.legendary-desc { font-size: 14px; line-height: 1.7; color: var(--text-secondary); margin-top: 12px; }

@keyframes spin_words {
  15% { transform: translateY(-102%); }
  33% { transform: translateY(-100%); }
  48% { transform: translateY(-202%); }
  66% { transform: translateY(-200%); }
  82% { transform: translateY(-302%); }
  100% { transform: translateY(-300%); }
}

/* ══════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════ */
#services { background: var(--surface); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  padding: 36px 28px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-sm);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 0;
  background: var(--grad-brand);
  transition: width 0.4s ease;
}
.service-card:hover {
  border-color: var(--border-brand);
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }

.service-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 22px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════
   OUTDOOR
══════════════════════════════════════════════════════ */
#outdoor { background: white; }

.outdoor-headline-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 40px;
}

.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.video-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  background: #000;
}
.video-card video {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.video-card:hover video { transform: scale(1.05); }

.video-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 30%, transparent 60%);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-start;
  transition: all 0.4s ease;
}
.video-card:hover .video-card-overlay {
  opacity: 0;
}

.video-card-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9333ea;
  margin-bottom: 6px;
}
.video-card-title { font-size: 18px; font-weight: 700; color: #111827; margin-bottom: 6px; }
.video-card-desc  { font-size: 13px; color: #4b5563; line-height: 1.6; }

.video-card-top {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}
.video-card:hover .video-card-top { opacity: 1; }

/* ══════════════════════════════════════════════════════
   LINEADS
══════════════════════════════════════════════════════ */
#lineads {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
#lineads::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,33,168,0.08) 0%, transparent 65%);
  pointer-events: none;
}
#lineads::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.lineads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lineads-features { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; }

.lineads-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.lineads-feature:hover {
  border-color: var(--border-brand);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.lineads-feature-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: linear-gradient(135deg, rgba(107,33,168,0.1), rgba(249,115,22,0.08));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  border: 1px solid rgba(107,33,168,0.1);
}

.lineads-feature-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.lineads-feature-text p  { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

.dashboard-mockup { position: relative; }

.mockup-window {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.mockup-titlebar {
  background: var(--surface);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 11px; height: 11px; border-radius: 50%; }

.mockup-body { padding: 18px; }

.mockup-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.mockup-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
}
.mockup-stat-val {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.mockup-stat-lbl { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

.mockup-chart {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  height: 120px;
  position: relative;
  overflow: hidden;
}
.chart-bars {
  display: flex; align-items: flex-end; gap: 5px;
  height: 76px; padding: 0 4px;
}
.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--grad-brand);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.chart-bar:hover { opacity: 1; }

.mockup-table { margin-top: 12px; }
.mockup-row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 12px;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.mockup-row:hover { background: var(--surface); }
.mockup-row-name { color: var(--text-secondary); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mockup-row-val  { font-weight: 700; color: var(--text-primary); }
.mockup-badge { padding: 2px 8px; border-radius: 999px; font-size: 10px; font-weight: 700; white-space: nowrap; }

.mockup-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: white;
  border: 1.5px solid var(--border-brand);
  border-radius: 14px;
  padding: 16px 20px;
  min-width: 175px;
  box-shadow: var(--shadow-lg);
}

/* ══════════════════════════════════════════════════════
   CLIENTS
══════════════════════════════════════════════════════ */
#clients { background: white; }

.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  margin: 52px 0;
}

.client-logo-cell {
  background: white;
  padding: 34px 24px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
  cursor: default;
}
.client-logo-cell:hover { background: var(--surface); }

.client-logo-text {
  font-size: 13px; font-weight: 700;
  color: var(--text-faint);
  text-align: center;
  transition: color 0.25s;
  line-height: 1.4;
}
.client-logo-cell:hover .client-logo-text { color: var(--purple); }
.client-logo-img {
  max-width: 180px;
  max-height: 80px;
  width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}
.client-logo-cell:hover .client-logo-img {
  transform: scale(1.05);
}


.clients-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.client-stat-cell {
  background: var(--surface);
  padding: 36px 24px;
  text-align: center;
  transition: background 0.25s;
}
.client-stat-cell:hover { background: white; }

.client-stat-num {
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  line-height: 1;
}
.client-stat-lbl { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ══════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════ */
#cta { background: var(--surface); padding: 96px 24px; }

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  border-radius: 28px;
  padding: 80px;
  overflow: hidden;
  background: var(--grad-brand);
  box-shadow: 0 32px 80px rgba(107,33,168,0.3), 0 8px 24px rgba(236,30,107,0.2);
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; text-align: center; }

.cta-headline {
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 22px;
  color: white;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 44px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Keep CTA primary button coloring consistent (no hover gradient shift) */
#cta .cta-btns .btn-primary {
  background-image: var(--hero-brand-gradient) !important;
  color: #fff !important;
  border: 1px solid rgba(107,33,168,0.18);
}
#cta .cta-btns .btn-primary:hover,
#cta .cta-btns .btn-primary:focus-visible,
#cta .cta-btns .btn-primary:active {
  background-image: var(--hero-brand-gradient) !important;
  color: #fff !important;
}

.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 30px;
  background: white; color: var(--purple);
  font-size: 15px; font-weight: 700;
  border: none; border-radius: 12px;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.btn-cta-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 30px;
  background: rgba(255,255,255,0.15); color: white;
  font-size: 15px; font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 12px;
  cursor: pointer; text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
}
.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════ */
#contact { background: white; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  margin-top: 56px;
  align-items: start;
}

.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  transition: all 0.25s;
}
.contact-info-item:hover {
  border-color: var(--border-brand);
  box-shadow: var(--shadow-md);
  background: white;
}

.contact-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: linear-gradient(135deg, rgba(107,33,168,0.1), rgba(249,115,22,0.08));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  border: 1px solid rgba(107,33,168,0.1);
}

.contact-info-label { font-size: 10px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin-bottom: 3px; }
.contact-info-value { font-size: 15px; color: var(--text-primary); font-weight: 600; }
.contact-info-value a { color: var(--text-primary); text-decoration: none; transition: color 0.2s; }
.contact-info-value a:hover { color: var(--purple); }

.social-row { display: flex; gap: 10px; margin-top: 28px; }
.social-btn {
  width: 42px; height: 42px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
}
.social-btn:hover {
  color: white;
  border-color: transparent;
  background: var(--grad-brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow-brand);
}

/* Uiverse Tooltip Animation */
.social-tooltip {
  position: absolute;
  top: 0;
  font-size: 12px;
  background: white;
  color: #111;
  padding: 5px 10px;
  border-radius: 6px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.social-tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: white;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.social-btn:hover .social-tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }

.form-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }

.form-input, .form-select, .form-textarea {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all 0.25s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple-light);
  background: white;
  box-shadow: 0 0 0 3px rgba(107,33,168,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-select { cursor: pointer; appearance: none; }
.form-select option { background: white; color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.form-input.error, .form-select.error, .form-textarea.error { border-color: #ef4444; }
.form-error { font-size: 12px; color: #ef4444; margin-top: 3px; display: none; }
.form-error.show { display: block; }

.btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 32px;
  background: var(--grad-brand);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700;
  border: none; border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s;
  width: 100%;
  box-shadow: 0 4px 20px rgba(107,33,168,0.3);
}
.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(107,33,168,0.4);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  border: 1.5px solid rgba(34,197,94,0.3);
  border-radius: 16px;
  background: rgba(34,197,94,0.04);
}
.form-success.show { display: block; }
.form-success h3 { font-size: 22px; font-weight: 700; margin: 14px 0 8px; color: var(--text-primary); }
.form-success p { font-size: 14px; color: var(--text-secondary); }
.success-icon {
  width: 52px; height: 52px;
  background: rgba(34,197,94,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  color: #22c55e;
}

/* ══════════════════════════════════════════════════════
   FOOTER — stays dark for contrast anchor
══════════════════════════════════════════════════════ */
#footer {
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 24px 40px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 36px;
}
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75; }
.footer-col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════════════════
   OVERFLOW GUARDS
══════════════════════════════════════════════════════ */
.stats-grid, .services-grid, .video-cards-grid, .clients-logo-grid,
.clients-stats, .footer-top, .about-grid, .lineads-grid, .contact-grid {
  width: 100%; min-width: 0;
}

.service-title, .service-desc, .stat-label, .feature-title, .feature-desc,
.video-card-title, .video-card-desc, .lineads-feature-text h4,
.lineads-feature-text p, .client-logo-text, .contact-info-value,
.footer-desc, .hero-sub, .section-sub, .cta-sub, .legendary-desc {
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .section-inner { padding: 0 24px; }
  .cta-inner { padding: 72px 60px; }
}

@media (max-width: 1024px) {
  section { padding: 80px 24px; }
  .about-grid, .lineads-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-headline { font-size: clamp(48px, 6vw, 80px); }
  .cta-headline { font-size: clamp(36px, 5vw, 60px); }
  .section-headline { font-size: clamp(30px, 4vw, 48px); }
  .dashboard-mockup { padding-bottom: 40px; padding-right: 20px; }
  .cta-inner { padding: 60px 48px; }
}

@media (max-width: 900px) {
  .hero-headline { font-size: clamp(40px, 8vw, 64px); }
  .hero-content { padding-top: 100px; }
  .stat-card { padding: 28px 20px; }
  .stat-number { font-size: clamp(26px, 4vw, 40px); }
  .services-grid { gap: 16px; }
  .service-card { padding: 26px 22px; }
  .feature-card, .legendary-card { padding: 24px; }
  .cta-inner { padding: 52px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  section { padding: 64px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .video-cards-grid { grid-template-columns: 1fr; }
  .clients-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .outdoor-headline-row { flex-direction: column; align-items: stretch; gap: 20px; }
  .cta-btns { flex-direction: column; width: 100%; align-items: stretch; }
  .hero-btns { flex-direction: column; width: 100%; align-items: stretch; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
.hero-btns .btn-primary, .hero-btns .btn-secondary {
  width: 100%;
  justify-content: center;
}
/* Fix hero button colors bleeding from global .btn-primary/.btn-secondary */
#hero.hero-section .btn-primary.hero-cta-primary{
  color:#fff;
  background: var(--hero-brand-gradient) !important;
  border: 1px solid rgba(107,33,168,0.18) !important;
}
#hero.hero-section .btn-secondary.hero-cta-secondary{
  color: var(--hero-ink);
  background: rgba(107,33,168,0.06) !important;
  border: 1px solid rgba(107,33,168,0.18) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
#hero.hero-section .btn-secondary.hero-cta-secondary:hover,
#hero.hero-section .btn-secondary.hero-cta-secondary:focus-visible{
  color: var(--hero-accent) !important;
  background: rgba(107,33,168,0.1) !important;
  border-color: rgba(236,30,107,0.22) !important;
}
  .hero-headline { font-size: clamp(34px, 10vw, 54px); }
  .hero-sub { font-size: 15px; max-width: 100%; }
  .section-headline { font-size: clamp(26px, 6vw, 38px); }
  .cta-headline { font-size: clamp(26px, 6vw, 40px); }
  .cta-inner { padding: 44px 24px; border-radius: 20px; }
  .stat-card { padding: 24px 18px; }
  .service-card { padding: 22px 18px; }
  .video-card { aspect-ratio: 9/16; }
  .video-card-overlay { padding: 16px; }
  .video-card-desc { display: none; }
  .mockup-float { display: none; }
  .dashboard-mockup { padding: 0; }
  .reveal-left, .reveal-right { transform: translateY(20px) !important; }
  .reveal-left.visible, .reveal-right.visible { transform: translateY(0) !important; }

  /* Mobile fix: prevent "We are" text collision - make inline */
  .legendary-card {
    padding: 20px 16px !important;
  }
  .legendary-card .loader {
    font-size: 16px !important;
    height: auto !important;
    min-height: 28px !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
  }
  .legendary-card .loader p {
    font-size: 16px !important;
    line-height: 28px !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }
  .legendary-card .words {
    display: inline-block !important;
    width: auto !important;
    min-width: 120px !important;
    height: 28px !important;
    overflow: hidden !important;
    position: relative !important;
    vertical-align: bottom !important;
  }
  .legendary-card .words::after {
    background: linear-gradient(var(--bg-color) 10%, transparent 25%, transparent 75%, var(--bg-color) 90%) !important;
  }
  .legendary-card .word {
    line-height: 28px !important;
    font-size: 16px !important;
    height: 28px !important;
  }
  .legendary-desc {
    font-size: 12px !important;
    line-height: 1.5 !important;
    margin-top: 8px !important;
  }
}

@media (max-width: 600px) {
  html { font-size: 14px; }
  section { padding: 52px 16px; }
  .hero-content { padding-top: 88px; padding-bottom: 56px; }
  .hero-headline { font-size: clamp(30px, 11vw, 44px); }
  .hero-sub { font-size: 14px; margin-bottom: 32px; }
  .badge { font-size: 11px; padding: 5px 12px; white-space: normal; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 14px; border-radius: 14px; }
  .outdoor-metrics-bar { grid-template-columns: 1fr !important; }
  .outdoor-metric-cell { padding: 20px 16px !important; border-bottom: 1px solid var(--border); }
  .outdoor-metric-cell:last-child { border-bottom: none; }
  .outdoor-metric-num { font-size: 22px !important; }
  .clients-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo-cell { padding: 22px 12px; }
  .clients-stats { grid-template-columns: repeat(2, 1fr); }
  .client-stat-cell { padding: 24px 12px; }
  .client-stat-num { font-size: 26px; }
  .cta-inner { padding: 36px 20px; border-radius: 16px; }
  .cta-headline { font-size: clamp(24px, 8vw, 34px); }
  .btn-primary, .btn-secondary { padding: 13px 22px; font-size: 14px; }
  .mockup-float { display: none; }
  .mockup-stat-row { grid-template-columns: repeat(3,1fr); gap: 6px; }
  .mockup-stat { padding: 8px 10px; }
  .mockup-stat-val { font-size: 15px; }
  .footer-top { gap: 28px; padding-bottom: 40px; }
  #footer { padding: 48px 16px 28px; }
}

@media (max-width: 480px) {
  html { font-size: 13px; }
  section { padding: 44px 14px; }
  .hero-headline { font-size: clamp(28px, 13vw, 40px); }
  .hero-sub { font-size: 13px; }
  .badge { font-size: 10px; padding: 4px 10px; }
  
  /* Outdoor metrics bar - stack vertically on mobile */
  #outdoor .section-inner > div:last-of-type {
    grid-template-columns: 1fr !important;
  }
  #outdoor .section-inner > div:last-of-type > div {
    padding: 20px 16px !important;
  }
  #outdoor .section-inner > div:last-of-type > div > div:first-child {
    font-size: 24px !important;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .stat-card { padding: 18px 16px; border-radius: 0; box-shadow: none; border: none; border-bottom: 1px solid var(--border); }
  .stat-card:last-child { border-bottom: none; }
  .stat-number { font-size: clamp(22px, 8vw, 30px); }
  .section-headline { font-size: clamp(22px, 8vw, 30px); }
  .service-card { padding: 18px 14px; border-radius: 12px; }
  .service-icon { width: 38px; height: 38px; margin-bottom: 14px; }
  .video-card { aspect-ratio: 9/16; border-radius: 12px; }
  .lineads-feature { padding: 12px 14px; gap: 10px; }
  .lineads-feature-icon { width: 28px; height: 28px; min-width: 28px; }
  .mockup-table { display: none; }
  .mockup-stat-row { grid-template-columns: 1fr 1fr; gap: 6px; }
  .clients-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .client-stat-num { font-size: 22px; }
  .cta-inner { padding: 32px 16px; border-radius: 14px; }
  .cta-headline { font-size: clamp(22px, 9vw, 30px); }
  .contact-grid { gap: 28px; }
  .form-input, .form-select, .form-textarea { padding: 10px 12px; font-size: 12px; }
  .btn-primary, .btn-secondary { padding: 12px 18px; font-size: 13px; }
  .btn-submit { padding: 12px 18px; font-size: 13px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 360px) {
  html { font-size: 12px; }
  .hero-headline { font-size: clamp(24px, 14vw, 32px); }
  .section-headline { font-size: clamp(20px, 9vw, 26px); }
  .cta-headline { font-size: clamp(20px, 9vw, 26px); }
  .menu { top: 10px; padding: 5px; gap: 3px; max-width: calc(100% - 16px); }
  .menu a { padding: 7px 3px; }
  .menu a i { font-size: 1.1rem; }
  .menu a span { font-size: 0.6rem; }
  .btn-primary, .btn-secondary { padding: 11px 16px; font-size: 12px; }
}

@media (max-width: 896px) and (orientation: landscape) {
  .hero-content { min-height: 100vh; padding-top: 80px; padding-bottom: 40px; }
  .hero-headline { font-size: clamp(28px, 5vw, 44px); }
  .hero-btns { flex-direction: row; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { width: auto; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .menu { top: 10px; }
}

@media print {
  .menu, .scroll-indicator, .noise::after { display: none !important; }
  body { background: white; color: black; }
  section { padding: 20px; }
  .btn-primary, .btn-secondary { animation: none; border: 1px solid #000; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .btn-primary, .btn-secondary, .menu { animation: none; }
}



/* From Uiverse.io by marcelodolza */
.btn-primary, .btn-secondary, .btn-submit {
  --primary: #ffffff; /* For text hover effect */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Ensure inner elements inherit the button's text color (white) */
.state p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: inherit; 
}

.state .icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: scale(1.25);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.state .icon svg {
  overflow: visible;
}

/* Outline Animation */
.outline {
  position: absolute;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  inset: -2px -3.5px;
  pointer-events: none;
}

.outline::before {
  content: "";
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    from 180deg,
    transparent 60%,
    rgba(255,255,255,0.8) 80%,
    transparent 100%
  );
  animation: spin 2s linear infinite;
  animation-play-state: paused;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.btn-primary:hover .outline, .btn-secondary:hover .outline, .btn-submit:hover .outline {
  opacity: 1;
}

.btn-primary:hover .outline::before, .btn-secondary:hover .outline::before, .btn-submit:hover .outline::before {
  animation-play-state: running;
}

/* Letters Animation */
.state p span {
  display: block;
  opacity: 0;
  animation: slideDown 0.8s ease forwards calc(var(--i) * 0.03s);
}

.btn-primary:hover p span, .btn-secondary:hover p span, .btn-submit:hover p span {
  opacity: 1;
  animation: wave 0.5s ease forwards calc(var(--i) * 0.02s);
}

.btn-primary:focus p span, .btn-secondary:focus p span, .btn-submit:focus p span {
  opacity: 1;
  animation: disapear 0.6s ease forwards calc(var(--i) * 0.03s);
}

@keyframes wave {
  30% { opacity: 1; transform: translateY(4px) translateX(0) rotate(0); }
  50% { opacity: 1; transform: translateY(-3px) translateX(0) rotate(0); color: var(--primary); }
  100% { opacity: 1; transform: translateY(0) translateX(0) rotate(0); }
}

@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-20px) translateX(5px) rotate(-90deg); color: var(--primary); filter: blur(5px); }
  30% { opacity: 1; transform: translateY(4px) translateX(0) rotate(0); filter: blur(0); }
  50% { opacity: 1; transform: translateY(-3px) translateX(0) rotate(0); }
  100% { opacity: 1; transform: translateY(0) translateX(0) rotate(0); }
}

@keyframes disapear {
  from { opacity: 1; }
  to { opacity: 0; transform: translateX(5px) translateY(20px); color: var(--primary); filter: blur(5px); }
}

/* Icon Fly Animation */
.state--default .icon svg {
  animation: land 0.6s ease forwards;
}

.btn-primary:hover .state--default .icon, .btn-secondary:hover .state--default .icon, .btn-submit:hover .state--default .icon {
  transform: rotate(45deg) scale(1.25);
}

.btn-primary:focus .state--default svg, .btn-secondary:focus .state--default svg, .btn-submit:focus .state--default svg {
  animation: takeOff 0.8s linear forwards;
}

.btn-primary:focus .state--default .icon, .btn-secondary:focus .state--default .icon, .btn-submit:focus .state--default .icon {
  transform: rotate(0) scale(1.25);
}

@keyframes takeOff {
  0% { opacity: 1; }
  60% { opacity: 1; transform: translateX(70px) rotate(45deg) scale(2); }
  100% { opacity: 0; transform: translateX(160px) rotate(45deg) scale(0); }
}

@keyframes land {
  0% { transform: translateX(-60px) translateY(30px) rotate(-50deg) scale(2); opacity: 0; filter: blur(3px); }
  100% { transform: translateX(0) translateY(0) rotate(0); opacity: 1; filter: blur(0); }
}

/* Contrail */
.state--default .icon:before {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 0;
  left: -5px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5));
}

.btn-primary:focus .state--default .icon:before, .btn-secondary:focus .state--default .icon:before, .btn-submit:focus .state--default .icon:before {
  animation: contrail 0.8s linear forwards;
}

@keyframes contrail {
  0% { width: 0; opacity: 1; }
  8% { width: 15px; }
  60% { opacity: 0.7; width: 80px; }
  100% { opacity: 0; width: 160px; }
}

/* States */
.state {
  padding-left: 29px;
  z-index: 2;
  display: flex;
  position: relative;
}

.state--sent {
  display: none;
}

.state--sent svg {
  transform: scale(1.25);
  margin-right: 8px;
}

.btn-primary:focus .state--default, .btn-secondary:focus .state--default, .btn-submit:focus .state--default {
  position: absolute;
}

.btn-primary:focus .state--sent, .btn-secondary:focus .state--sent, .btn-submit:focus .state--sent {
  display: flex;
}

.btn-primary:focus .state--sent span, .btn-secondary:focus .state--sent span, .btn-submit:focus .state--sent span {
  opacity: 0;
  animation: slideDown 0.8s ease forwards calc(var(--i) * 0.2s);
}

.btn-primary:focus .state--sent .icon svg, .btn-secondary:focus .state--sent .icon svg, .btn-submit:focus .state--sent .icon svg {
  opacity: 0;
  animation: appear 1.2s ease forwards 0.8s;
}

@keyframes appear {
  0% { opacity: 0; transform: scale(4) rotate(-40deg); color: var(--primary); filter: blur(4px); }
  30% { opacity: 1; transform: scale(0.6); filter: blur(1px); }
  50% { opacity: 1; transform: scale(1.2); filter: blur(0); }
  100% { opacity: 1; transform: scale(1); }
}

/* Next-generation light hero */
#hero.hero-section {
  isolation: isolate;
  min-height: 100svh;
  padding: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(37,99,235,0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--hero-bg) 100%);
}

#hero.hero-section #hero-overlay {
  background:
    linear-gradient(rgba(37,99,235,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 74% 44%, #000 0%, transparent 46%);
  opacity: 0.5;
  z-index: 0;
}

#hero.hero-section::before {
  display: none;
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.18;
  filter: blur(2px);
}

.hero-orbit-one {
  top: 18%;
  right: clamp(24px, 7vw, 120px);
  width: clamp(120px, 16vw, 220px);
  aspect-ratio: 1;
  border: 1px solid var(--hero-accent);
}

.hero-orbit-two {
  left: clamp(18px, 5vw, 84px);
  bottom: 14%;
  width: clamp(86px, 11vw, 148px);
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--hero-accent) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  border-radius: 0;
}

#hero.hero-section .hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  min-height: 100svh;
  padding: clamp(128px, 16vh, 172px) var(--hero-space) clamp(88px, 12vh, 132px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  text-align: left;
}

#hero.hero-section .hero-content-left {
  max-width: 670px;
}

.hero-eyebrow {
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--hero-accent);
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 4px 14px rgba(107,33,168,0.1);
  color: var(--hero-accent);
  opacity: 0;
  animation: hero-fade-up 0.7s ease 0.05s forwards;
}

#hero.hero-section .hero-headline {
  margin: 0 0 26px;
  color: var(--hero-ink);
  font-size: var(--hero-display);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.05em;
  filter: none;
  text-wrap: balance;
}

#hero.hero-section .hero-headline .line {
  opacity: 0;
  transform: translateY(34px);
  animation: hero-fade-up 0.82s cubic-bezier(0.22,1,0.36,1) forwards;
}

#hero.hero-section .hero-headline .line:nth-child(1) {
  color: var(--hero-accent-dark);
}

#hero.hero-section .hero-headline .line:nth-child(2) {
  background: var(--hero-brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-fade-up 0.82s cubic-bezier(0.22,1,0.36,1) 0.12s forwards;
}

#hero.hero-section .hero-sub {
  max-width: 610px;
  margin: 0 0 34px;
  color: rgba(17, 24, 39, 0.92);
  font-size: var(--hero-body);
  font-weight: 600;
  line-height: 1.7;
  text-align: left;
  text-shadow: none;
  opacity: 0;
  animation: hero-fade-up 0.72s ease 0.28s forwards;
}

#hero.hero-section .hero-btns {
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 30px;
  opacity: 0;
  animation: hero-fade-up 0.72s ease 0.42s forwards;
}

#hero.hero-section .hero-btns .btn-primary,
#hero.hero-section .hero-btns .btn-secondary {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
  animation: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  line-height: 1;
}

#hero.hero-section .hero-badge-micon,
#hero.hero-section .hero-btns .btn-primary,
#hero.hero-section .hero-btns .btn-secondary {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(40px) saturate(180%) brightness(1.05);
  -webkit-backdrop-filter: blur(40px) saturate(180%) brightness(1.05);
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

#hero.hero-section .hero-badge-micon::before,
#hero.hero-section .hero-btns .btn-primary::before,
#hero.hero-section .hero-btns .btn-secondary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 52%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0.06) 100%);
  pointer-events: none;
  z-index: 1;
}

#hero.hero-section .hero-badge-micon::after,
#hero.hero-section .hero-btns .btn-primary::after,
#hero.hero-section .hero-btns .btn-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,0.30) 50%, transparent 58%);
  animation: shimmer-sweep 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

#hero.hero-section .hero-badge-micon > *,
#hero.hero-section .hero-btns .btn-primary > *,
#hero.hero-section .hero-btns .btn-secondary > * {
  position: relative;
  z-index: 3;
}

#hero.hero-section .hero-badge-micon {
  padding: 10px 18px;
  border-radius: 999px;
  /* Slight tint + stronger edge so it stands out on white */
  background: linear-gradient(
    135deg,
    rgba(107, 33, 168, 0.14) 0%,
    rgba(236, 30, 107, 0.10) 52%,
    rgba(249, 115, 22, 0.10) 100%
  ) !important;
  border-color: rgba(107, 33, 168, 0.28) !important;
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.14),
    0 2px 10px rgba(107, 33, 168, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(255, 255, 255, 0.14);
}

#hero.hero-section .hero-badge-micon-pill {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: rgba(17, 24, 39, 0.95);
}

#hero.hero-section .hero-btns .btn-primary,
#hero.hero-section .hero-btns .btn-secondary,
#hero.hero-section .hero-btns .btn-primary *,
#hero.hero-section .hero-btns .btn-secondary * {
  color: rgba(255, 255, 255, 0.95) !important;
}

#hero.hero-section .hero-badge-micon:hover,
#hero.hero-section .hero-btns .btn-primary:hover,
#hero.hero-section .hero-btns .btn-secondary:hover,
#hero.hero-section .hero-badge-micon:focus-visible,
#hero.hero-section .hero-btns .btn-primary:focus-visible,
#hero.hero-section .hero-btns .btn-secondary:focus-visible {
  background: rgba(0, 0, 0, 0.38) !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
  transform: translateY(-1px);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

#hero.hero-section .hero-cta-primary {
  /* kept for specificity; liquid glass is handled above */
}

/* Ensure text/icons in the button stay white on all states */
#hero.hero-section .hero-cta-primary * {
  color: #fff !important;
}

/* Prevent the icon animation/outline layers from changing perceived color */
#hero.hero-section .hero-cta-primary .outline { opacity: 0.15 !important; }
#hero.hero-section .hero-cta-primary:hover,
#hero.hero-section .hero-cta-primary:focus-visible {
  animation-play-state: paused !important;
}

#hero.hero-section .hero-cta-primary::before,
#hero.hero-section .hero-cta-secondary::before {
  display: none;
}

#hero.hero-section .hero-cta-secondary {
  /* kept for specificity; liquid glass is handled above */
}

#hero.hero-section .hero-cta-secondary:hover,
#hero.hero-section .hero-cta-secondary:focus-visible {
  /* hover handled above */
}

#hero.hero-section .hero-btns a:focus-visible {
  outline: 3px solid rgba(107,33,168,0.26);
  outline-offset: 4px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(17, 24, 39, 0.88);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  animation: hero-fade-up 0.72s ease 0.56s forwards;
}

.hero-trust p {
  margin: 0;
}

.hero-avatar-stack {
  display: flex;
  align-items: center;
}

.hero-avatar-stack span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  color: var(--hero-ink);
  font-size: 10px;
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--hero-border);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(15,23,42,0.08);
}

.hero-avatar-stack span:first-child {
  margin-left: 0;
}

#hero.hero-section .hero-content-right {
  justify-content: flex-end;
  will-change: transform, opacity;
}

.hero-preview-window {
  position: relative;
  width: min(100%, 560px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.1);
  border-radius: var(--hero-radius);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--hero-shadow), inset 0 1px 0 rgba(255,255,255,0.9);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.hero-preview-window::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 2;
  pointer-events: none;
  border-radius: calc(var(--hero-radius) - 2px);
  box-shadow: inset 0 0 42px rgba(37,99,235,0.12);
}

.hero-preview-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 8px 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--hero-brand-gradient);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(107,33,168,0.24), 0 6px 16px rgba(249,115,22,0.14);
}

.hero-preview-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.hero-preview-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(15,23,42,0.18);
}

.hero-preview-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(37,99,235,0.08), transparent),
    #eef3f8;
}

.hero-preview-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(7,17,31,0.16));
}

.hero-preview-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.06);
}

#hero.hero-section .scroll-indicator {
  z-index: 2;
}

#hero.hero-section .scroll-indicator span {
  color: rgba(15,23,42,0.46);
}

#hero.hero-section .scroll-mouse {
  border-color: rgba(15,23,42,0.22);
}

#hero.hero-section .scroll-wheel {
  background: var(--hero-accent);
}

@keyframes hero-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  #hero.hero-section .hero-content {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 132px;
    text-align: left;
  }

  #hero.hero-section .hero-content-left,
  #hero.hero-section .hero-sub {
    max-width: 720px;
  }

  #hero.hero-section .hero-headline,
  #hero.hero-section .hero-sub {
    text-align: left;
  }

  #hero.hero-section .hero-btns {
    justify-content: flex-start !important;
  }

  #hero.hero-section .hero-content-right {
    justify-content: stretch;
  }

  .hero-preview-window {
    width: calc(100% + (var(--hero-space) * 2));
    max-width: none;
    margin-left: calc(var(--hero-space) * -1);
    margin-right: calc(var(--hero-space) * -1);
    border-radius: 0;
    transform: none;
  }

  .hero-preview-window::before {
    border-radius: 0;
  }
}

@media (max-width: 600px) {
  #hero.hero-section .hero-content {
    padding-top: 112px;
    padding-bottom: 86px;
  }

  #hero.hero-section .hero-headline {
    font-size: clamp(46px, 15vw, 74px);
  }

  #hero.hero-section .hero-btns {
    align-items: stretch;
  }

  #hero.hero-section .hero-btns .btn-primary,
  #hero.hero-section .hero-btns .btn-secondary {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  #hero.hero-section .hero-eyebrow,
  #hero.hero-section .hero-headline .line,
  #hero.hero-section .hero-sub,
  #hero.hero-section .hero-btns,
  #hero.hero-section .hero-trust {
    opacity: 1;
    transform: none;
    animation: none;
  }

  #hero.hero-section .hero-content-right {
    will-change: auto;
  }
}

/* Uiverse Send Message Button */
.btn-uiverse-submit {
  font-family: inherit;
  font-size: 16px;
  background: var(--hero-brand-gradient);
  color: white;
  padding: 0.7em 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
}

.btn-uiverse-submit span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.btn-uiverse-submit svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.btn-uiverse-submit:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.btn-uiverse-submit:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.btn-uiverse-submit:hover span {
  transform: translateX(5em);
}

.btn-uiverse-submit:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }
  to {
    transform: translateY(-0.1em);
  }
}

/* Idle Nav Blob Loader */
.nav-blob-loader {
  --color-one: var(--purple);
  --color-two: var(--orange);
  --color-three: rgba(107, 33, 168, 0.5);
  --color-four: rgba(249, 115, 22, 0.5);
  --color-five: rgba(236, 30, 107, 0.25);
  --time-animation: 2s;
  --size: 0.5;
  position: fixed;
  top: 15px;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  z-index: 1000;
  box-shadow:
    0 0 25px 0 var(--color-three),
    0 20px 50px 0 var(--color-four);
  animation: colorize calc(var(--time-animation) * 3) ease-in-out infinite;
  transform-origin: center top;
}

body.nav-idle .nav-blob-loader {
  transform: translateX(-50%) scale(var(--size));
  opacity: 1;
  pointer-events: auto;
}

body.nav-idle .menu {
  transform: translateX(-50%) scale(0.8) translateY(-20px);
  opacity: 0;
  pointer-events: none;
}

.menu {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, background 0.4s ease;
}

.nav-blob-loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border-top: solid 1px var(--color-one);
  border-bottom: solid 1px var(--color-two);
  background: linear-gradient(180deg, var(--color-five), var(--color-four));
  box-shadow:
    inset 0 10px 10px 0 var(--color-three),
    inset 0 -10px 10px 0 var(--color-four);
}

.nav-blob-loader .box {
  width: 100px;
  height: 100px;
  background: linear-gradient(180deg, var(--color-one) 30%, var(--color-two) 70%);
  border-radius: 50%;
  overflow: hidden;
  -webkit-mask-image: url(#clipping);
  mask-image: url(#clipping);
  mask: url(#clipping);
  -webkit-mask: url(#clipping);
}

.nav-blob-loader svg {
  position: absolute;
}

.nav-blob-loader svg #clipping {
  filter: contrast(15);
  animation: roundness calc(var(--time-animation) / 2) linear infinite;
}

.nav-blob-loader svg #clipping polygon {
  filter: blur(7px);
}

.nav-blob-loader svg #clipping polygon:nth-child(1) { transform-origin: 75% 25%; transform: rotate(90deg); }
.nav-blob-loader svg #clipping polygon:nth-child(2) { transform-origin: 50% 50%; animation: rotation var(--time-animation) linear infinite reverse; }
.nav-blob-loader svg #clipping polygon:nth-child(3) { transform-origin: 50% 60%; animation: rotation var(--time-animation) linear infinite; animation-delay: calc(var(--time-animation) / -3); }
.nav-blob-loader svg #clipping polygon:nth-child(4) { transform-origin: 40% 40%; animation: rotation var(--time-animation) linear infinite reverse; }
.nav-blob-loader svg #clipping polygon:nth-child(5) { transform-origin: 40% 40%; animation: rotation var(--time-animation) linear infinite reverse; animation-delay: calc(var(--time-animation) / -2); }
.nav-blob-loader svg #clipping polygon:nth-child(6) { transform-origin: 60% 40%; animation: rotation var(--time-animation) linear infinite; }
.nav-blob-loader svg #clipping polygon:nth-child(7) { transform-origin: 60% 40%; animation: rotation var(--time-animation) linear infinite; animation-delay: calc(var(--time-animation) / -1.5); }

@keyframes rotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes roundness {
  0%, 60%, 100% { filter: contrast(15); }
  20%, 40% { filter: contrast(3); }
}

@keyframes colorize {
  0%, 100% { filter: hue-rotate(0deg); }
  20% { filter: hue-rotate(-30deg); }
  40% { filter: hue-rotate(-60deg); }
  60% { filter: hue-rotate(-90deg); }
  80% { filter: hue-rotate(-45deg); }
}

/* ------------------------------------------------------
   OUTDOOR SHOWCASE � NEXT-GEN CARD EXPERIENCE
------------------------------------------------------ */
@keyframes card-fade-in {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes card-scale-in {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(40px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes float-subtle {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes glow-pulse-card {
  0%, 100% {
    box-shadow: 0 0 20px rgba(107, 33, 168, 0.15), 0 8px 32px rgba(107, 33, 168, 0.1);
  }
  50% {
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.2), 0 12px 48px rgba(249, 115, 22, 0.12);
  }
}

.outdoor-showcase-section {
  background: linear-gradient(180deg, var(--surface) 0%, rgba(240, 242, 255, 0.5) 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

/* ───────────────────────────────────────────────────────────
   LOCATIONS MAP
   ─────────────────────────────────────────────────────────── */
.locations-section {
  background: white;
  padding: 96px 0;
}

.locations-map-shell {
  border-radius: 22px;
  border: 1.5px solid var(--border);
  background: rgba(255,255,255,0.9);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.10);
}

#locations-map {
  width: 100%;
  height: min(560px, 70vh);
}

.locations-note {
  margin: 18px auto 0;
  max-width: 780px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

.outdoor-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
}

.outdoor-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 80px;
  animation: card-fade-in 0.8s ease 0.1s backwards;
}

.outdoor-header .section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
}

.outdoor-header .section-headline {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.outdoor-header .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.outdoor-header .section-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 420px;
}

/* Cards Container � Responsive Grid */
.outdoor-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .outdoor-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .outdoor-cards-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

/* Individual Card */
.outdoor-card {
  position: relative;
  height: 0;
  padding-bottom: 125%;
  border-radius: 24px;
  overflow: hidden;
  animation: card-scale-in 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
  opacity: 0;
  transform-style: preserve-3d;
}

.outdoor-card:nth-child(1) {
  animation-delay: 0.2s;
}
.outdoor-card:nth-child(2) {
  animation-delay: 0.35s;
}
.outdoor-card:nth-child(3) {
  animation-delay: 0.5s;
}
.outdoor-card:nth-child(4) {
  animation-delay: 0.65s;
}

.card-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}

.outdoor-card:hover .card-image img {
  transform: scale(1.08) rotate(1deg);
}

/* Glow Effect */
.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.18), transparent 55%);
  opacity: 0;
  animation: glow-pulse-card 3s ease-in-out infinite;
  pointer-events: none;
}

.outdoor-card:hover .card-glow {
  opacity: 1;
}

/* Gradient Overlay – Subtle Bottom Fade */
.card-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0) 0%, 
    rgba(0, 0, 0, 0.08) 60%, 
    rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

/* Hover & Focus Effects */
.outdoor-card {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14), 0 2px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.outdoor-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(107, 33, 168, 0.18), 0 8px 24px rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.3);
}

.outdoor-card:focus-within {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
}

/* Scroll Indicator */
.scroll-indicator-secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  opacity: 0.6;
  animation: float-subtle 3s ease-in-out infinite;
  transition: opacity 0.3s ease;
}

.scroll-indicator-secondary:hover {
  opacity: 1;
}

.scroll-indicator-secondary span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .outdoor-showcase-section {
    padding: 60px 16px;
  }

  .outdoor-header {
    margin-bottom: 50px;
    gap: 16px;
  }

  .outdoor-header .section-headline {
    font-size: clamp(36px, 8vw, 48px);
  }

  .outdoor-cards-container {
    gap: 16px;
  }

  .outdoor-card:hover {
    transform: translateY(-8px);
  }

  .card-image img:hover {
    transform: scale(1.05);
  }
}

/* ══════════════════════════════════════════════════════
   COOKIE BANNER (CARD DESIGN)
══════════════════════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-card {
  width: 320px;
  background-color: var(--primary);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  gap: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  pointer-events: auto;
}

.cookieSvg {
  width: 48px;
  height: 48px;
}

.cookieHeading {
  font-size: 1.2em;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  text-align: center;
}

.cookieDescription {
  text-align: center;
  font-size: 0.85em;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.cookieDescription a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.cookieDescription a:hover {
  text-decoration: underline;
}

.buttonContainer {
  display: flex;
  gap: 16px;
  flex-direction: row;
  width: 100%;
  margin-top: 4px;
}

.acceptButton {
  flex: 1;
  height: 40px;
  background: var(--grad-brand);
  border: none;
  color: white;
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 4px 12px var(--border-hover);
  transition: all 0.3s ease;
}

.acceptButton:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}

.declineButton {
  flex: 1;
  height: 40px;
  background-color: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.declineButton:hover {
  background-color: var(--surface-2);
}

@media (max-width: 640px) {
  #cookie-banner {
    bottom: 16px;
    right: 16px;
    left: 16px;
    display: flex;
    justify-content: center;
  }
  .cookie-card {
    width: 100%;
    max-width: 360px;
  }
}

/* ══════════════════════════════════════════════════════
   CUSTOM CHECKBOX (PRIVACY POLICY)
══════════════════════════════════════════════════════ */
.checkbox-wrapper {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-wrapper input {
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-wrapper .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 28px;
  width: 28px;
  background: var(--surface);
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  box-shadow:
    2px 2px 5px rgba(0, 0, 0, 0.05),
    -2px -2px 5px rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
}

.checkbox-wrapper .checkmark:before,
.checkbox-wrapper .checkmark:after {
  content: "";
  position: absolute;
  background: var(--accent);
  height: 3px;
  border-radius: 2px;
  transform-origin: 0 0;
  opacity: 0;
}

/* Short arm */
.checkbox-wrapper .checkmark:before {
  left: 6px;
  top: 13px;
  width: 10px;
  transform: rotate(45deg) scale(0);
  transition: all 0.3s cubic-bezier(0.5, -1, 0.5, 2);
}

/* Long arm */
.checkbox-wrapper .checkmark:after {
  left: 10px;
  top: 20px;
  width: 16px;
  transform: rotate(-45deg) scale(0);
  transition: all 0.4s cubic-bezier(0.5, -1, 0.5, 2);
}

.checkbox-wrapper input:checked + .checkmark {
  background: var(--surface-2);
  box-shadow:
    inset 2px 2px 4px rgba(0, 0, 0, 0.05),
    inset -2px -2px 4px rgba(255, 255, 255, 0.8);
}

/* Checked state - Short arm appears first */
.checkbox-wrapper input:checked + .checkmark:before {
  opacity: 1;
  transform: rotate(45deg) scale(1);
  transition: all 0.3s cubic-bezier(0.5, -1, 0.5, 2);
}

/* Checked state - Long arm appears with delay */
.checkbox-wrapper input:checked + .checkmark:after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
  transition: all 0.4s cubic-bezier(0.5, -1, 0.5, 2);
  transition-delay: 0.15s;
}

/* Unchecked state - Long arm disappears first */
.checkbox-wrapper input:not(:checked) + .checkmark:after {
  opacity: 0;
  transform: rotate(-45deg) scale(0);
  transition: all 0.3s cubic-bezier(0.5, -1, 0.5, 2);
  transition-delay: 0s;
}

/* Unchecked state - Short arm disappears with delay */
.checkbox-wrapper input:not(:checked) + .checkmark:before {
  opacity: 0;
  transform: rotate(45deg) scale(0);
  transition: all 0.3s cubic-bezier(0.5, -1, 0.5, 2);
  transition-delay: 0.15s;
}

.checkbox-wrapper .checkmark:hover {
  box-shadow:
    3px 3px 6px rgba(0, 0, 0, 0.05),
    -3px -3px 6px rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.checkbox-wrapper input:active + .checkmark {
  box-shadow:
    inset 2px 2px 4px rgba(0, 0, 0, 0.05),
    inset -2px -2px 4px rgba(255, 255, 255, 0.8);
  transform: scale(0.95);
}

