/* =============================================
   Veigdab Advisory — Stripe-inspired Light 2026
   ============================================= */

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

:root {
  /* Stripe-style palette */
  --navy:        #0a2540;
  --body:        #425a7a;
  --muted:       #697386;
  --accent:      #635bff;
  --accent-dark: #533afd;
  --accent-light:#a49cff;
  --surface:     #f6f9fc;
  --white:       #ffffff;
  --border:      #e5edf5;
  --green:       #16a34a;
  --green-bg:    #f0fdf4;
  --red:         #df1b41;
  --red-bg:      #fef2f2;

  /* Fonts */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;

  /* Stripe shadows — blue-tinted */
  --shadow:    0 2px 4px rgba(50,50,93,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 13px 27px -5px rgba(50,50,93,.12), 0 8px 16px -8px rgba(0,0,0,.08);
  --shadow-lg: 0 30px 60px -12px rgba(50,50,93,.15), 0 18px 36px -18px rgba(0,0,0,.08);
  --shadow-xl: 0 50px 100px -20px rgba(50,50,93,.18), 0 30px 60px -30px rgba(0,0,0,.12);

  --radius: 8px;
  --radius-pill: 50px;
  --ease: cubic-bezier(.215,.61,.355,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-display: swap;
}
/* Reserve space to prevent CLS from font swap */
h1, h2, h3, h4, .hero-headline, .stat-number, .service-number, .step-number {
  font-synthesis: none;
}

a { color: inherit; text-decoration: none; }

/* Focus styles for keyboard users */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible { box-shadow: 0 0 0 3px rgba(99,91,255,.25); outline: none; }
.form-group input:focus-visible, .form-group select:focus-visible,
.form-group textarea:focus-visible { outline: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* Hide old artifacts */
.bg-flow, .abstract-shapes, .hero-grid-pattern, .hero-gradient-bg,
.section-decor, .cta-abstract { display: none !important; }

/* ===== RAINBOW ACCENT BAR (Stripe signature) ===== */
body::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #635bff, #9966ff, #e67aff, #ff89dc, #ffa176, #ffb90f);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  border: none; cursor: pointer;
  transition: all 150ms var(--ease);
  white-space: nowrap; border-radius: var(--radius-pill);
  letter-spacing: .2px;
}
.btn-sm  { padding: 10px 20px; font-size: 14px; }
.btn-lg  { padding: 14px 28px; }
.btn-arrow { font-size: 1.1em; transition: transform 150ms var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--accent); color: var(--white);
  box-shadow: 0 1px 3px rgba(99,91,255,.3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 12px rgba(99,91,255,.3);
  transform: translateY(-1px);
}
.btn-outline {
  background: var(--white); color: var(--accent);
  border: 1.5px solid var(--border); box-shadow: var(--shadow);
}
.btn-outline:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.inline-meeting-link {
  color: var(--accent); font-weight: 600; text-decoration: underline;
  text-underline-offset: 3px; text-decoration-color: rgba(99,91,255,.3);
}
.inline-meeting-link:hover { text-decoration-color: var(--accent); }
.btn-white { background: var(--white); color: var(--accent); box-shadow: var(--shadow); }
.btn-white:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 4px; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: all 250ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}
.header-inner { display: flex; align-items: center; height: 68px; gap: 40px; }
.logo { display: flex; align-items: center; font-weight: 700; font-size: 1.05rem; color: var(--navy); flex-shrink: 0; letter-spacing: -.02em; }
.logo-accent { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.nav-link { font-size: 15px; font-weight: 500; color: var(--muted); transition: color 150ms var(--ease); letter-spacing: .2px; }
.nav-link:hover, .nav-link.active { color: var(--navy); }
.header-actions { flex-shrink: 0; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.mobile-toggle span { display: block; width: 20px; height: 1.5px; background: var(--navy); border-radius: 2px; transition: all 250ms var(--ease); }
.mobile-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; padding: 140px 0 96px;
  overflow: hidden; text-align: center;
  background: var(--white);
}
/* Hero animated abstract blobs */
.hero::before, .hero::after { display: none; }
.hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px);
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: rgba(99,91,255,.25);
  top: -15%; right: -8%;
  animation: blobMove1 18s ease-in-out infinite;
}
.hero-blob-2 {
  width: 500px; height: 500px;
  background: rgba(153,102,255,.20);
  bottom: -20%; left: -5%;
  animation: blobMove2 22s ease-in-out infinite;
}
.hero-blob-3 {
  width: 350px; height: 350px;
  background: rgba(255,161,118,.15);
  top: 10%; left: 15%;
  animation: blobMove3 15s ease-in-out infinite;
}
@keyframes blobMove1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-60px, 40px) scale(1.1); }
  66%  { transform: translate(30px, -20px) scale(.95); }
}
@keyframes blobMove2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(50px, -30px) scale(1.08); }
  66%  { transform: translate(-40px, 20px) scale(.92); }
}
@keyframes blobMove3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, 30px) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-blob { animation: none; }
}

.hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -.03em; margin-bottom: 24px;
}
.hero-headline-bold { color: var(--navy); }
.hero-headline-light { color: var(--body); }
.hero-sub {
  font-size: 18px; line-height: 1.7; color: var(--body);
  max-width: 620px; margin: 0 auto 40px;
}
.hero-cta-row { margin-bottom: 16px; }
.hero-supporting {
  font-size: 14px; color: var(--accent); margin-bottom: 48px; font-weight: 600;
  display: inline-block; padding: 8px 20px;
  background: rgba(99,91,255,.06); border: 1px solid rgba(99,91,255,.1);
  border-radius: var(--radius-pill);
}
.hero-pillars { display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap; }
.pillar { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--muted); padding: 0 20px; }
.pillar-icon { color: var(--accent); flex-shrink: 0; }
.pillar-sep { width: 1px; height: 14px; background: var(--border); flex-shrink: 0; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; position: relative; }
.section-gray { background: var(--surface); }
.section-tinted { background: linear-gradient(180deg, rgba(99,91,255,.05) 0%, rgba(99,91,255,.02) 100%); }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 72px; }
.section-header-left { text-align: left; max-width: 100%; }
.section-header-left .section-intro { max-width: 520px; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-label-light { color: var(--accent-light); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: 16px;
}
/* All section titles use the same scale */
.section-intro { font-size: 17px; color: var(--body); line-height: 1.7; }

/* ===== CARDS ===== */
.problem-card, .step-card, .buy-card {
  background: var(--white); border: none;
  border-radius: 16px; box-shadow: var(--shadow-md);
  transition: all 300ms var(--ease); position: relative; overflow: hidden;
}
.problem-card:hover, .step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* ===== PROBLEMS ===== */
#problems .container {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 64px; align-items: start;
}
#problems .section-header { margin-bottom: 0; text-align: left; max-width: 100%; }
#problems .section-title { font-size: clamp(1.6rem, 3vw, 2rem); }
#problems .section-header { position: sticky; top: 100px; }
.problems-grid { display: flex; flex-direction: column; gap: 12px; }
.problem-card { padding: 28px 28px; }
.problem-number { font-size: 12px; font-weight: 700; margin-bottom: 14px; letter-spacing: .1em; color: var(--accent); }
.problem-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.problem-number { font-size: 12px; }
.problem-desc { font-size: 14px; color: var(--body); line-height: 1.65; }

/* ===== SERVICES (bento) ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  display: flex; flex-direction: column;
  background: var(--white); border: none;
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 500ms cubic-bezier(.7,0,0,1);
}
/* All cards equal width */
.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
  border-color: rgba(99,91,255,.2);
}
.service-body { padding: 32px 28px; display: flex; flex-direction: column; flex: 1; }
.service-number {
  font-size: 48px; font-weight: 800; line-height: 1;
  color: rgba(99,91,255,.65); letter-spacing: -.04em;
  margin-bottom: 12px;
}
.service-name { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.25; }
.service-desc { font-size: 15px; color: var(--body); margin-bottom: 24px; line-height: 1.7; }
.service-includes-title {
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.service-list { margin-bottom: 28px; flex: 1; }
.service-list li {
  font-size: 14px; color: var(--body);
  padding: 5px 0 5px 18px; position: relative; line-height: 1.6;
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); opacity: .6;
}
.service-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--accent);
  margin-top: auto; transition: gap 150ms var(--ease);
}
.service-cta:hover { gap: 12px; }
.service-cta-arrow { font-size: 1.1em; transition: transform 150ms var(--ease); }
.service-cta:hover .service-cta-arrow { transform: translateX(4px); }
.service-scope-note { font-size: 13px; color: var(--muted); margin-top: 12px; margin-bottom: 16px; font-style: italic; line-height: 1.5; }
.services-boundary {
  text-align: center; font-size: 14px; color: var(--muted);
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 560px; margin-left: auto; margin-right: auto;
}

