/* ============================================================
   MirKai Design System — ELECTRIC AUTHORITY
   Navy × Electric Blue × Emerald × Near-White × Gold
   Clean · Premium · Conversion-Optimised · Luxury Tech
   ============================================================ */

:root {
  /* ── Core Brand Colors ── */
  --color-white:       #FFFFFF;
  --color-bg:          #FAFAFA;       /* near-white page bg */
  --color-bg-light:    #F4F6F9;       /* subtle section bg  */
  --color-bg-dark:     #0A1628;       /* deep navy sections */
  --color-bg-darker:   #060E1A;       /* darkest navy       */

  /* Primary — Electric Blue (trust, tech, authority) */
  --color-blue:        #0057FF;
  --color-blue-dark:   #0040CC;
  --color-blue-light:  #3B82F6;
  --color-blue-mid:    #1D6FF5;
  --color-blue-pale:   rgba(0, 87, 255, 0.08);

  /* Success — Emerald (revenue, growth, money) */
  --color-green:       #00C47A;
  --color-emerald:     #00A865;
  --color-green-pale:  rgba(0, 196, 122, 0.10);

  /* Premium Accent — Gold (luxury, premium feel) */
  --color-gold:        #F5B800;
  --color-gold-dark:   #D4A843;
  --color-gold-pale:   rgba(245, 184, 0, 0.12);

  /* Alert — Soft Red */
  --color-red:         #F04438;
  --color-red-pale:    rgba(240, 68, 56, 0.08);

  /* Text hierarchy */
  --color-text:           #0A0A0A;
  --color-text-secondary: #4A5568;
  --color-text-muted:     #8A9BB0;
  --color-text-on-dark:   rgba(250, 250, 250, 0.95);
  --color-text-on-dark-2: rgba(250, 250, 250, 0.65);
  --color-text-on-glass:  rgba(10, 10, 10, 0.92);

  /* ── Gradients ── */
  --gradient-hero-dark:
    linear-gradient(160deg, #060E1A 0%, #0A1628 40%, #0E2040 70%, #102448 100%);
  --gradient-blue:
    linear-gradient(135deg, #0040CC 0%, #0057FF 50%, #1D6FF5 100%);
  --gradient-blue-soft:
    linear-gradient(135deg, #0057FF 0%, #3B82F6 100%);
  --gradient-emerald:
    linear-gradient(135deg, #00A865 0%, #00C47A 100%);
  --gradient-gold:
    linear-gradient(135deg, #D4A843 0%, #F5B800 60%, #FFD233 100%);
  --gradient-luxury:
    linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 50%, #0057FF 100%);
  --gradient-blue-luxury:
    linear-gradient(135deg, #0057FF 0%, #3B82F6 50%, #00C47A 100%);
  --gradient-card-light:
    linear-gradient(135deg, rgba(255,255,255,0.90) 0%, rgba(244,246,249,0.95) 100%);
  --gradient-card-dark:
    linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  --gradient-mesh-light:
    radial-gradient(at 15% 15%, rgba(0,87,255,0.06)  0px, transparent 55%),
    radial-gradient(at 85% 10%, rgba(0,196,122,0.05) 0px, transparent 55%),
    radial-gradient(at 70% 75%, rgba(0,87,255,0.04)  0px, transparent 55%),
    radial-gradient(at 10% 80%, rgba(245,184,0,0.04) 0px, transparent 55%);
  --gradient-mesh-dark:
    radial-gradient(at 20% 20%, rgba(0,87,255,0.18)  0px, transparent 55%),
    radial-gradient(at 80% 10%, rgba(0,196,122,0.12) 0px, transparent 55%),
    radial-gradient(at 60% 70%, rgba(0,87,255,0.12)  0px, transparent 55%),
    radial-gradient(at 10% 80%, rgba(245,184,0,0.08) 0px, transparent 55%);

  /* ── Glass Effects ── */
  --glass-strong:        rgba(255, 255, 255, 0.10);
  --glass-medium:        rgba(255, 255, 255, 0.18);
  --glass-light:         rgba(255, 255, 255, 0.80);
  --glass-white:         rgba(255, 255, 255, 0.92);
  --glass-border:        rgba(255, 255, 255, 0.18);
  --glass-border-bright: rgba(255, 255, 255, 0.35);
  --glass-border-blue:   rgba(0, 87, 255, 0.20);
  --glass-shadow:        rgba(0, 0, 0, 0.10);

  /* ── Typography ── */
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-text:    -apple-system, BlinkMacSystemFont, "SF Pro Text",    "Helvetica Neue", Arial, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  3rem;
  --text-5xl:  4rem;
  --text-6xl:  4.5rem;

  /* ── Spacing ── */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  /* ── Shadows ── */
  --shadow-sm:     0 2px 8px  rgba(0, 0, 0, 0.06);
  --shadow-md:     0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg:     0 16px 48px rgba(0, 0, 0, 0.10);
  --shadow-xl:     0 24px 64px rgba(0, 0, 0, 0.12);
  --shadow-2xl:    0 32px 80px rgba(0, 0, 0, 0.16);
  --shadow-blue:   0 8px 32px  rgba(0, 87, 255, 0.28);
  --shadow-blue-lg:0 16px 56px rgba(0, 87, 255, 0.32);
  --shadow-green:  0 8px 32px  rgba(0, 196, 122, 0.25);
  --shadow-gold:   0 8px 32px  rgba(245, 184, 0, 0.30);
  --shadow-glow:   0 0  40px   rgba(0, 87, 255, 0.20);
  --shadow-inner:  inset 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-glass:  0 8px 32px  rgba(0, 0, 0, 0.08);
  --shadow-card:   0 4px 20px  rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0,0,0,0.05);

  /* ── Border Radius ── */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  32px;
  --radius-full: 9999px;

  /* ── Transitions ── */
  --transition-fast:   180ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   320ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Blur ── */
  --blur-sm:  12px;
  --blur-md:  20px;
  --blur-lg:  32px;
  --blur-xl:  48px;
  --blur-2xl: 64px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-text);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Subtle mesh overlay for light sections */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--gradient-mesh-light);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography — Luxury Hierarchy ─────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1; 
  font-weight: 700; 
  letter-spacing: -0.03em;
  color: var(--color-text);
}
h1 { font-size: var(--text-6xl); letter-spacing: -0.04em; }
h2 { font-size: var(--text-4xl); letter-spacing: -0.035em; }
h3 { font-size: var(--text-3xl); }

.text-center { text-align: center; }
.text-blue   { color: var(--color-blue); }
.text-green  { color: var(--color-green); }
.text-red    { color: var(--color-red); }

/* Luxury Text Effects */
.text-gradient-luxury {
  background: var(--gradient-luxury);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-blue {
  background: var(--gradient-blue-luxury);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ───────────────────────────────────────────────── */
.container    { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 var(--space-lg); }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 var(--space-lg); }
.container-lg { max-width: 1300px; margin: 0 auto; padding: 0 var(--space-lg); }
section { padding: var(--space-3xl) 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-lg); }
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ── Nav \u2014 Liquid Glass Floating ───────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  background: rgba(250,250,250,0.88);
  backdrop-filter: saturate(180%) blur(var(--blur-xl));
  -webkit-backdrop-filter: saturate(180%) blur(var(--blur-xl));
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
  transition: all var(--transition-base);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 16px rgba(0,0,0,0.09);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1140px; margin: 0 auto; padding: 0 var(--space-lg);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.03em; color: var(--color-text);
}
.nav-logo span { color: var(--color-blue); }
.nav-links { display: flex; align-items: center; gap: var(--space-lg); }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--color-text); transition: color var(--transition-fast); }
.nav-links a:hover, .nav-links a.active { color: var(--color-blue); }
.nav-cta {
  display: inline-flex !important; align-items: center;
  padding: 9px 20px !important;
  background: var(--color-blue) !important;
  color: white !important;
  border-radius: var(--radius-full) !important;
  font-size: 0.875rem !important; font-weight: 600 !important;
  transition: all var(--transition-fast) !important;
}
.nav-cta:hover {
  background: var(--color-blue-dark) !important;
  transform: translateY(-1px); box-shadow: var(--shadow-blue);
}
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all var(--transition-base); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero \u2014 Liquid Glass Vibrant ─────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; position: relative; overflow: hidden;
  background: var(--gradient-hero-dark);
}
.hero-bg { 
  position: absolute; inset: 0; 
  background: var(--gradient-mesh-dark);
  z-index: 0; 
}
.hero-orb { 
  position: absolute; 
  border-radius: 50%; 
  filter: blur(140px); 
  opacity: 0.50; 
  pointer-events: none;
}
.hero-orb-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,87,255,0.55) 0%, rgba(29,111,245,0.30) 50%, transparent 70%);
  top: -250px; right: -200px; 
  animation: orbFloat1 20s ease-in-out infinite, orbGlow1 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,196,122,0.40) 0%, rgba(0,168,101,0.20) 50%, transparent 70%);
  bottom: -200px; left: -150px; 
  animation: orbFloat2 25s ease-in-out infinite, orbGlow2 10s ease-in-out infinite;
}
@keyframes orbGlow1 {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.75; }
}
@keyframes orbGlow2 {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.65; }
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 960px; margin: 0 auto; padding: var(--space-4xl) var(--space-lg);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; 
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(var(--blur-lg));
  -webkit-backdrop-filter: blur(var(--blur-lg));
  color: rgba(255,255,255,0.90); 
  border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-lg);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
}
.hero-badge .dot { 
  width: 8px; height: 8px; 
  background: var(--color-green); 
  border-radius: 50%; 
  animation: pulse 2s infinite;
  box-shadow: 0 0 12px rgba(0,196,122,0.8);
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: var(--space-lg);
  color: #FFFFFF;
  text-shadow: 0 2px 40px rgba(0,87,255,0.30);
}
.hero-sub {
  font-size: clamp(1.1rem, 2.8vw, 1.35rem); 
  color: rgba(255,255,255,0.72);
  line-height: 1.8; max-width: 720px; margin: 0 auto var(--space-xl);
  font-weight: 400;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: var(--space-sm); flex-wrap: wrap; }

