/* Catalyst — Global Styles (Palette B: Carbon Teal + Amber Signal, NO PURPLE) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* PALETTE B - Dark Mode (default) */
  /* Background (60%) */
  --bg-primary: #0A0B10;
  --bg-deep: #070810;
  --bg-mid: #151827;
  --bg-surface: #151827;
  --bg-elevated: #151827;
  --bg-hover: #262B44;

  /* Text */
  --text-primary: #F3F6FF;
  --text-secondary: #A6B0D0;
  --text-muted: #8891B0;

  /* Border/Divider */
  --border: #262B44;
  --border-light: #262B44;

  /* PRIMARY ACCENT: Amber (CTA/Buttons/Headlines) */
  --accent: #D97706;
  --accent-light: #F59E0B;
  --accent-dark: #B45309;
  --accent-glow: rgba(217, 119, 6, 0.15);
  --accent-glow-strong: rgba(217, 119, 6, 0.25);
  --accent-glow-subtle: rgba(217, 119, 6, 0.06);

  /* SECONDARY ACCENT: Deep Teal (Secondary actions/highlights) */
  --accent2: #0F766E;
  --accent2-light: #14B8A6;
  --accent2-dark: #0D6660;
  --accent2-glow: rgba(15, 118, 110, 0.15);
  --accent2-glow-strong: rgba(15, 118, 110, 0.25);
  --accent2-glow-subtle: rgba(15, 118, 110, 0.06);

  /* Link/Glow Accent (ice blue - sparingly) */
  --link: #38BDF8;
  --link-light: #7DD3FC;

  /* Utility colors */
  --success: #10B981;
  --error: #EF4444;
  --warning: #F59E0B;

  /* Border variations */
  --border-glow: rgba(217, 119, 6, 0.15);

  /* Shadows */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / .3), 0 2px 4px -2px rgb(0 0 0 / .2);
  --shadow-lg: 0 10px 25px -3px rgb(0 0 0 / .4), 0 4px 6px -4px rgb(0 0 0 / .3);
  --shadow-xl: 0 20px 50px -12px rgb(0 0 0 / .5);
  --shadow-glow: 0 0 40px rgba(217, 119, 6, 0.08);
  --shadow-glow-strong: 0 0 60px rgba(217, 119, 6, 0.12);
  --shadow-accent2: 0 0 40px rgba(15, 118, 110, 0.08);

  --transition: cubic-bezier(.23,1,.32,1);
  --transition-fast: cubic-bezier(.4,0,.2,1);
}


html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text-secondary); line-height: 1.6; background: var(--bg-primary); overflow-x: hidden; }

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

/* Typography */
h1, h2, h3, h4, h5, h6 { color: var(--text-primary); line-height: 1.15; font-weight: 700; }
h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.75rem, 6vw, 4.5rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
p { max-width: 65ch; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-light); }

/* Gradient text - Teal to Amber */
.gradient-text { 
  background: linear-gradient(135deg, var(--accent), var(--accent-light)); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text; 
}

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }
.section-alt { background: var(--bg-mid); }

/* ================================ */
/* Nav */
/* ================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 24px; transition: all .3s var(--transition-fast); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 900px; margin: 0 auto; padding: 8px 24px; background: rgba(10,11,16,0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 50px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.nav.scrolled .nav-inner { box-shadow: 0 4px 30px rgba(0,0,0,.4); }
.nav-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--text-primary); letter-spacing: -.02em; }
.nav-logo span { color: var(--accent); }
.nav-controls { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; margin-right: 16px; }
.nav-links a { color: var(--text-secondary); font-size: .875rem; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width .3s var(--transition); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--accent); color: white !important; padding: 10px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: .875rem; transition: all .25s var(--transition); }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow-strong); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger svg { width: 28px; height: 28px; stroke: var(--text-secondary); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(17,24,39,.98); backdrop-filter: blur(24px); border-bottom: 1px solid var(--border); padding: 24px; z-index: 99; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 0; color: var(--text-secondary); font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu .nav-cta { display: block; text-align: center; margin-top: 16px; border-bottom: none; color: white; background: var(--accent); border-radius: var(--radius-sm); padding: 14px; }

/* ================================ */
/* Buttons */
/* ================================ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 600; font-size: 1rem; cursor: pointer; border: none; transition: all .3s var(--transition); text-decoration: none; position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,.15) 0%, transparent 60%); opacity: 0; transition: opacity .4s; }
.btn:active::before { opacity: 1; }
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-light); color: white; transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow-strong), 0 0 0 1px var(--accent-glow); }
.btn-secondary { background: transparent; color: var(--accent2); border: 1px solid var(--accent2); }
.btn-secondary:hover { background: var(--accent2-glow); border-color: var(--accent2); color: var(--accent2-light); transform: translateY(-2px); }
.btn-accent2 { background: var(--accent2); color: white; }
.btn-accent2:hover { background: var(--accent2-light); transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent2-glow-strong); }
.btn-ghost { background: transparent; color: var(--text-secondary); padding: 10px 20px; }
.btn-ghost:hover { color: var(--accent); background: var(--accent-glow); }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ================================ */
/* Cards — Glassmorphism */
/* ================================ */
.card { background: var(--bg-surface); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, var(--accent-glow-subtle) 0%, transparent 70%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); border-color: rgba(217,119,6,0.3); }
.card:hover::before { opacity: 1; }