/* ===== STEPS ===== */
.steps-row { display: flex; align-items: flex-start; justify-content: center; }
.step-card { flex: 1; max-width: 340px; text-align: left; padding: 32px 28px; }
.step-number {
  font-size: 48px; font-weight: 800; line-height: 1;
  letter-spacing: -.04em; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent), #9966ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--body); line-height: 1.65; }
.step-connector { display: flex; align-items: center; padding-top: 56px; color: var(--border); flex-shrink: 0; width: 48px; justify-content: center; }

/* ===== FIT LIST ===== */
.fit-grid { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; }
.fit-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; font-weight: 500; color: var(--navy);
  padding: 16px 0; border-bottom: 1px solid var(--border);
  background: transparent; border-left: none; border-right: none; border-top: none;
  box-shadow: none; transition: color 150ms var(--ease);
}
.fit-item:last-child { border-bottom: none; }
.fit-check {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--accent);
}

/* ===== BUY GRID ===== */
.buy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.buy-card { padding: 28px 24px; }
.buy-name { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.buy-desc { font-size: 14px; color: var(--body); margin-bottom: 24px; line-height: 1.65; }
.buy-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.buy-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.buy-col-best h4 { color: var(--green); }
.buy-col-not  h4 { color: var(--red); }
.buy-col ul { display: flex; flex-direction: column; gap: 6px; }
.buy-col li { font-size: 13px; color: var(--body); padding-left: 16px; position: relative; line-height: 1.5; }
.buy-col-best li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.buy-col-not li::before  { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--red); opacity: .6; }

/* ===== WHY GRID ===== */
.why-grid { max-width: 900px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
/* All items equal */
.why-item {
  background: var(--white); border: none;
  border-radius: 16px; padding: 28px 24px;
  box-shadow: var(--shadow-md); transition: all 300ms var(--ease);
  flex: 0 1 calc(33.333% - 8px);
}
.why-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.why-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(99,91,255,.15); color: var(--accent);
  margin-bottom: 14px;
}
.why-item p { font-size: 14px; color: var(--body); font-weight: 400; line-height: 1.65; }

/* ===== EXCLUSIONS ===== */
.exclusions-list { max-width: 680px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.exclusion-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--body);
  padding: 16px 20px; border-radius: 16px;
  background: var(--white); border: none;
  box-shadow: var(--shadow-md);
}
.exclusion-item:last-child { grid-column: auto; }
.exclusion-x {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--red-bg); color: var(--red); flex-shrink: 0;
}

/* ===== PROOF / STATS ===== */
.proof-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 820px; margin: 0 auto 56px;
}
.proof-stat {
  text-align: center; padding: 28px 16px;
  background: var(--white); border: none;
  border-radius: 16px; box-shadow: var(--shadow-md);
  transition: all 300ms var(--ease);
}
.proof-stat:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.stat-number {
  display: block;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1; margin-bottom: 16px;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--accent), #9966ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; line-height: 1.4; }
.proof-differentiators { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.proof-diff-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--navy); font-weight: 500; }
.proof-diff-item svg { flex-shrink: 0; color: var(--accent); margin-top: 3px; }

/* ===== CTA SECTION (dark navy — Stripe style) ===== */
.section-cta {
  background: var(--navy); position: relative; overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #635bff, #9966ff, #e67aff, #ff89dc, #ffa176, #ffb90f);
}
.section-cta::after { display: none; }
.cta-block { text-align: center; max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.cta-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: -.02em; line-height: 1.15; }
.cta-text { font-size: 17px; color: rgba(255,255,255,.72); margin-bottom: 16px; line-height: 1.7; }
.cta-urgency {
  display: inline-block; font-size: 13px; font-weight: 600;
  color: var(--accent-light); background: rgba(99,91,255,.12);
  padding: 6px 18px; border-radius: var(--radius-pill); margin-bottom: 36px;
  border: 1px solid rgba(99,91,255,.2);
}
.cta-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; margin-bottom: 48px; }
.cta-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; color: var(--accent-light); }
.cta-col ul { display: flex; flex-direction: column; gap: 8px; }
.cta-col li { font-size: 14px; color: rgba(255,255,255,.68); padding-left: 18px; position: relative; line-height: 1.6; }
.cta-col li::before { content: ''; position: absolute; left: 0; top: 9px; width: 4px; height: 4px; border-radius: 50%; background: var(--accent-light); }
.section-cta .section-label { color: var(--accent-light); }
.section-cta .btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 14px rgba(99,91,255,.35); }
.section-cta .btn-primary:hover { background: var(--accent-dark); box-shadow: 0 8px 24px rgba(99,91,255,.4); }
.section-cta .btn-outline { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.4); background: transparent; }
.section-cta .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: var(--white); }