/* ── Buttons \u2014 Liquid Glass Premium ────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; border-radius: var(--radius-full);
  font-size: 1.05rem; font-weight: 700; font-family: var(--font-display);
  transition: all var(--transition-base); cursor: pointer; white-space: nowrap; border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}
.btn-lg  { padding: 19px 44px; font-size: 1.15rem; }
.btn-sm  { padding: 12px 26px; font-size: 0.95rem; }

/* Primary Button — Electric Blue */
.btn-primary { 
  background: var(--gradient-blue);
  color: white; 
  box-shadow: var(--shadow-blue);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transition: left var(--transition-slow), right var(--transition-slow);
}
.btn-primary:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: var(--shadow-blue-lg);
}
.btn-primary:hover::after { left: 100%; right: -100%; }
.btn-primary:active { transform: translateY(-1px) scale(1.01); }

/* Secondary Button — Clean Outlined */
.btn-secondary { 
  background: rgba(255,255,255,0.92);
  color: var(--color-text); 
  border: 2px solid rgba(0,0,0,0.10);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { 
  background: white; 
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-blue);
  color: var(--color-blue);
}

/* Ghost Button — for dark backgrounds */
.btn-ghost { 
  background: rgba(255,255,255,0.10); 
  color: white; 
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(var(--blur-sm));
  -webkit-backdrop-filter: blur(var(--blur-sm));
}
.btn-ghost:hover { 
  background: rgba(255,255,255,0.18); 
  border-color: rgba(255,255,255,0.50);
  transform: translateY(-2px);
}