.card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: var(--accent-glow); }
.card-icon svg { width: 28px; height: 28px; stroke: var(--accent); stroke-width: 1.5; fill: none; }
.card-icon.accent2 { background: var(--accent2-glow); }
.card-icon.accent2 svg { stroke: var(--accent2); }

/* Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: stretch; }

/* Badge */
.badge { display: inline-block; padding: 6px 16px; border-radius: 100px; font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.badge-accent { background: var(--accent-glow); color: var(--accent); border: 1px solid var(--accent-glow-strong); }
.badge-accent2 { background: var(--accent2-glow); color: var(--accent2); border: 1px solid var(--accent2-glow-strong); }

/* ================================ */
/* Hero — Premium with floating orbs */
/* ================================ */
.hero { padding: 180px 0 120px; position: relative; overflow: hidden; min-height: 90vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; background: var(--bg-primary); z-index: 0; }

/* Animated floating orbs - FIXED GRADIENT: Teal → Amber */
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s ease-in-out infinite;
  will-change: transform;
}
.hero-bg .orb-1 {
  width: 600px; height: 600px;
  top: -20%; left: 30%;
  background: radial-gradient(circle, rgba(217,119,6,.12) 0%, transparent 70%);
  animation-delay: 0s;
}
.hero-bg .orb-2 {
  width: 500px; height: 500px;
  top: 10%; right: -10%;
  background: radial-gradient(circle, rgba(15,118,110,.1) 0%, transparent 70%);
  animation-delay: -7s;
  animation-duration: 25s;
}
.hero-bg .orb-3 {
  width: 400px; height: 400px;
  bottom: -10%; left: 10%;
  background: radial-gradient(circle, rgba(217,119,6,.08) 0%, transparent 70%);
  animation-delay: -14s;
  animation-duration: 22s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.02); }
}

/* Dot grid pattern */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--accent-glow) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

