/* ═══════════════════════════════════════════════════════════════════════════
   PARALAXE ANALYTICS — DESIGN SYSTEM v2
   Theme: Light Mode Only | Accent: #796ebc
   GSAP-powered animations, wider layout, premium feel
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ──────────────────────────────────────────────── */
:root {
  /* Colors */
  --color-bg:             #FFFFFF;
  --color-bg-alt:         #F8FAFC;
  --color-bg-placeholder: #F1F5F9;
  --color-text:           #0F172A;
  --color-text-secondary: #475569;
  --color-text-tertiary:  #94A3B8;
  --color-border:         #E2E8F0;
  --color-border-light:   #F1F5F9;
  --color-accent:         #796ebc;
  --color-accent-hover:   #685bab;
  --color-accent-light:   rgba(121, 110, 188, 0.08);
  --color-placeholder-border: #CBD5E1;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Fira Mono', 'Roboto Mono', monospace;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Radii */
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md:  0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg:  0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.10);

  /* Layout */
  --header-height: 72px;
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-padding: var(--space-lg);
}


/* ─── CSS RESET ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}


/* ─── CONTAINERS ─────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}


/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #FFFFFF;
  border: 2px solid var(--color-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  box-shadow: 0 4px 20px rgba(121, 110, 188, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background-color: var(--color-accent-light);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.875rem;
  padding: 10px 22px;
}

.btn-lg {
  font-size: 1rem;
  padding: 16px 36px;
}


/* ─── SECTION SHARED ─────────────────────────────────────────────────────── */
.section-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--color-text);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}


/* ─── PLACEHOLDER BOXES (Global Rule) ────────────────────────────────────── */
.placeholder-box {
  min-height: 300px;
  background: var(--color-bg-placeholder);
  border: 2px dashed var(--color-placeholder-border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-box span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-md);
}

.placeholder-box--inline {
  min-height: auto;
  height: 40px;
  min-width: 180px;
  padding: 0 var(--space-md);
  border-radius: var(--radius-sm);
}

.placeholder-box--logo {
  min-height: 72px;
  height: 72px;
  min-width: 180px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.placeholder-box--icon {
  min-height: auto;
  height: 44px;
  width: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
}

.placeholder-box--icon span {
  font-size: 0.5rem;
  letter-spacing: 0;
  padding: 2px;
  line-height: 1.1;
}

.placeholder-box--blog {
  min-height: 200px;
  height: 200px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border-bottom: none;
}


/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-padding);
}

.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Genos', sans-serif;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.02em;
}

.logo-text-brand {
  color: var(--color-accent);
  font-weight: 500;
}