/* White Button — on dark sections */
.btn-white { 
  background: white; 
  color: var(--color-blue); 
  box-shadow: var(--shadow-lg);
  border: none;
}
.btn-white:hover { 
  background: white;
  box-shadow: var(--shadow-blue-lg); 
  transform: translateY(-3px); 
}
.btn-full { width: 100%; }

/* ── Section Headers \u2014 Liquid Glass Labels ──────────────── */
.section-label {
  display: inline-block; 
  font-size: var(--text-sm); 
  font-weight: 700;
  color: var(--color-blue);
  text-transform: uppercase; 
  letter-spacing: 0.12em; 
  margin-bottom: var(--space-md);
  padding: 7px 18px;
  background: var(--color-blue-pale);
  border-radius: var(--radius-full);
  border: 1px solid rgba(0,87,255,0.15);
}

.section-header { text-align: center; max-width: 820px; margin: 0 auto var(--space-2xl); }
.section-header h2 { 
  margin-bottom: var(--space-md); 
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--color-text);
}
.section-header p { 
  color: var(--color-text-secondary); 
  font-size: 1.15rem; 
  line-height: 1.8;
  font-weight: 400;
}

/* ── Cards \u2014 Liquid Glass Premium ────────────────────── */
.card {
  background: white; 
  border-radius: var(--radius-xl); 
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-blue);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.card:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-lg), var(--shadow-blue);
  border-color: rgba(0,87,255,0.12);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-lg);
  background: var(--color-blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: var(--space-md);
  border: 1px solid rgba(0,87,255,0.10);
  transition: all var(--transition-base);
}
.card:hover .card-icon {
  transform: scale(1.08) rotate(4deg);
  background: rgba(0,87,255,0.12);
}
.card-icon.red    { background: rgba(240,68,56,0.08); border-color: rgba(240,68,56,0.12); }
.card-icon.orange { background: rgba(245,184,0,0.10); border-color: rgba(245,184,0,0.15); }
.card-icon.green  { background: rgba(0,196,122,0.08); border-color: rgba(0,196,122,0.12); }
.card-icon.purple { background: rgba(109,40,217,0.07); border-color: rgba(109,40,217,0.10); }
.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: var(--space-sm); color: var(--color-text); }
.card p  { color: var(--color-text-secondary); line-height: 1.75; }