.hero .container { position: relative; z-index: 1; text-align: center; }
.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { background: linear-gradient(135deg, var(--accent), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p.subtitle { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-secondary); margin-bottom: 48px; max-width: 580px; line-height: 1.7; margin-left: auto; margin-right: auto; }
.hero-desc, .section-header p { max-width: 580px; margin-left: auto; margin-right: auto; }
.hero .badge { margin: 0 auto 28px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Homepage hero radial gradient warmth */
.hero-gradient-bg {
  background-image: radial-gradient(ellipse at 50% 0%, rgba(217,119,6,0.08) 0%, transparent 60%);
}

/* Typing animation */
.typing-wrapper {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: .9rem;
  color: var(--accent);
  padding: 16px 24px;
  background: rgba(21,24,39,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin: 32px auto 40px;
  max-width: 500px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.typing-wrapper .prompt { color: var(--text-muted); }
.typing-cursor { display: inline-block; width: 2px; height: 1.1em; background: var(--accent); animation: blink 1s step-end infinite; vertical-align: middle; margin-left: 2px; }
@keyframes blink { 50% { opacity: 0; } }

/* Stats strip */
.stats-strip {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 48px 0;
  margin: 0;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .accent-text { color: var(--accent); }
.stat-label {
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ================================ */
/* Section headers */
/* ================================ */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.section-header .badge { margin-bottom: 20px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-secondary); margin: 0 auto; font-size: 1.1rem; line-height: 1.7; max-width: 580px; }

/* ================================ */
/* Mid-page CTA banner */
/* ================================ */
.mid-cta {
  background: linear-gradient(135deg, var(--accent-glow-subtle) 0%, var(--accent2-glow-subtle) 100%);
  border: 1px solid var(--accent-glow);
  border-radius: var(--radius);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 80px 0;
}
.mid-cta p { color: var(--text-secondary); font-size: 1.05rem; margin: 0; max-width: none; }
.mid-cta strong { color: var(--text-primary); }

/* ================================ */
/* Steps */
/* ================================ */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 88px; margin-bottom: 56px; }
.step::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: white; font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 30px var(--accent-glow); }
.step::after { content: ''; position: absolute; left: 29px; top: 60px; bottom: -56px; width: 2px; background: linear-gradient(to bottom, var(--accent-glow-strong), transparent); }
.step:last-child::after { display: none; }
.step h3 { margin-bottom: 10px; font-size: 1.25rem; }
.step p { color: var(--text-secondary); line-height: 1.7; }

/* ================================ */
/* Tiers — Premium interactive cards */
/* ================================ */
.tier { border-radius: var(--radius); padding: 40px; border: 1px solid var(--border); background: var(--bg-surface); backdrop-filter: blur(8px); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.tier .btn { margin-top: auto; text-align: center; }
.tier::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--border-light), transparent); transition: all .4s; }
.tier:hover { border-color: rgba(217,119,6,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.3); transform: translateY(-4px); }
.tier:hover::before { background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.tier.featured { border-color: var(--accent-glow-strong); background: linear-gradient(180deg, var(--accent-glow-subtle) 0%, var(--bg-surface) 40%); }
.tier.featured::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent)); }
.tier-badge-float { position: absolute; top: -1px; right: 24px; background: var(--accent); color: white; padding: 6px 16px; border-radius: 0 0 8px 8px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.tier-price { font-family: 'Space Grotesk', sans-serif; font-size: 2.25rem; font-weight: 700; color: var(--text-primary); margin: 20px 0 8px; letter-spacing: -0.02em; }
.tier-price span { font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 400; color: var(--text-muted); }
.tier ul { list-style: none; margin: 24px 0; }
.tier li { padding: 10px 0; padding-left: 32px; position: relative; color: var(--text-secondary); font-size: .9rem; line-height: 1.5; }
.tier li::before { content: ''; position: absolute; left: 0; top: 14px; width: 18px; height: 18px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23D97706' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; }
.tier-time-saved { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; padding: 4px 12px; border-radius: 100px; background: var(--accent-glow); color: var(--accent); font-size: .75rem; font-weight: 600; }

/* ================================ */
/* Trust grid */
/* ================================ */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.trust-item { padding: 32px; text-align: center; border-radius: var(--radius); transition: all .3s; border: 1px solid transparent; }
.trust-item:hover { background: var(--accent-glow-subtle); border-color: rgba(217,119,6,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.trust-icon { width: 64px; height: 64px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: var(--accent-glow); }
.trust-icon svg { width: 32px; height: 32px; stroke: var(--accent); stroke-width: 1.5; fill: none; }
.trust-item h4 { font-size: 1rem; margin-bottom: 8px; }
.trust-item p { font-size: .875rem; color: var(--text-secondary); margin: 0 auto; max-width: 220px; }

/* ================================ */
/* FAQ */
/* ================================ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; font-weight: 600; color: var(--text-primary); background: none; border: none; width: 100%; text-align: left; font-size: 1rem; font-family: inherit; transition: color .2s; }
.faq-q:hover { color: var(--accent); }
.faq-q .icon { font-size: 1.25rem; transition: transform .3s var(--transition); color: var(--accent); flex-shrink: 0; margin-left: 16px; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.faq-q.open .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--transition-fast); }
.faq-a-inner { padding: 0 0 24px; color: var(--text-secondary); line-height: 1.8; }

/* ================================ */
/* Timeline */
/* ================================ */
.timeline { position: relative; padding-left: 48px; }
.timeline::before { content: ''; position: absolute; left: 15px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--accent), var(--accent2), transparent); }
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item::before { content: ''; position: absolute; left: -41px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg-primary); box-shadow: 0 0 0 2px var(--accent), 0 0 16px var(--accent-glow-strong); }
.timeline-item:nth-child(even)::before { background: var(--accent2); box-shadow: 0 0 0 2px var(--accent2), 0 0 16px var(--accent2-glow-strong); }
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { color: var(--text-secondary); font-size: .9rem; line-height: 1.6; }
.timeline-label { font-size: .75rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }

/* ================================ */
/* Before/After */
/* ================================ */
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.before, .after { padding: 36px; border-radius: var(--radius); }
.before { background: rgba(239,68,68,.04); border: 1px solid rgba(239,68,68,.15); }
.after { background: rgba(16,185,129,.04); border: 1px solid rgba(16,185,129,.15); }
.before h4 { color: var(--error); margin-bottom: 20px; font-size: 1.1rem; }
.after h4 { color: var(--success); margin-bottom: 20px; font-size: 1.1rem; }
.before li, .after li { padding: 8px 0; font-size: .9rem; color: var(--text-secondary); line-height: 1.5; }

/* ================================ */
/* Values */
/* ================================ */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.value-card { padding: 32px; border-left: 3px solid var(--accent); background: var(--bg-surface); border-radius: 0 var(--radius) var(--radius) 0; transition: all .3s var(--transition); }
.value-card:nth-child(even) { border-left-color: var(--accent2); }
.value-card:hover { background: var(--bg-elevated); transform: translateX(4px); box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 0 0 1px rgba(217,119,6,0.15); }

/* ================================ */
/* Contact form */
/* ================================ */
.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: .875rem; color: var(--text-primary); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: .95rem; transition: all .25s var(--transition-fast); background: var(--bg-elevated); color: var(--text-primary); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow), var(--shadow-glow); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23A6B0D0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group select option { background: var(--bg-surface); color: var(--text-primary); }