.logo-text-sub {
  color: var(--color-text-secondary);
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-logo-link .logo-icon {
  width: 32px;
  height: 32px;
}

.footer-logo-link .logo-text {
  font-size: 0.9375rem;
}

/* Navigation */
.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link[aria-expanded="true"] {
  color: var(--color-text);
  background-color: var(--color-bg-alt);
}

.nav-chevron {
  transition: transform 0.25s ease;
}

.nav-link[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: background-color 0.15s ease;
}

.dropdown-link:hover {
  background-color: var(--color-bg-alt);
}

.dropdown-link strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.dropdown-link span {
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
}

/* Header actions */
.header-actions {
  flex-shrink: 0;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HEADER RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    /* CRITICAL: disable backdrop-filter on mobile to prevent
       stacking context from clipping the fixed nav overlay */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #FFFFFF;
  }

  .header-inner {
    padding: 0 var(--space-md);
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .mobile-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .header-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
    width: 100%;
    max-width: 320px;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 12px 20px;
    justify-content: center;
  }

  .dropdown-panel {
    position: static;
    transform: none;
    min-width: auto;
    box-shadow: none;
    border: none;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    margin-top: var(--space-sm);
    padding: var(--space-sm);
  }

  .dropdown-panel.open {
    transform: none;
  }

  .dropdown-link {
    text-align: left;
  }

  .header-actions {
    display: none;
  }

  .logo-text {
    font-size: 1.5rem;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION — Redesigned
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding-top: calc(var(--header-height) + var(--space-5xl));
  padding-bottom: var(--space-4xl);
  background: var(--color-bg);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Floating gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  will-change: transform;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(121, 110, 188, 0.08);
  top: -100px;
  right: -100px;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(121, 110, 188, 0.05);
  bottom: 0;
  left: -150px;
}

.hero-orb--3 {
  width: 300px;
  height: 300px;
  background: rgba(121, 110, 188, 0.04);
  top: 40%;
  left: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-center {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  text-transform: uppercase;
  background: var(--color-accent-light);
  border: 1px solid rgba(121, 110, 188, 0.15);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2xl);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* Headline */
.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.hero-line {
  display: block;
}

.hero-headline em {
  font-style: normal;
  color: var(--color-accent);
}

.hero-strike {
  color: var(--color-text-tertiary);
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-color: rgba(121, 110, 188, 0.35);
  text-decoration-thickness: 3px;
  white-space: nowrap;
}

.hero-subtext {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 740px;
  margin: 0 auto var(--space-2xl) auto;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* Metrics Strip */
.hero-metrics {
  margin-top: var(--space-4xl);
  position: relative;
  z-index: 1;
}

.metrics-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.metric-value {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metric-unit {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-left: 2px;
}

.metric-label {
  font-size: 0.8125rem;
  color: var(--color-text-tertiary);
  font-weight: 500;
  margin-top: 4px;
}

.metric-divider {
  width: 1px;
  height: 48px;
  background: var(--color-border);
}


/* ═══════════════════════════════════════════════════════════════════════════
   INFRASTRUCTURE LOGOS — Marquee
   ═══════════════════════════════════════════════════════════════════════════ */
.infra {
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  overflow: hidden;
}

.infra-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.02em;
}

.infra-track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.infra-track-inner {
  display: flex;
  gap: var(--space-3xl);
  animation: marquee 30s linear infinite;
  width: max-content;
  align-items: center;
}

.infra-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.infra-logo--md {
  height: 60px;
}

.infra-logo--lg {
  height: 100px;
}

.infra-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════════════════════════════════
   AI EFFICIENCY SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.ai-highlight {
  padding: var(--space-5xl) 0;
}

.ai-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.ai-highlight-text .section-title {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.ai-highlight-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

/* Tech pills */
.ai-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.ai-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-accent);
  background: var(--color-accent-light);
  border: 1px solid rgba(121, 110, 188, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

/* Code window */
.code-window {
  background: #0F172A;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.1);
}

.code-window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.code-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-dot--red { background: #EF4444; }
.code-dot--yellow { background: #F59E0B; }
.code-dot--green { background: #22C55E; }

.code-window-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-left: auto;
}

.code-window-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #CBD5E1;
  overflow-x: auto;
}

.code-kw { color: #C084FC; }
.code-fn { color: #60A5FA; }
.code-str { color: #34D399; }
.code-num { color: #FBBF24; }
.code-cmt { color: #64748B; font-style: italic; }

/* ═══════════════════════════════════════════════════════════════════════════
   TECHNOLOGY PARTNERS
   ═══════════════════════════════════════════════════════════════════════════ */
.partners {
  padding: var(--space-3xl) 0;
  background: var(--color-bg);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.partner-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  border-left: 4px solid transparent;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.partner-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.partner-card--google {
  border-left-color: #4285F4;
}

.partner-card--meta {
  border-left-color: #0081FB;
}

.partner-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

.partner-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.partner-card-content {
  flex: 1;
  min-width: 0;
}

.partner-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  background: rgba(66, 133, 244, 0.08);
  color: #4285F4;
}

.partner-badge--meta {
  background: rgba(0, 129, 251, 0.08);
  color: #0081FB;
}

.partner-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 6px;
  line-height: 1.3;
}

.partner-card-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0 0 10px;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.partner-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--color-bg-alt);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════════════════════
   GEO SPATIAL MAP
   ═══════════════════════════════════════════════════════════════════════════ */
.geo-map {
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
}

.geo-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.geo-map-text .section-title {
  text-align: left;
  margin-bottom: var(--space-lg);
}

.geo-map-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.geo-map-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.geo-map-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.geo-map-features li svg {
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}

/* ── Map Container ─────────────────────────────────────────────────────── */
.geo-map-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--color-border);
}

#brazil-map {
  width: 100%;
  height: 550px;
  background: #F8FAFC;
  z-index: 1;
}

/* Leaflet tooltip override */
.geo-tooltip {
  background: #1E293B !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 4px 10px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
.geo-tooltip::before {
  border-top-color: #1E293B !important;
}

.geo-map-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

/* ── Demographic Panel ─────────────────────────────────────────────────── */
.demo-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 340px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid var(--color-border);
  z-index: 10;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.demo-panel.is-open {
  transform: translateX(0);
}

.demo-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 20px 12px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.demo-panel-state {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0;
}

.demo-panel-region {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
  display: block;
}

.demo-panel-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-secondary);
  padding: 4px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.demo-panel-close:hover {
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.demo-panel-body {
  padding: 16px 20px 24px;
  flex: 1;
  overflow-y: auto;
}

.demo-panel-hint {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  text-align: center;
  padding: 60px 12px;
  line-height: 1.5;
}

.demo-panel-error {
  color: #EF4444;
  font-size: 0.875rem;
  text-align: center;
  padding: 40px 12px;
}

/* ── Demographic Sections ──────────────────────────────────────────────── */
.demo-section {
  margin-bottom: 20px;
}
.demo-section:last-child {
  margin-bottom: 0;
}

.demo-stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.demo-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Sex Distribution Bar ──────────────────────────────────────────────── */
.demo-sex-bar {
  display: flex;
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}

.demo-sex-male {
  background: rgba(121, 110, 188, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.demo-sex-male span {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
}

.demo-sex-female {
  background: rgba(244, 114, 182, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.demo-sex-female span {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
}

.demo-sex-legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.demo-sex-legend span {
  font-size: 0.6875rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.demo-dot--male { background: rgba(121, 110, 188, 0.8); }
.demo-dot--female { background: rgba(244, 114, 182, 0.8); }

/* ── Ethnicity Bar ─────────────────────────────────────────────────────── */
.demo-eth-bar {
  display: flex;
  height: 16px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.demo-eth-segment {
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 2px;
}

.demo-eth-legend {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.demo-eth-legend span {
  font-size: 0.625rem;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

/* ── Age Pyramid Chart ─────────────────────────────────────────────────── */
.demo-chart-wrap {
  height: 320px;
  position: relative;
}

/* ── Loader ────────────────────────────────────────────────────────────── */
.demo-panel-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 0;
  color: var(--color-text-secondary);
  font-size: 0.8125rem;
}

.demo-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: demo-spin 0.7s linear infinite;
}

@keyframes demo-spin {
  to { transform: rotate(360deg); }
}

/* ── Business Intelligence Cards ───────────────────────────────────────── */
.demo-divider {
  height: 1px;
  background: var(--color-border);
  margin: 20px 0;
}

.demo-biz-subtitle {
  font-size: 0.6875rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.demo-biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.demo-biz-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.demo-biz-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 2px 8px rgba(121, 110, 188, 0.08);
}

.demo-biz-icon {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.demo-biz-card-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.demo-biz-card-label {
  font-size: 0.5625rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SOLUTIONS — STACKED ROWS
   ═══════════════════════════════════════════════════════════════════════════ */
.solutions {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-alt);
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.solutions-note {
  text-align: center;
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border);
}

.solutions-note p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.solutions-note a {
  color: var(--color-accent);
  transition: opacity 0.2s ease;
}

.solutions-note a:hover {
  opacity: 0.8;
}

.solution-row {
  display: block;
  border-bottom: 1px solid var(--color-border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-row:first-child {
  border-top: 1px solid var(--color-border);
}

.solution-row:hover {
  background: var(--color-bg);
}

.solution-row-content {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2xl);
  padding: var(--space-2xl) var(--space-lg);
}

.solution-number {
  font-family: var(--font-mono);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(121, 110, 188, 0.10);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
  transition: color 0.35s ease;
}

.solution-row:hover .solution-number {
  color: rgba(121, 110, 188, 0.22);
}

.solution-info {
  flex: 1;
  padding-top: 6px;
}

.solution-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
  transition: color 0.3s ease;
}

.solution-row:hover .solution-title {
  color: var(--color-accent);
}

.solution-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin-bottom: var(--space-md);
}

.solution-tech {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-tertiary);
  letter-spacing: 0.03em;
}

.solution-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-tertiary);
  margin-top: 8px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-row:hover .solution-arrow {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
  transform: scale(1.08);
}



/* ═══════════════════════════════════════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════════════════════════════════════ */
.manifesto {
  padding: var(--space-5xl) 0 var(--space-4xl);
  background: var(--color-bg);
}

.manifesto-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: var(--space-xl);
}

.manifesto-headline em {
  font-style: normal;
  color: var(--color-accent);
}

.manifesto-body {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto var(--space-3xl) auto;
}

.manifesto-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  margin: 0 auto;
  border-radius: 2px;
}

.manifesto-line.expanded {
  width: 120px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   BLOG HIGHLIGHTS
   ═══════════════════════════════════════════════════════════════════════════ */
.blog {
  padding: var(--space-5xl) 0;
  background: var(--color-bg-alt);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-3xl);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.blog-card {
  display: block;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
  border-color: rgba(121, 110, 188, 0.25);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}

.blog-card-img {
  overflow: hidden;
}

.blog-card-body {
  padding: var(--space-lg);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.blog-card-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.blog-card-date {
  font-size: 0.8125rem;
  color: var(--color-text-tertiary);
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
}



/* ═══════════════════════════════════════════════════════════════════════════
   PROCESS / HOW WE WORK
   ═══════════════════════════════════════════════════════════════════════════ */
.process {
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.process-step {
  position: relative;
  padding: var(--space-xl);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
  border-color: rgba(121, 110, 188, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.process-step-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(121, 110, 188, 0.12);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-md);
  transition: color 0.35s ease;
}

.process-step:hover .process-step-number {
  color: rgba(121, 110, 188, 0.25);
}

.process-step-line {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), rgba(121, 110, 188, 0.2));
  border-radius: 3px;
  margin-bottom: var(--space-lg);
}

.process-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.process-step-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
}


/* ═══════════════════════════════════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-band {
  padding: var(--space-5xl) 0;
  background: var(--color-bg);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3xl);
  padding: var(--space-3xl) var(--space-3xl);
  background: linear-gradient(135deg, var(--color-bg-alt), rgba(121, 110, 188, 0.04));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
}

.cta-band-headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.cta-band-sub {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 500px;
}

.cta-band-actions {
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-3xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-logo-icon {
  margin-left: -15px;
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--color-text-tertiary);
}

.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: -5px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.08);
}

.social-icon:hover img {
  opacity: 0.7;
}

/* Compensate for different internal whitespace in source images */
.social-icon[aria-label="Instagram"] img,
.social-icon[aria-label="LinkedIn"] img {
  width: 26px;
  height: 26px;
}

.social-icon[aria-label="WhatsApp"] img {
  width: 30px;
  height: 30px;
}

.footer-phone {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  margin-bottom: 5px;
}

.footer-phone:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid var(--color-border-light);
  padding: var(--space-lg) 0;
}

.footer-bottom .container {
  max-width: var(--container-wide);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--color-text-tertiary);
}


/* ═══════════════════════════════════════════════════════════════════════════
   GSAP ANIMATION INITIAL STATES
   ═══════════════════════════════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  will-change: transform, opacity;
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-right"] {
  transform: translateX(-60px);
}

[data-animate="fade-left"] {
  transform: translateX(60px);
}

[data-animate="line-expand"] {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .solution-row-content {
    gap: var(--space-lg);
  }

  .solution-number {
    font-size: 2.5rem;
    min-width: 56px;
  }

  .ai-highlight-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }

  .geo-map-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  #brazil-map {
    height: 450px;
  }

  .demo-panel {
    width: 300px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band-sub {
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .metrics-strip {
    flex-wrap: wrap;
    gap: var(--space-xl);
  }

  .metric-divider {
    display: none;
  }

  .metric {
    flex: 1 1 40%;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: var(--space-md);
  }

  /* Prevent horizontal scrolling */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    text-align: center;
  }

  /* Hide metrics strip on mobile (End-to-end cards) */
  .hero-metrics {
    display: none;
  }

  /* Solutions: hide arrow, reduce gap */
  .solution-arrow {
    display: none;
  }

  .solution-row-content {
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-sm);
  }

  .solution-number {
    font-size: 2rem;
    min-width: 40px;
  }

  .solution-title {
    font-size: 1.125rem;
  }

  .solution-desc {
    font-size: 0.875rem;
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  /* Map: full-width bottom sheet */
  #brazil-map {
    height: 380px;
  }

  .demo-panel {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 90%;
    max-height: 90%;
    border-left: none;
    border-top: 1px solid var(--color-border);
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }

  .demo-panel.is-open {
    transform: translateY(0);
  }

  .demo-chart-wrap {
    height: 260px;
  }

  .metric-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.5rem;
  }

  .placeholder-box--inline {
    min-width: 140px;
  }
}

/* ─── LANGUAGE TOGGLE ────────────────────────────────────────────────────── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.lang-toggle:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .header-actions {
    gap: var(--space-sm);
    order: 10;
    margin-left: auto;
  }
  .header-actions .btn-sm {
    display: none;
  }
  .mobile-toggle {
    order: 11;
    margin-left: var(--space-sm);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SURVEY BANNER
   ═══════════════════════════════════════════════════════════════════════════ */

.survey-banner {
  padding: var(--space-3xl) 0;
}

.survey-banner-inner {
  background: linear-gradient(135deg, #796ebc 0%, #5e4fa2 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-3xl) var(--space-3xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.survey-banner-content {
  max-width: 640px;
}

.survey-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-mono);
  font-size: 0.688rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.survey-badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.survey-banner-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.survey-banner-desc {
  font-size: 0.938rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.survey-banner-cta {
  flex-shrink: 0;
  background: white !important;
  color: var(--color-accent) !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.survey-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .survey-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
  }

  .survey-banner-title {
    font-size: 1.375rem;
  }
}