/* ── Stats \u2014 Liquid Glass Vibrant ──────────────────────── */
.stats-section { 
  background: var(--color-bg-dark);
  border-radius: var(--radius-2xl); 
  padding: var(--space-4xl) var(--space-2xl);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: var(--gradient-mesh-dark);
  opacity: 0.6;
  pointer-events: none;
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-number { 
  font-size: clamp(3rem, 6.5vw, 4.5rem); 
  font-weight: 900; 
  letter-spacing: -0.05em; 
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(255,255,255,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; 
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 20px rgba(255,255,255,0.4));
}
.stat-label { 
  font-size: 1.1rem; 
  color: rgba(255,255,255,0.9); 
  max-width: 240px; 
  margin: 0 auto; 
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ── Comparison Table ─────────────────────────────────────── */
.comparison-table { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid rgba(0,0,0,0.06); }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th { padding: var(--space-md) var(--space-xl); font-size: 1rem; font-weight: 700; text-align: left; }
.comparison-table th:first-child { background: #FFF5F5; color: var(--color-red); }
.comparison-table th:last-child  { background: #EFF7FF; color: var(--color-blue); }
.comparison-table td { padding: 14px var(--space-xl); font-size: 0.975rem; line-height: 1.5; border-top: 1px solid rgba(0,0,0,0.04); }
.comparison-table td:first-child { background: #FFFAFA; color: #666; }
.comparison-table td:last-child  { background: #F8FDFF; color: var(--color-text); font-weight: 500; }
.check { color: var(--color-green); margin-right: 6px; }
.cross { color: var(--color-red);   margin-right: 6px; }

/* ── Journey Timeline \u2014 Liquid Glass Flow ───────────────── */
.journey-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all var(--transition-base);
}
.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 28px 60px rgba(0,0,0,0.10);
}
.journey-bad { 
  border-color: rgba(240,68,56,0.20);
}
.journey-good { 
  border-color: rgba(0,196,122,0.25);
}

.journey-header {
  padding: var(--space-xl) var(--space-2xl);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.journey-bad .journey-header {
  background: linear-gradient(135deg, rgba(240,68,56,0.08) 0%, rgba(240,68,56,0.04) 100%);
  color: var(--color-red);
}
.journey-good .journey-header {
  background: linear-gradient(135deg, rgba(0,196,122,0.10) 0%, rgba(0,87,255,0.06) 100%);
  color: var(--color-emerald);
}

.journey-timeline {
  padding: var(--space-2xl);
  padding-top: var(--space-lg);
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-left: 0;
}
.journey-step:not(:last-of-type)::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 56px;
  width: 2px;
  height: calc(100% + var(--space-lg));
  background: linear-gradient(180deg, rgba(0,87,255,0.25) 0%, rgba(0,87,255,0.05) 100%);
  border-radius: var(--radius-full);
}

.journey-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--color-blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,87,255,0.12);
  transition: all var(--transition-base);
}
.journey-step:hover .journey-icon {
  transform: scale(1.08);
  box-shadow: var(--shadow-blue);
}

.journey-content {
  flex: 1;
  padding-top: 4px;
}

.journey-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-blue);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.journey-text {
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--color-text);
}
.journey-text em {
  color: var(--color-text-secondary);
  font-style: italic;
}
.journey-text strong {
  font-weight: 700;
  color: var(--color-text);
}

.journey-result {
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
}
.journey-result-bad {
  background: rgba(255,59,48,0.08);
  color: var(--color-red);
  border: 1px solid rgba(255,59,48,0.15);
}
.journey-result-good {
  background: rgba(52,199,89,0.08);
  color: var(--color-green);
  border: 1px solid rgba(52,199,89,0.15);
}

/* ── Comparison Cards (Before/After) ──────────────────────── */
.comparison-cards {
  margin-bottom: var(--space-2xl);
}