/* ================================ */
/* Footer */
/* ================================ */
.footer { background: var(--bg-deep); color: var(--text-secondary); padding: 80px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer h4 { color: var(--text-primary); font-size: .8rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .08em; }
.footer a { color: var(--text-secondary); font-size: .875rem; transition: color .2s; }
.footer a:hover { color: var(--accent); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; margin-top: 8px; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: var(--text-muted); }

/* ================================ */
/* CTA Section */
/* ================================ */
.cta-section { background: var(--bg-mid); position: relative; overflow: hidden; text-align: center; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, var(--accent-glow-subtle) 0%, var(--accent2-glow-subtle) 40%, transparent 70%); pointer-events: none; }

/* ================================ */
/* Testimonial placeholder cards */
/* ================================ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.testimonial-card .quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  opacity: .3;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}
.testimonial-card p { font-size: .95rem; line-height: 1.7; color: var(--text-secondary); font-style: italic; }
.testimonial-card .author { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-glow), var(--accent2-glow)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent); font-size: .8rem; }
.testimonial-card .author-info { font-size: .8rem; }
.testimonial-card .author-info strong { color: var(--text-primary); display: block; font-style: normal; }
.testimonial-card .author-info span { color: var(--text-muted); font-style: normal; }

/* ================================ */
/* Scroll Animations */
/* ================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-up { opacity: 0; animation: fadeUp .7s var(--transition) forwards; }
.fade-up-d1 { animation-delay: .1s; }
.fade-up-d2 { animation-delay: .2s; }
.fade-up-d3 { animation-delay: .3s; }
.fade-up-d4 { animation-delay: .4s; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible, .reveal.active { opacity: 1; transform: translateY(0); }
.reveal-d1, .reveal-delay-1 { transition-delay: .1s; }
.reveal-d2, .reveal-delay-2 { transition-delay: .2s; }
.reveal-d3, .reveal-delay-3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .35s; }
.reveal-d5 { transition-delay: .4s; }
.reveal-d6 { transition-delay: .45s; }
.reveal-d7 { transition-delay: .5s; }
.reveal-d8 { transition-delay: .55s; }

/* ================================ */
/* Focus & Accessibility */
/* ================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}

/* Skip to content link for keyboard users */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  z-index: 200;
  font-weight: 600;
  transition: top .2s;
}
.skip-link:focus {
  top: 16px;
}