/* ===== LEAD FORM ===== */
.lead-form {
  max-width: 680px; margin: 0 auto;
  background: var(--white); border: none;
  border-radius: 16px; padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  transition: all 300ms var(--ease);
}
.lead-form:focus-within { border-color: rgba(99,91,255,.3); box-shadow: var(--shadow-lg); }
.form-row { display: grid; gap: 20px; margin-bottom: 20px; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-group-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font); font-size: 15px; color: var(--navy);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 11px 14px; background: var(--white);
  transition: all 150ms var(--ease); outline: none;
  box-shadow: 0 1px 2px rgba(50,50,93,.06);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99,91,255,.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); opacity: .6; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23697386' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-group textarea { resize: vertical; }
.form-group input.error, .form-group select.error, .form-group textarea.error {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(223,27,65,.08);
}
.form-actions { text-align: center; margin-top: 24px; }
.form-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 12px; }
.form-success { max-width: 680px; margin: 0 auto; }
.form-success-inner {
  text-align: center; padding: 48px 32px;
  background: var(--green-bg); border: 1px solid rgba(22,163,74,.15);
  border-radius: var(--radius);
}
.form-success-icon { color: var(--green); margin-bottom: 16px; }
.form-success-inner h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-success-inner p { font-size: 15px; color: var(--body); }