.comparison-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 2px solid rgba(0,0,0,0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.comparison-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.comparison-card-bad { border-color: rgba(255,59,48,0.2); }
.comparison-card-good { border-color: rgba(52,199,89,0.2); }

.comparison-card-header {
  padding: var(--space-lg) var(--space-xl);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
}
.comparison-card-bad .comparison-card-header {
  background: linear-gradient(135deg, rgba(255,59,48,0.08) 0%, rgba(255,149,0,0.08) 100%);
  color: var(--color-red);
}
.comparison-card-good .comparison-card-header {
  background: linear-gradient(135deg, rgba(52,199,89,0.08) 0%, rgba(0,122,255,0.08) 100%);
  color: var(--color-green);
}

.comparison-card-body {
  padding: var(--space-xl);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.comparison-item:last-child {
  border-bottom: none;
}

.comparison-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.comparison-text {
  font-size: 0.975rem;
  line-height: 1.5;
  color: var(--color-text);
}
.comparison-text strong {
  font-weight: 700;
}

.comparison-card-footer {
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border-top: 2px solid rgba(0,0,0,0.06);
}
.comparison-card-bad .comparison-card-footer {
  background: rgba(255,59,48,0.05);
  color: var(--color-red);
}
.comparison-card-good .comparison-card-footer {
  background: rgba(52,199,89,0.05);
  color: var(--color-green);
}

/* ── Video Container ──────────────────────────────────────── */
.video-container {
  margin-bottom: var(--space-2xl);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* ── Animated Presentation ────────────────────────────────── */
#animated-presentation {
  background: linear-gradient(160deg, rgba(255,245,140,0.95) 0%, rgba(255,200,80,0.95) 35%, rgba(255,165,50,0.95) 65%, rgba(150,210,100,0.95) 100%);
  font-family: var(--font-text);
}

.anim-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.anim-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slide-content {
  text-align: center;
  color: var(--color-text);
  max-width: 680px;
  animation: slideIn 0.6s ease;
}

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

.slide-number {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.slide-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  color: var(--color-text);
  font-family: var(--font-display);
}

.slide-text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  color: rgba(29, 29, 31, 0.85);
}

.slide-highlight {
  background: rgba(255, 255, 255, 0.65);
  border: 2px solid rgba(255, 59, 48, 0.4);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-lg);
  backdrop-filter: blur(10px);
}

/* Timeline in slides */
.slide-timeline {
  text-align: left;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.timeline-item {
  margin-bottom: var(--space-sm);
}

.timeline-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.timeline-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
}

.timeline-text em {
  color: var(--color-text-secondary);
  font-style: italic;
}

.timeline-arrow {
  text-align: center;
  font-size: 1.5rem;
  color: var(--color-blue);
  margin: 8px 0;
}

.timeline-result {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 700;
  margin-top: var(--space-sm);
}

.timeline-result.bad {
  background: rgba(255, 59, 48, 0.12);
  border: 2px solid rgba(255, 59, 48, 0.3);
  color: var(--color-red);
}

.timeline-result.good {
  background: rgba(52, 199, 89, 0.12);
  border: 2px solid rgba(52, 199, 89, 0.3);
  color: var(--color-green);
}

/* Comparison Math */
.comparison-math {
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.math-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  font-size: 1.1rem;
}

.math-label {
  color: var(--color-text-secondary);
}

.math-value {
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.2rem;
}

.math-row.bad .math-value {
  color: var(--color-red);
}

.math-row.good .math-value {
  color: var(--color-green);
}

.math-divider {
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  margin: var(--space-md) 0;
}

.math-result {
  text-align: center;
  padding-top: var(--space-md);
  color: var(--color-text);
}

/* CTA Slide */
.slide-cta {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.anim-btn {
  display: inline-block;
  background: var(--color-blue);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
}

.anim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 122, 255, 0.4);
  background: var(--color-blue-dark);
}

.slide-subtext {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* Progress Bar */
.presentation-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.progress-fill {
  height: 100%;
  background: var(--color-blue);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(0, 122, 255, 0.5);
}

/* Controls */
.presentation-controls {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
  z-index: 11;
}

.control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 0, 0, 0.08);
  color: var(--color-text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.control-btn:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0, 122, 255, 0.25);
  border-color: var(--color-blue);
}

/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 11;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.indicator.active {
  background: var(--color-blue);
  width: 24px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 122, 255, 0.4);
}