/* Touch-friendly link/button sizing */
.nav-links a,
.mobile-menu a,
.footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer li {
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* Form validation feedback */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: var(--error);
}
.form-group input:invalid:not(:placeholder-shown):focus,
.form-group textarea:invalid:not(:placeholder-shown):focus {
  box-shadow: 0 0 0 3px rgba(239,68,68,.15), var(--shadow-glow);
}
.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: var(--success);
}
.form-group input:valid:not(:placeholder-shown):focus,
.form-group textarea:valid:not(:placeholder-shown):focus {
  box-shadow: 0 0 0 3px rgba(16,185,129,.15), var(--shadow-glow);
}

/* ================================ */
/* Enhanced Hover States */
/* ================================ */
.footer a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trust-item:hover .trust-icon {
  transform: scale(1.05);
  transition: transform .3s var(--transition);
}

.value-card:hover h3 {
  color: var(--accent);
  transition: color .2s;
}

.faq-q:hover {
  color: var(--accent);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: rgba(217,119,6,0.3);
}

.tier .btn:hover {
  transform: translateY(-2px);
}

/* Blog post article readability */
.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ================================ */
/* Responsive — Large Desktop (1920px+) */
/* ================================ */
@media (min-width: 1920px) {
  .container { max-width: 1200px; }
  .hero { padding: 200px 0 140px; }
  .section { padding: 140px 0; }
  body { font-size: 1rem; }
  .hero h1 { font-size: 4.5rem; }
  .hero p.subtitle { font-size: 1.3rem; }
  .stats-strip { gap: 80px; }
  .stat-number { font-size: 3.5rem; }
  .section-header p { font-size: 1.15rem; }
  .card { padding: 40px; }
  .tier { padding: 48px; }
  .footer-grid { gap: 64px; }
}

/* ================================ */
/* Responsive — Tablet (max-width: 1024px) */
/* ================================ */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: .8rem; }
  .comparison-table { font-size: .8rem; }
}

/* ================================ */
/* Responsive — Tablet Small (max-width: 768px) */
/* ================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-inner { border-radius: 16px; }
  .grid-2, .grid-3,   .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero { padding: 140px 0 80px; min-height: auto; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .before-after { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .comparison-table { font-size: .75rem; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }
  .stats-strip { flex-wrap: wrap; gap: 24px; }
  .stat-item { min-width: 100px; }
  .mid-cta { flex-direction: column; text-align: center; padding: 32px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 48px; }
  .section-header h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .container { padding: 0 20px; }
  .tier { padding: 28px; }
  .card { padding: 24px; }
  .step { padding-left: 72px; }
  .step::before { width: 48px; height: 48px; font-size: 1rem; }
  .step::after { left: 23px; top: 48px; }
  .timeline { padding-left: 36px; }
  .timeline::before { left: 11px; }
  .timeline-item::before { left: -29px; width: 10px; height: 10px; }
  .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 16px; font-size: 1rem; }
  .btn { padding: 14px 28px; font-size: 1rem; min-height: 48px; }
  .btn-lg { padding: 16px 32px; font-size: 1rem; }
  /* Fix #11: Mobile body text minimum 16px */
  body { font-size: 1rem; }
  p, .hero p.subtitle { font-size: 1rem; }
  /* Fix #12: Footer mobile tap targets */
  .footer a { padding: 8px 0; }
  .footer li { min-height: 44px; }
}