/* ===== LEGAL ===== */
.legal-page { padding: 140px 0 80px; min-height: 70vh; }
.legal-container { max-width: 740px; }
.legal-container h1 { font-size: 2.2rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.legal-updated { font-size: 14px; color: var(--muted); margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal-container section { margin-bottom: 36px; }
.legal-container h2 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.legal-container h3 { font-size: 1rem; font-weight: 600; color: var(--body); margin-top: 16px; margin-bottom: 8px; }
.legal-container p { font-size: 15px; line-height: 1.75; color: var(--body); margin-bottom: 12px; }
.legal-container ul { list-style: disc; padding-left: 24px; margin-bottom: 12px; }
.legal-container li { font-size: 15px; line-height: 1.75; color: var(--body); margin-bottom: 4px; }
.legal-container a:not(.btn) { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(99,91,255,.3); }
.legal-container a:not(.btn):hover { text-decoration-color: var(--accent); }

/* ===== TESTIMONIALS ===== */
.section-testimonials { padding: 40px 0; background: #f8f6ff; border-top: 1px solid rgba(99,91,255,.08); border-bottom: 1px solid rgba(99,91,255,.08); }
.testimonials-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border-radius: 12px; padding: 28px 24px; border: 1px solid rgba(99,91,255,.1); transition: box-shadow .2s; }
.testimonial-card:hover { box-shadow: 0 4px 20px rgba(99,91,255,.08); }
.testimonial-quote { font-size: .95rem; line-height: 1.65; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #8b5cf6); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .8rem; flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: .85rem; color: var(--heading); }
.testimonial-company { font-size: .78rem; color: var(--muted); }

@media (max-width: 900px) { .testimonials-strip { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* ===== FORM OPTIONAL LABEL ===== */
.form-optional { font-weight: 400; font-size: .8rem; color: var(--muted); }

/* ===== ABOUT / TRUST ===== */
.about-block { display: flex; gap: 48px; align-items: flex-start; }
.about-badge { flex-shrink: 0; }
.about-avatar { width: 80px; height: 80px; border-radius: 20px; background: linear-gradient(135deg, var(--accent), #8b5cf6); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.5rem; letter-spacing: .02em; }
.about-content { flex: 1; }
.about-title { margin-bottom: 20px; }
.about-text { font-size: 1.05rem; line-height: 1.75; color: var(--text); margin-bottom: 16px; }
.about-credentials { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-credential { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--text); line-height: 1.5; }
.about-credential svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }

@media (max-width: 640px) {
  .about-block { flex-direction: column; gap: 24px; align-items: center; text-align: center; }
  .about-credentials { align-items: flex-start; text-align: left; }
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  display: flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; text-decoration: none;
  padding: 14px 24px; border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  box-shadow: 0 4px 24px rgba(99,91,255,.35);
  transition: transform .2s, box-shadow .2s;
  animation: floatCta .3s ease-out;
}
.floating-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 32px rgba(99,91,255,.45); }
.floating-cta-arrow { font-size: 1.1rem; }
@keyframes floatCta { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 640px) {
  .floating-cta { bottom: 16px; right: 16px; left: 16px; justify-content: center; padding: 16px 20px; font-size: .95rem; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(135deg, #0a2540 0%, #0d1f3c 40%, #1a1145 100%);
  color: rgba(255,255,255,.5);
  padding: 64px 0 40px; border-top: none;
}
.footer-inner { display: flex; flex-direction: column; gap: 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; }
.footer-brand { max-width: 360px; }
.footer-logo .logo-text { color: rgba(255,255,255,.85); }
.footer-logo .logo-accent { color: var(--accent-light); }
.footer-tagline { font-size: 14px; line-height: 1.65; margin-top: 14px; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; font-weight: 500; transition: color 150ms var(--ease); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; gap: 28px; font-size: 13px; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; }
.footer-bottom a { color: rgba(255,255,255,.55); transition: color 150ms var(--ease); }
.footer-bottom a:hover { color: var(--white); }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.footer-col a { font-size: 14px; font-weight: 400; transition: color 150ms var(--ease); }
.footer-col a:hover { color: var(--white); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
.cookie-banner-inner { max-width: 1100px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 20px; }
.cookie-banner-inner p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.55; margin: 0; flex: 1; }
.cookie-banner-inner p a { color: var(--accent-light); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner-actions .btn-outline {
  color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.4);
  background: transparent;
}
.cookie-banner-actions .btn-outline:hover {
  color: var(--white); border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.1);
}
@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; padding: 14px 20px; gap: 12px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .why-item { flex: 0 1 calc(50% - 6px); }
  #problems .container { grid-template-columns: 1fr; gap: 36px; }
  #problems .section-header { position: static; }
  .problems-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
  .problems-grid .problem-card:last-child { grid-column: auto; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-connector { transform: rotate(90deg); padding: 0; width: auto; height: 48px; }
  .exclusions-list { grid-template-columns: 1fr; }
  .exclusion-item:last-child { max-width: 100%; }
  .cta-columns { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .main-nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 24px; gap: 14px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
  }
  .main-nav.open { display: flex; }
  .header-actions { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 120px 0 80px; }
  .hero-sub { font-size: 16px; }
  .hero-pillars { flex-direction: column; align-items: center; gap: 8px; }
  .pillar-sep { width: 40px; height: 1px; }
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 48px; }
  .problems-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-item { flex: 0 1 100%; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .form-row-2 { grid-template-columns: 1fr; }
  .lead-form { padding: 28px 20px; }
  .buy-columns { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 10px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

/* ===== SCROLL ANIMATIONS ===== */
@supports (animation-timeline: view()) {
  .problem-card, .service-card, .step-card, .fit-item,
  .why-item, .proof-stat, .proof-diff-item {
    animation: fadeUp ease both;
    animation-timeline: view();
    animation-range: entry 5% entry 30%;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}
/* Only hide elements if JS is available to reveal them */
html.js .problem-card, html.js .service-card, html.js .step-card,
html.js .fit-item, html.js .why-item, html.js .proof-stat,
html.js .proof-diff-item {
  opacity: 0; transform: translateY(20px);
}
/* Chromium: CSS handles it, override JS initial state */
@supports (animation-timeline: view()) {
  html.js .problem-card, html.js .service-card, html.js .step-card,
  html.js .fit-item, html.js .why-item, html.js .proof-stat,
  html.js .proof-diff-item {
    opacity: unset; transform: unset;
  }
}