.indicator:hover {
  background: rgba(0, 122, 255, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .anim-slide {
    padding: var(--space-lg);
  }
  
  .slide-number {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
  }
  
  .slide-title {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
  }
  
  .slide-text {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
  }
  
  .slide-highlight {
    padding: var(--space-sm) var(--space-md);
    font-size: 1rem;
  }
  
  .slide-timeline {
    padding: var(--space-md);
  }
  
  .timeline-time {
    font-size: 0.75rem;
  }
  
  .timeline-text {
    font-size: 0.9rem;
  }
  
  .comparison-math {
    padding: var(--space-md);
  }
  
  .math-row {
    font-size: 0.95rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .math-value {
    font-size: 1.1rem;
  }
  
  .math-result strong {
    font-size: 1.4rem !important;
  }
  
  .anim-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .slide-subtext {
    font-size: 0.8rem;
  }
  
  .presentation-controls {
    bottom: 12px;
    left: 12px;
  }
  
  .control-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .slide-indicators {
    bottom: 12px;
    right: 12px;
  }
}

/* ── Testimonials \u2014 Liquid Glass Premium ───────────────── */
.testimonial-card {
  background: white; 
  border-radius: var(--radius-xl); 
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card); 
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-blue);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.testimonial-card:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,87,255,0.10);
}
.testimonial-card:hover::after { opacity: 1; }
.stars { 
  color: var(--color-gold); 
  font-size: 1.1rem; 
  margin-bottom: var(--space-md); 
  letter-spacing: 4px;
}
.testimonial-text { 
  font-size: 1rem; 
  line-height: 1.80; 
  color: var(--color-text); 
  margin-bottom: var(--space-md); 
  font-style: italic;
  font-weight: 400;
}
.testimonial-result { 
  display: inline-block; 
  padding: 6px 16px; 
  background: var(--color-green-pale);
  color: var(--color-emerald); 
  border-radius: var(--radius-full); 
  font-size: var(--text-sm); 
  font-weight: 700; 
  margin-bottom: var(--space-md);
  border: 1px solid rgba(0,196,122,0.25);
}
.testimonial-author { margin-top: var(--space-md); display: flex; align-items: center; gap: 12px; }
.author-avatar { 
  width: 44px; height: 44px; border-radius: 50%; 
  background: var(--gradient-blue); 
  display: flex; align-items: center; justify-content: center; 
  color: white; font-weight: 700; font-size: 1rem; flex-shrink: 0;
  box-shadow: var(--shadow-blue);
}
.author-name  { font-weight: 700; font-size: 0.95rem; color: var(--color-text); }
.author-title { font-size: var(--text-sm); color: var(--color-text-secondary); margin-top: 2px; }

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-card {
  background: white; border-radius: var(--radius-xl); padding: var(--space-2xl);
  box-shadow: var(--shadow-lg); border: 2px solid rgba(0,0,0,0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative; overflow: hidden;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pricing-card.featured { border-color: var(--color-blue); box-shadow: 0 12px 40px rgba(0,122,255,0.16); }
.pricing-badge { position: absolute; top: 20px; right: 20px; background: var(--color-blue); color: white; padding: 5px 14px; border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.pricing-name { font-size: 1.1rem; font-weight: 700; color: var(--color-text-secondary); margin-bottom: var(--space-sm); }
.pricing-price { font-size: clamp(2.6rem,5vw,3.6rem); font-weight: 800; letter-spacing: -0.03em; color: var(--color-text); line-height: 1; }
.pricing-price sup { font-size: 1.4rem; vertical-align: super; font-weight: 700; }
.pricing-price sub { font-size: 0.95rem; color: var(--color-text-secondary); font-weight: 400; }
.pricing-desc { margin: var(--space-sm) 0 var(--space-lg); color: var(--color-text-secondary); font-size: 0.975rem; line-height: 1.6; }
.pricing-features { margin: 0 0 var(--space-xl); display: flex; flex-direction: column; gap: 12px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.975rem; }
.pricing-feature .feat-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(52,199,89,0.15); color: var(--color-green); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; margin-top: 2px; font-weight: 700; }

/* ── Forms \u2014 Liquid Glass Inputs ────────────────────────── */
.form-group { margin-bottom: var(--space-lg); }
.form-grid  { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-lg); }
.form-label { 
  display: block; 
  font-weight: 700; 
  font-size: 1rem; 
  margin-bottom: 12px; 
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.form-label .req { color: var(--color-red); margin-left: 4px; }
.form-input, .form-select, .form-textarea {
  width: 100%; 
  padding: 14px 18px; 
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-lg); 
  font-size: 1rem; 
  color: var(--color-text); 
  background: white;
  transition: all var(--transition-base);
  outline: none; 
  -webkit-appearance: none;
  box-shadow: var(--shadow-sm);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { 
  border-color: var(--color-blue); 
  box-shadow: 0 0 0 4px rgba(0,87,255,0.10);
  background: white;
  transform: translateY(-1px);
}
.form-input::placeholder, .form-textarea::placeholder { 
  color: var(--color-text-muted); 
  font-weight: 400;
}
.form-textarea { resize: vertical; min-height: 150px; line-height: 1.7; }
.form-select { 
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23475569' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); 
  background-repeat: no-repeat; 
  background-position: right 20px center; 
  padding-right: 52px; 
  cursor: pointer; 
}

/* ── Assessment ───────────────────────────────────────────── */
.assessment-step { display: none; }
.assessment-step.active { display: block; animation: fadeInUp 0.35s ease; }
.progress-bar-wrap { background: rgba(0,0,0,0.08); border-radius: var(--radius-full); height: 6px; margin-bottom: var(--space-2xl); overflow: hidden; }
.progress-bar-fill { height: 100%; background: var(--gradient-blue); border-radius: var(--radius-full); transition: width 0.4s ease; }
.question-number { font-size: var(--text-sm); color: var(--color-blue); font-weight: 600; margin-bottom: 6px; }
.question-label  { font-size: 1.3rem; font-weight: 700; margin-bottom: var(--space-md); line-height: 1.4; }
.option-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--space-sm); margin-bottom: var(--space-xl); }
.option-btn { padding: 14px 18px; border: 2px solid rgba(0,0,0,0.1); border-radius: var(--radius-md); font-size: 0.95rem; font-weight: 500; background: white; color: var(--color-text); cursor: pointer; transition: all var(--transition-fast); text-align: left; line-height: 1.4; }
.option-btn:hover  { border-color: var(--color-blue); background: rgba(0,122,255,0.04); }
.option-btn.selected { border-color: var(--color-blue); background: rgba(0,122,255,0.08); color: var(--color-blue); font-weight: 600; }