/* ================================ */
/* Responsive — Mobile (max-width: 480px) */
/* ================================ */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .hero p.subtitle { font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: 1rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.15rem; }
  body { font-size: .9375rem; line-height: 1.7; }
  .typing-wrapper { font-size: .8rem; padding: 12px 16px; }
  .stats-strip { gap: 24px; padding: 32px 0; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: .75rem; }
  .stat-item { min-width: 80px; }
  .mid-cta { padding: 24px 20px; border-radius: var(--radius-sm); }
  .mid-cta p { font-size: .95rem; }
  .card { padding: 20px; }
  .card-icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 16px; }
  .card-icon svg { width: 24px; height: 24px; }
  .tier { padding: 24px; }
  .tier-price { font-size: 1.75rem; }
  .tier li { font-size: .85rem; }
  .step { padding-left: 60px; margin-bottom: 40px; }
  .step::before { width: 40px; height: 40px; font-size: .9rem; }
  .step::after { left: 19px; top: 40px; bottom: -40px; }
  .btn { width: 100%; justify-content: center; padding: 14px 24px; font-size: .95rem; }
  .btn-lg { padding: 16px 28px; font-size: 1rem; }
  .btn-sm { padding: 12px 20px; font-size: .875rem; }
  .nav { padding: 8px 12px; }
  .nav-inner { padding: 8px 16px; }
  .nav-logo { font-size: 1.25rem; }
  .mobile-menu { padding: 16px; top: 60px; }
  .mobile-menu a { padding: 14px 0; font-size: 1rem; min-height: 48px; }
  .testimonial-card { padding: 24px; }
  .testimonial-card p { font-size: .9rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-item { padding: 20px 16px; }
  .trust-item p { font-size: .8rem; }
  .trust-icon { width: 48px; height: 48px; border-radius: 12px; }
  .trust-icon svg { width: 24px; height: 24px; }
  .comparison-table th, .comparison-table td { padding: 8px 6px; font-size: .7rem; }
  .faq-q { font-size: .9rem; padding: 18px 0; }
  .faq-a-inner { font-size: .9rem; }
  .badge { font-size: .7rem; padding: 5px 12px; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .value-card { padding: 20px; }
  .before-after { gap: 16px; }
  .before, .after { padding: 24px; }
  .footer { padding: 48px 0 24px; }
  .footer-brand p { font-size: .8rem; }
  .footer h4 { margin-bottom: 12px; }

  /* Blog card mobile */
  .blog-card-content { padding: 20px; }
  .blog-card-title { font-size: 1.2rem; }
  .blog-card-image { height: 160px; }

  /* Blog article mobile */
  .article-header { padding: 120px 0 40px; }
  .article-title { font-size: 1.5rem !important; }
  .article-subtitle { font-size: 1rem !important; }
  .article-content { padding: 32px 0; font-size: .95rem; }
  .article-content h2 { font-size: 1.35rem; margin-top: 36px; }
  .article-content h3 { font-size: 1.15rem; }
  .callout { padding: 16px 20px; margin: 24px 0; }
  .article-cta { padding: 28px 20px; margin: 40px 0; }
  .article-cta h3 { font-size: 1.2rem; }
}
/* ================================ */
/* Blog Article Styles */
/* ================================ */
.article-header {
  padding: 180px 0 80px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: .875rem;
  color: var(--text-muted);
}
.article-category {
  background: var(--accent-glow);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .7rem;
}
.article-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.article-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.article-content h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  margin: 48px 0 20px;
  font-weight: 600;
}
.article-content h3 {
  color: var(--text-primary);
  font-size: 1.35rem;
  margin: 36px 0 16px;
  font-weight: 600;
}
.article-content p {
  margin-bottom: 24px;
}
.article-content ul, .article-content ol {
  margin: 24px 0;
  padding-left: 24px;
}
.article-content li {
  margin-bottom: 12px;
}
.article-content strong {
  color: var(--text-primary);
  font-weight: 600;
}
.article-content em {
  color: var(--accent);
  font-style: normal;
}
.callout {
  background: var(--bg-surface);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout p:last-child { margin-bottom: 0; }
.article-cta {
  background: linear-gradient(135deg, var(--accent-glow-subtle), var(--accent2-glow-subtle));
  border: 1px solid var(--accent-glow);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 60px 0;
}
.article-cta h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}
.article-cta p {
  margin: 0 0 24px;
  color: var(--text-secondary);
}

/* ================================ */
/* Blog Index Styles */
/* ================================ */
.blog-hero { padding: 180px 0 100px; text-align: center; }
.blog-hero h1 { margin-bottom: 20px; }
.blog-hero p { color: var(--text-secondary); font-size: 1.15rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

.blog-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); 
  gap: 32px; 
  margin-top: 64px;
}

.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .4s var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-strong);
  border-color: var(--accent-glow);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--accent-glow-subtle), var(--accent2-glow-subtle));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--accent-glow) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: .3;
}

.blog-card-image-icon {
  width: 64px;
  height: 64px;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  position: relative;
  z-index: 1;
}

.blog-card-content {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .8rem;
  color: var(--text-muted);
}

.blog-card-category {
  background: var(--accent-glow);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .7rem;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-date svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

.blog-card-title {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.3;
  font-weight: 600;
}

.blog-card-excerpt {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  font-size: .95rem;
}

.blog-card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s;
  text-decoration: none;
}

.blog-card:hover .blog-card-link {
  gap: 10px;
}

.blog-card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

/* ================================ */
/* Reduced Motion */
/* ================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
  .orb, .orb-glow { animation: none !important; }
  .typing-text { animation: none !important; }
}