/* ── Founder Image ────────────────────────────────────────── */
.founder-image {
  width: 280px; height: 280px; border-radius: 50%; object-fit: cover;
  border: 4px solid #FFFFFF;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 8px rgba(255,255,255,0.5);
  animation: floatY 8s ease-in-out infinite;
  transition: box-shadow var(--transition-base);
}
.founder-image:hover { box-shadow: 0 12px 48px rgba(0,122,255,0.22), 0 0 0 8px rgba(0,122,255,0.08); }
.founder-image-wrap { display: flex; justify-content: center; align-items: flex-start; padding-top: var(--space-lg); }

/* ── Score / Results ──────────────────────────────────────── */
.score-ring-container { position: relative; width: 200px; height: 200px; margin: 0 auto var(--space-lg); }
.score-ring-container svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring-inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-number { font-size: 3.2rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.score-sub    { font-size: var(--text-sm); color: var(--color-text-secondary); }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-section { background: var(--gradient-hero-dark); border-radius: var(--radius-2xl); padding: var(--space-3xl) var(--space-2xl); text-align: center; }
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: var(--space-sm); color: white; }
.cta-section .cta-desc { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 560px; margin: 0 auto var(--space-xl); line-height: 1.7; }

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero { padding-top: calc(64px + var(--space-3xl)); padding-bottom: var(--space-3xl); text-align: center; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: var(--gradient-hero-dark); z-index: 0; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: var(--gradient-mesh-dark); opacity: 0.50; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: var(--space-md); color: white; }
.page-hero p  { max-width: 600px; margin: 0 auto var(--space-xl); color: rgba(255,255,255,0.70); font-size: 1.15rem; line-height: 1.7; }

/* ── Footer ───────────────────────────────────────────────── */
footer { background: var(--color-bg-darker); color: rgba(255,255,255,0.60); padding: var(--space-3xl) 0 var(--space-xl); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-2xl); margin-bottom: var(--space-2xl); }
.footer-logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; letter-spacing: -0.03em; color: white; display: block; margin-bottom: var(--space-sm); }
.footer-logo span { color: var(--color-blue); }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 260px; }
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 600; margin-bottom: var(--space-md); letter-spacing: 0.02em; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; transition: color var(--transition-fast); }
.footer-col a:hover { color: white; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: var(--space-lg); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: var(--text-sm); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition-fast); }
.footer-bottom a:hover { color: white; }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(0,122,255,0.15); color: var(--color-blue); border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 600; margin-top: var(--space-sm); }

/* ── Animations ───────────────────────────────────────────── */
/* ── Focus styles (accessibility) ────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible { outline: 2px solid var(--color-blue); outline-offset: 3px; }

/* ── Animations \u2014 Luxury Smooth Effects ────────────────── */
@keyframes fadeInUp { 
  from { opacity: 0; transform: translateY(32px); filter: blur(4px); } 
  to { opacity: 1; transform: translateY(0); filter: blur(0); } 
}
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatY   { 
  0%,100% { transform: translateY(0); } 
  50% { transform: translateY(-18px); } 
}
@keyframes pulse    { 
  0%,100% { opacity:1; transform:scale(1); } 
  50% { opacity:0.7; transform:scale(0.85); } 
}
@keyframes orbFloat1 { 
  0%,100% { transform:translate(0,0) scale(1) rotate(0deg); } 
  33% { transform:translate(40px,-30px) scale(1.08) rotate(10deg); } 
  66% { transform:translate(-30px,20px) scale(0.95) rotate(-10deg); } 
}
@keyframes orbFloat2 { 
  0%,100% { transform:translate(0,0) scale(1) rotate(0deg); } 
  33% { transform:translate(-35px,30px) scale(1.06) rotate(-8deg); } 
  66% { transform:translate(25px,-20px) scale(0.96) rotate(8deg); } 
}
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
  50% { box-shadow: 0 0 40px rgba(102, 126, 234, 0.6); }
}

.animate-fade-up { animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both; }
.animate-float   { animation: floatY 8s ease-in-out infinite; }
.animate-glow    { animation: glow 3s ease-in-out infinite; }

/* Scroll Reveal - Luxury Version */
.reveal { 
  opacity: 0; 
  transform: translateY(40px); 
  filter: blur(2px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              filter 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
}
.reveal.visible { 
  opacity: 1; 
  transform: translateY(0);
  filter: blur(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ── Utilities ────────────────────────────────────────────── */
.mt-sm { margin-top: var(--space-sm); } .mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); } .mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); } .mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); } .mb-xl { margin-bottom: var(--space-xl); }
.hidden { display: none !important; }
.divider { border: none; border-top: 1px solid rgba(0,0,0,0.07); margin: var(--space-xl) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --space-3xl: 4rem; --space-2xl: 3rem; --space-xl: 2rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); padding: var(--space-lg); gap: var(--space-md); box-shadow: 0 8px 30px rgba(0,0,0,0.1); z-index: 999; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-links.open a { font-size: 1.1rem; padding: 8px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-section .grid-3 { grid-template-columns: 1fr; gap: var(--space-xl); }
  .comparison-table th, .comparison-table td { padding: 12px 16px; font-size: 0.875rem; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
  .option-grid { grid-template-columns: 1fr; }
  .cta-section { padding: var(--space-2xl) var(--space-lg); border-radius: var(--radius-xl); }
  .founder-image { width: 200px; height: 200px; }
  .pricing-card { padding: var(--space-xl); }
  .stats-section { padding: var(--space-2xl) var(--space-lg); }
  
  /* Journey timeline mobile */
  .journey-step { gap: var(--space-sm); }
  .journey-step::before { left: 18px; }
  .journey-icon { width: 36px; height: 36px; font-size: 1.1rem; }
  .journey-header { padding: var(--space-md) var(--space-lg); font-size: 0.95rem; }
  .journey-timeline { padding: var(--space-lg); }
  .journey-time { font-size: 0.75rem; }
  .journey-text { font-size: 0.9rem; }
  .journey-result { padding: var(--space-sm) var(--space-md); font-size: 0.9rem; }
  
  /* Comparison cards mobile */
  .comparison-card-header { padding: var(--space-md) var(--space-lg); font-size: 0.95rem; }
  .comparison-card-body { padding: var(--space-lg); }
  .comparison-icon { font-size: 1.3rem; width: 32px; }
  .comparison-text { font-size: 0.9rem; }
  .comparison-card-footer { padding: var(--space-md) var(--space-lg); font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .container, .container-sm, .container-lg { padding: 0 var(--space-md); }
  .card { padding: var(--space-lg); }
  .hero-content { padding: var(--space-2xl) var(--space-md); }
}

/* ── Cookie Consent Banner ────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(29,29,31,0.97);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-md) var(--space-lg);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
#cookie-banner.visible {
  transform: translateY(0);
}
.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.cookie-text strong { color: white; }
.cookie-text a { color: var(--color-blue); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn-accept {
  padding: 10px 24px;
  background: var(--color-blue);
  color: white;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}
.cookie-btn-accept:hover { background: var(--color-blue-dark); transform: translateY(-1px); }
.cookie-btn-decline {
  padding: 10px 20px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.cookie-btn-decline:hover { color: white; border-color: rgba(255,255,255,0.5); }
@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* ── Sticky Mobile CTA Bar ───────────────────────────────── */
#sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(29,29,31,0.97);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 12px var(--space-md);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
#sticky-cta-bar.visible { transform: translateY(0); }
#sticky-cta-bar .sticky-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
#sticky-cta-bar .sticky-text {
  color: rgba(255,255,255,0.8); font-size: 0.82rem; line-height: 1.35;
  flex: 1; min-width: 0;
}
#sticky-cta-bar .sticky-text strong { color: white; }
#sticky-cta-bar .sticky-btn {
  display: inline-block;
  background: var(--color-blue);
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  padding: 10px 18px;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
#sticky-cta-bar .sticky-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.4); font-size: 1.2rem;
  line-height: 1; padding: 4px; flex-shrink: 0;
}
@media (min-width: 769px) { #sticky-cta-bar { display: none !important; } }
@media (max-width: 768px) { #sticky-cta-bar { display: block; } }

/* ── Print styles ─────────────────────────────────────────── */
@media print {
  .navbar, footer, .cta-section, .hero-actions { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  .card, .pricing-card, .testimonial-card { box-shadow: none; border: 1px solid #ddd; }
}
