/* ============================================================
   FUN SYSTEMS — Global Stylesheet
   Design: Dark base, purple brand, coral CTA, green accent
   Font: Plus Jakarta Sans
   ============================================================ */

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

/* ── 1. Tokens ─────────────────────────────────────────────── */
:root {
  /* Colors */
  --purple:        #6a5fd3;
  --purple-light:  #8a7fe0;
  --purple-dark:   #4e45a8;
  --purple-glow:   rgba(106, 95, 211, 0.18);
  --coral:         #ed5b3e;
  --coral-dark:    #d44d32;
  --coral-glow:    rgba(237, 91, 62, 0.15);
  --green:         #1ea877;

  /* Dark palette */
  --bg:            #0c0c10;
  --bg-2:          #111118;
  --bg-3:          #18181f;
  --border:        rgba(255, 255, 255, 0.07);
  --border-light:  rgba(255, 255, 255, 0.12);

  /* Text */
  --text-primary:  #ffffff;
  --text-secondary:rgba(255, 255, 255, 0.6);
  --text-muted:    rgba(255, 255, 255, 0.35);

  /* Light surface (for cards) */
  --card-bg:       rgba(255, 255, 255, 0.04);
  --card-border:   rgba(255, 255, 255, 0.08);

  /* Light section palette */
  --bg-light:      #f2f1f8;
  --bg-light-2:    #ffffff;
  --text-dark:     #16151f;
  --text-dark-2:   #3a3850;
  --text-dark-3:   #6b6888;
  --border-light-section: rgba(106, 95, 211, 0.12);

  /* Typography */
  --font:          'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;

  /* Spacing */
  --section-py:    80px;
  --container:     1160px;
}

/* ── 2. Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── 3. Container ──────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── 4. Typography ─────────────────────────────────────────── */
.display {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
}
.body-lg {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}
.caption {
  font-size: 13px;
  color: var(--text-muted);
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-light);
}

/* Coral / gradient text accents */
.text-coral  { color: var(--coral); }
.text-purple { color: var(--purple-light); }
.text-green  { color: var(--green); }
.text-gradient {
  background: linear-gradient(90deg, var(--purple-light), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 5. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.15s, background 0.2s, border-color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--coral);
  color: #fff;
}
.btn-primary:hover { background: var(--coral-dark); opacity: 1; }

.btn-purple {
  background: var(--purple);
  color: #fff;
}
.btn-purple:hover { background: var(--purple-dark); opacity: 1; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--text-primary);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.13); border-color: rgba(255,255,255,0.45); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-light);
  color: var(--text-secondary);
}
.btn-outline:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

.btn-sm { font-size: 13px; padding: 9px 18px; }
.btn-lg { font-size: 17px; padding: 16px 32px; }

/* ── 6. Navigation ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 12, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav.scrolled {
  background: rgba(12, 12, 16, 0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}
/* Nav inner flex container */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  background: none;
  border: none;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

/* Nav CTA area (login + book a call) */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-login:hover { color: var(--text-secondary); }

/* Hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Mobile menu panel — hidden by default */
.mobile-menu {
  display: none;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner {
  padding: 8px 24px 32px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: var(--font);
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-nav-link:hover { color: var(--text-primary); }
.mobile-nav-link:last-of-type { border-bottom: none; }

/* Badge for upsell items */
.badge-upsell {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  background: rgba(30, 168, 119, 0.12);
  border: 1px solid rgba(30, 168, 119, 0.3);
  border-radius: 4px;
  padding: 1px 5px;
  margin-left: 4px;
  vertical-align: middle;
}

/* ── 7. Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 260px;
}
.footer-logo { height: 28px; width: auto; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ── 8a. Light sections ─────────────────────────────────────── */
/* Add class="section-light" to any section for a light background */
.section-light {
  background-color: var(--bg-light) !important;
  background-image: radial-gradient(circle, rgba(106, 95, 211, 0.13) 1px, transparent 1px) !important;
  background-size: 22px 22px !important;
}
/* Adjacent light sections get reduced top padding to avoid dead whitespace */
.section-light + .section-light { padding-top: 56px; }
.section-light .section-label {
  color: var(--purple);
}
.section-light .section-title,
.section-light h2,
.section-light h3 {
  color: var(--text-dark);
}
.section-light p,
.section-light .section-desc {
  color: var(--text-dark-2);
}
.section-light .card,
.section-light .why-card:not(.why-card--solid):not(.why-card--photo),
.section-light .why-item {
  background: var(--bg-light-2);
  border-color: var(--border-light-section);
}
.section-light .card p,
.section-light .why-card p,
.section-light .why-item p {
  color: var(--text-dark-2);
}
.section-light .card h3,
.section-light .why-card h3,
.section-light .why-item h3 {
  color: var(--text-dark);
}
/* Process in light section */
.section-light .process-num { color: var(--purple); border-color: var(--border-light-section); }
.section-light .process-connector { background: var(--border-light-section); }
.section-light .process-number { color: rgba(106, 95, 211, 0.18); }
.section-light .process-arrow { color: var(--purple); opacity: 0.55; }

/* Testimonials in light section */
.section-light .testimonial-card {
  background: var(--bg-light-2);
  border-color: var(--border-light-section);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section-light .testimonial-quote { color: var(--text-dark-2); font-style: italic; }
.section-light .testimonial-author strong { color: var(--text-dark); }
.section-light .testimonial-author span { color: var(--text-dark-3); }
.section-light .testimonial-stars { color: #d97706; }
.section-light .carousel-dot { background: rgba(106,95,211,0.2); }
.section-light .carousel-dot.active { background: var(--purple); }
.section-light .carousel-prev,
.section-light .carousel-next { border-color: var(--border-light-section); color: var(--text-dark-2); }
.section-light .carousel-prev:hover,
.section-light .carousel-next:hover { background: rgba(106,95,211,0.08); color: var(--text-dark); }

/* Feature cards in light section — solid brand colors override light bg */
.section-light .feature-card {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* Why cards in light section */
.section-light .why-section,
.section-light.why-section { background: var(--bg-light); }
.section-light .why-card:not(.why-card--solid):not(.why-card--photo) {
  background: var(--bg-light-2);
  border-color: var(--border-light-section);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.section-light .why-card:not(.why-card--solid):hover { border-color: rgba(106,95,211,0.25); }
.section-light .why-icon { filter: none; }

/* Section sub / intro text */
.section-light .section-sub { color: var(--text-dark-2); }

/* Trust bar in light */
.trust-bar.trust-bar-light {
  background-color: var(--bg-light);
  background-image: radial-gradient(circle, rgba(106, 95, 211, 0.13) 1px, transparent 1px);
  background-size: 22px 22px;
  border-color: var(--border-light-section);
}
.trust-bar.trust-bar-light .trust-label { color: var(--text-dark-3); }
.trust-bar.trust-bar-light .trust-logo { color: var(--text-dark-3); }

/* ── 8b. Image / Graphic Placeholders ──────────────────────── */
.img-placeholder-wrap { width: 100%; margin-top: 48px; }
.img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: rgba(255,255,255,0.04);
  border: 2px dashed rgba(255,255,255,0.14);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}
.img-placeholder--wide { aspect-ratio: 16 / 6; }
.img-placeholder--portrait { aspect-ratio: 4 / 5; max-width: 360px; margin: 0 auto; }
.img-placeholder-icon { font-size: 32px; opacity: 0.35; }
.img-placeholder-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  opacity: 0.75;
}
.img-placeholder-caption {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.5;
}
.section-light .img-placeholder {
  background: rgba(106,95,211,0.04);
  border-color: rgba(106,95,211,0.18);
}
.section-light .img-placeholder-caption { color: var(--text-dark-3); }

/* ── Pricing page ────────────────────────────────────────────── */
.pricing-page .section { padding: 48px 0; }
.pricing-page .section-light + .section-light { padding-top: 40px; }
.pricing-page .testimonials-section { padding-bottom: 80px; }
.pricing-page .process-section { padding-top: 16px; }
.pricing-page .pricing-section { padding-top: 24px; }

/* ── section-light: pricing page overrides ───────────────────── */
.section-light.page-hero {
  border-bottom: none;
  padding: 52px 0 0;
}
.section-light.page-hero::after  { display: none; }
.section-light.page-hero .page-hero-glow { display: none; }
.section-light.page-hero .page-hero-content {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.section-light.page-hero h1 {
  color: var(--text-dark);
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 10px;
}
.section-light.page-hero p {
  color: var(--text-dark-2);
  font-size: 22px;
  max-width: none;
  margin: 0 auto;
}

.section-light .pricing-card {
  background: var(--bg-light-2);
  border-color: rgba(106,95,211,0.15);
}
.section-light .pricing-card-featured {
  background: var(--bg-light-2);
}
.section-light .pricing-card-header    { text-align: center; }
.section-light .pricing-price          { justify-content: center; }
.section-light .pricing-card-header h2 { color: var(--text-dark); font-size: 30px; }
.section-light .pricing-card-header > p { color: var(--text-dark-2); font-size: 17px; }
.section-light .pricing-amount         { color: var(--text-dark); font-size: 80px; }
.section-light .pricing-period         { color: var(--text-dark-3); font-size: 24px; }
.section-light .pricing-note           { color: var(--text-dark-3); font-size: 15px; }
.section-light .pricing-divider        { background: var(--border-light-section); }
.section-light .pricing-features-title { color: var(--text-dark-3); font-size: 14px; }
.section-light .pricing-checklist      { gap: 10px; }
.section-light .pricing-checklist li   { color: var(--text-dark-2); font-size: 17px; }
.section-light .pricing-checklist strong { color: var(--text-dark); }
.section-light .pricing-addon-inner    { background: rgba(30,168,119,0.06); border-color: rgba(30,168,119,0.22); }
.section-light .pricing-addon-text h3  { color: var(--text-dark); }
.section-light .pricing-addon-text p   { color: var(--text-dark-2); }
.section-light .pricing-addon-list li  { color: var(--text-dark-2); }
.section-light .pricing-addon-note     { color: var(--text-dark-3); }

.section-light .breakdown-item         { background: var(--bg-light-2); border-color: var(--border-light-section); }
.section-light .breakdown-item h3      { color: var(--text-dark); }
.section-light .breakdown-item p       { color: var(--text-dark-2); }

/* ── 8c. Feature cards — solid brand colors ─────────────────── */
.features-grid .feature-card { border: none; }
.features-grid .feature-card:nth-child(1) { background: #6a5fd3; }
.features-grid .feature-card:nth-child(2) { background: #1a9468; }
.features-grid .feature-card:nth-child(3) { background: #d44f34; }
.features-grid .feature-card:nth-child(4) { background: #d44f34; }
.features-grid .feature-card:nth-child(5) { background: #8a7fe0; }
.features-grid .feature-card:nth-child(6) { background: #1a9468; }
/* White text on all solid cards */
.features-grid .feature-card h3,
.features-grid .feature-card p,
.features-grid .feature-card .feature-link { color: rgba(255,255,255,0.95) !important; }
.features-grid .feature-card .feature-link { color: rgba(255,255,255,0.75) !important; }
/* Icon: white pill on all solid cards */
.features-grid .feature-card .feature-icon { background: rgba(255,255,255,0.18); color: #fff; }

/* Why cards: stat cards get subtle left accent only */
.why-grid .why-card:nth-child(3) { border-left: 4px solid var(--green); }
.why-grid .why-card:nth-child(4) { border-left: 4px solid var(--purple); }

/* Process step cards: solid brand colors (nth-child 2-4 because track is child 1) */
.process-steps > .process-step:nth-child(2) { background: var(--purple); border: none; }
.process-steps > .process-step:nth-child(3) { background: var(--green);  border: none; }
.process-steps > .process-step:nth-child(4) { background: var(--coral);  border: none; }
.process-steps > .process-step .process-number { color: rgba(255,255,255,0.2); }
.process-steps > .process-step h3 { color: #fff !important; }
.process-steps > .process-step p  { color: rgba(255,255,255,0.82) !important; }

/* Hero stat: $0 highlighted green, $297/mo highlighted purple */
.hero-stats .hero-stat:nth-child(3) .stat-number { color: var(--green); }
.hero-stats .hero-stat:nth-child(5) .stat-number { color: var(--purple-light); }

/* Section-label color variety on dark sections */
.process-section .section-label { color: var(--green); opacity: 0.9; }
.testimonials-section.section-light .section-label { color: var(--purple); opacity: 0.9; }

/* ── 8. Hero (homepage) ────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 110px 0 80px;
  text-align: center;
}
/* Purple glow top-right, coral glow bottom-left */
.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,95,211,0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,91,62,0.06) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 95, 211, 0.12);
  border: 1px solid rgba(106, 95, 211, 0.25);
  color: var(--purple-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
  border-radius: 50%;
}
.hero h1 { margin-bottom: 22px; }
.hero p   { max-width: 560px; margin: 0 auto 40px; }
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 9. Trust bar ──────────────────────────────────────────── */
.trust-bar {
  border-top: 3px solid var(--purple);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: rgba(106,95,211,0.04);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-logo {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.03em;
}

/* ── 10. Stats bar ─────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-number .accent { color: var(--coral); }
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── 11. Section header ────────────────────────────────────── */
.section-header {
  margin-bottom: 56px;
}
.section-header.center { text-align: center; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 560px; }
.section-header.center p { margin: 0 auto; }

/* ── 12. Features grid ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: block;
}
.feature-card.upsell {
  border-color: rgba(30,168,119,0.2);
}
.feature-card.upsell:hover {
  border-color: rgba(30,168,119,0.45);
  background: rgba(30,168,119,0.05);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--purple-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.feature-card.upsell .feature-icon {
  background: rgba(30,168,119,0.12);
}
.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.feature-card .feature-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-light);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.feature-card.upsell .feature-link { color: var(--green); }
.upsell-badge {
  display: inline-block;
  background: rgba(30,168,119,0.15);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── 13. Trades marquee ────────────────────────────────────── */
.trades-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  overflow: hidden;
}
.trades-label {
  text-align: center;
  margin-bottom: 24px;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.trade-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 20px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.trade-pill span { color: var(--purple-light); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 14. Process steps ─────────────────────────────────────── */
.process-section { padding: var(--section-py) 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.process-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.step-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.process-step p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.process-connector {
  display: none;
}

/* ── 15. Why us grid ───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.why-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── 16. Testimonials ──────────────────────────────────────── */
.testimonials-section { padding: var(--section-py) 0 64px; }
.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  flex: 0 0 calc((100% - 40px) / 3);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-quote::before { content: '"'; }
.testimonial-quote::after  { content: '"'; }
.testimonial-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  font-size: 16px;
}
.carousel-btn:hover {
  background: rgba(106,95,211,0.15);
  border-color: var(--purple);
  color: var(--text-primary);
}
.carousel-dots {
  display: flex;
  gap: 6px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: background 0.15s, width 0.15s;
}
.carousel-dot.active {
  background: var(--purple);
  width: 20px;
  border-radius: 3px;
}

/* ── 17. Partner Logos / Marquee ────────────────────────────── */
.partners-section {
  padding: 48px 0;
  background-color: var(--bg-light-2);
  border-top: 1px solid var(--border-light-section);
  border-bottom: 1px solid var(--border-light-section);
  overflow: hidden;
}
.partners-eyebrow {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
}
.partners-sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark-3);
  text-align: center;
  margin-bottom: 32px;
}

/* Marquee */
.marquee-outer {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 82%, transparent 100%);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* spacing as padding so total item width is uniform — keeps -50% loop seamless */
  padding-right: 64px;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}
.logo-item:hover { opacity: 1; }
.logo-item img {
  display: block;
  height: 72px;
  width: auto;
  object-fit: contain;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 18. FAQ ───────────────────────────────────────────────── */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--bg-light);
}
.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 100px;
}
.faq-intro .section-label { margin-bottom: 12px; color: var(--green); }
.faq-intro-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.faq-intro-sub {
  font-size: 15px;
  color: var(--text-dark-2);
  line-height: 1.65;
  margin-bottom: 28px;
}
.faq-list { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border-light-section);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--purple); }
.faq-q-text { flex: 1; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--purple);
  opacity: 0.6;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--coral);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  font-size: 15px;
  color: var(--text-dark-2);
  line-height: 1.7;
  padding: 0 24px 22px;
}

/* ── 18. CTA band ──────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #1e1a52 0%, #2e2480 40%, #3d1f6e 100%);
  border-top: none;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,95,211,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { margin-bottom: 36px; }
.cta-band .cta-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── 19. Page hero (inner pages) ───────────────────────────── */
.page-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,95,211,0.12) 0%, transparent 70%);
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { max-width: 580px; }

/* ── 20. Pricing cards ─────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(106,95,211,0.4);
  background: rgba(106,95,211,0.06);
}
.pricing-card.upsell {
  border-color: rgba(30,168,119,0.2);
}
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pricing-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 20px; color: var(--text-muted); }
.pricing-period { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { color: var(--green); font-size: 13px; }

/* ── 21. Testimonials grid (full page) ─────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── 22. Portfolio grid ────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: transform 0.2s, border-color 0.2s;
}
.portfolio-item:hover {
  transform: translateY(-4px);
  border-color: rgba(106,95,211,0.3);
}
.portfolio-image {
  aspect-ratio: 16 / 10;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
}
.portfolio-info { padding: 20px; }
.portfolio-info h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.portfolio-info p { font-size: 13px; color: var(--text-muted); }
.portfolio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: var(--purple-glow);
  color: var(--purple-light);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── 23. Feature page stats ────────────────────────────────── */
.feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.feature-stat {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.feature-stat-num {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.feature-stat-num .accent { color: var(--coral); }
.feature-stat-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Feature benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.benefit-icon {
  font-size: 24px;
  margin-bottom: 14px;
}
.benefit-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* Video placeholder */
.video-placeholder {
  aspect-ratio: 16 / 9;
  background: var(--bg-3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 64px;
  color: var(--text-muted);
}
.video-play {
  width: 60px;
  height: 60px;
  background: rgba(106,95,211,0.15);
  border: 2px solid rgba(106,95,211,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--purple-light);
}

/* ── 24. Utility ───────────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.divider {
  height: 1px;
  background: var(--border);
}
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ── 25. Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 480px; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .stat-item      { border-right: none; border-bottom: 1px solid var(--border); padding: 20px; }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stat-item:last-child      { border-bottom: none; }
  .stat-item:nth-last-child(2) { border-bottom: none; }

  /* Nav collapses to hamburger at 1024px */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Carousel: 2 per view at 1024px */
  .testimonial-card { flex: 0 0 calc((100% - 20px) / 2); }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .container { padding: 0 20px; }

  .hero { padding: 72px 0 56px; }
  .features-grid  { grid-template-columns: 1fr; }

  .why-grid       { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card  { flex: 0 0 100%; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1 / -1; }
  .footer-bottom  { flex-direction: column; align-items: flex-start; gap: 16px; }
  .benefits-grid  { grid-template-columns: 1fr; }
  .feature-stats  { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-direction: column; gap: 16px; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .cta-band .cta-ctas { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}


/* ══════════════════════════════════════════════════════════════
   EXTENDED COMPONENTS — Added with page builds
   ══════════════════════════════════════════════════════════════ */

/* ── Hero (homepage) ───────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 80px;
  background: var(--bg);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-purple {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(106,95,211,0.10) 0%, transparent 70%);
  top: -80px; right: -80px;
}
.hero-glow-coral {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(237,91,62,0.07) 0%, transparent 70%);
  bottom: -80px; left: -60px;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: rgba(106,95,211,0.12);
  border: 1px solid rgba(106,95,211,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--coral);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 40px;
}
.hero-social-proof .hero-google-badge {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  gap: 8px;
}
.hero-google-badge-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.hero-google-badge-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.hero-google-badge-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.hero-google-badge-stars {
  font-size: 13px;
  color: #FBBC05;
  letter-spacing: 1px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  overflow: hidden;
}
.hero-stat {
  flex: 1;
  min-width: 140px;
  padding: 20px 24px;
  text-align: center;
}
.hero-stat .stat-number {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--coral);
  line-height: 1.2;
  white-space: nowrap;
}
.hero-stat .stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Trust bar ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-logo { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.trust-logo:hover { color: rgba(255,255,255,0.6); }
.trust-logo-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
}

/* ── Trades marquee ─────────────────────────────────────────── */
.trades-section {
  padding: 48px 0;
  background-color: var(--bg-light-2);
  border-top: 1px solid var(--border-light-section);
  border-bottom: 1px solid var(--border-light-section);
  overflow: hidden;
}
.trades-label {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  text-transform: none;
  text-align: center;
  margin-bottom: 24px;
}
.trades-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.trades-track {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.trade-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
  padding: 14px 26px;
  border-radius: 100px;
  letter-spacing: -0.01em;
  color: #fff;
  border: none;
}
/* All solid, cycling 3 colors */
.trade-item:nth-child(3n+1) { background: var(--purple); }
.trade-item:nth-child(3n+2) { background: var(--green); }
.trade-item:nth-child(3n+3) { background: var(--coral); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section labels and titles ──────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── Features grid extended ─────────────────────────────────── */
.features-section { background: var(--bg-light); }
.feature-card { color: var(--text-dark); }
.feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.feature-card p  { font-size: 14px; color: var(--text-dark-2); line-height: 1.65; margin-bottom: 16px; }
.feature-link { font-size: 13px; font-weight: 600; color: var(--purple); }
/* Feature card solid brand colors — override tints */
.features-grid .feature-card:nth-child(1) { background: #6a5fd3; border: none; }
.features-grid .feature-card:nth-child(2) { background: #1a9468; border: none; }
.features-grid .feature-card:nth-child(3) { background: #d44f34; border: none; }
.features-grid .feature-card:nth-child(4) { background: #d44f34; border: none; }
.features-grid .feature-card:nth-child(5) { background: #8a7fe0; border: none; }
.features-grid .feature-card:nth-child(6) { background: #1a9468; border: none; }
.feature-icon { font-size: 24px; margin-bottom: 16px; }
.feature-card-upsell {
  border-color: rgba(30,168,119,0.2) !important;
  position: relative;
}
.feature-card-upsell:hover { border-color: rgba(30,168,119,0.45) !important; background: rgba(30,168,119,0.05) !important; }
.feature-upsell-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(30,168,119,0.12);
  border: 1px solid rgba(30,168,119,0.25);
  padding: 3px 8px;
  border-radius: 100px;
}
.badge-upsell {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(30,168,119,0.15);
  border: 1px solid rgba(30,168,119,0.3);
  padding: 2px 6px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 4px;
}

/* ── Why section ─────────────────────────────────────────────── */
.why-section { background: var(--bg-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.why-stat {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.why-stat--purple { color: var(--purple); }
.why-stat--green  { color: var(--green); }
.why-stat--coral  { color: var(--coral); }
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.why-card p  { font-size: 14px; color: var(--text-dark-2); line-height: 1.65; }

/* Photo cards */
.why-card--photo {
  background-size: cover;
  background-position: center;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  position: relative;
  border: none;
}
.why-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px 28px;
}
.why-photo-caption {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* Solid text cards */
.why-card--solid {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 32px 28px;
  border: none;
  box-shadow: none;
}
.why-card--solid:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
.why-card--solid-purple { background: #6a5fd3; }
.why-card--solid-green  { background: #1a9468; }
.why-card--solid-coral  { background: #d44f34; }
.why-solid-text {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
}

/* FAQ responsive */
@media (max-width: 860px) {
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { position: static; }
  .faq-intro-title { font-size: 36px; }
}

/* ── Credibility platforms row (inside testimonials section) ── */
.credibility-platforms {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 32px 0 48px;
  padding: 24px 0;
  border-top: 1px solid var(--border-light-section);
  border-bottom: 1px solid var(--border-light-section);
}
.credibility-platforms-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark-3);
}
.credibility-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.credibility-logo { color: rgba(0,0,0,0.3); transition: color 0.2s; }
.credibility-logo:hover { color: rgba(0,0,0,0.55); }
.credibility-logo-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ── Testimonials carousel ──────────────────────────────────── */
.testimonials-section { background: var(--bg-light); }
.testimonials-section-2 { background: var(--bg-light); }
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  /* Bleed past container padding so right edge clips at section boundary, not container */
  margin-left: -32px;
  margin-right: -32px;
  padding-left: 32px;
  padding-right: 32px;
}
@media (max-width: 768px) {
  .carousel-wrapper { margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; }
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  /* Width relative to the visible wrapper, not the full track */
  flex: 0 0 calc((100% - 40px) / 3);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-stars { font-size: 14px; color: #f5a623; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--coral) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--text-primary); }
.testimonial-author span  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.carousel-prev, .carousel-next {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.carousel-prev:hover, .carousel-next:hover { border-color: var(--purple); color: var(--purple-light); }
.carousel-dots { display: flex; gap: 6px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active { background: var(--purple); transform: scale(1.3); }
/* ── Infinite reviews marquee ───────────────────────────────── */
.reviews-marquee {
  overflow: hidden;
  margin-top: 40px;
  /* Fade cards at edges — no hard clip */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.reviews-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  /* Animation driven by JS (Web Animations API) for pixel-perfect loop */
  will-change: transform;
}
/* Override old carousel flex-basis so cards are the right size */
.reviews-marquee .testimonial-card {
  flex: 0 0 300px;
  width: 300px;
}
@media (max-width: 640px) {
  .reviews-marquee .testimonial-card { flex: 0 0 260px; width: 260px; }
  .reviews-marquee {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
    mask-image:         linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  }
}

.testimonials-cta { text-align: center; margin-top: 40px; }

/* ── Process steps ──────────────────────────────────────────── */
.process-section { background: var(--bg-light); }

/* ── Horizontal connector track (desktop) ── */
.process-track {
  position: absolute;
  top: -14px; /* sits above the cards */
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
  align-items: center;
  height: 24px;
  z-index: 2;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% / 6 - 8px);
  right: calc(100% / 6 - 8px);
  height: 3px;
  background: linear-gradient(to right, var(--purple), var(--green), var(--coral));
  border-radius: 99px;
  transform-origin: left center;
  transform: scaleX(0);
  margin-top: -1.5px;
  transition: transform 0.9s ease 0.15s;
  z-index: 0;
}
.process-track.animated::before { transform: scaleX(1); }
.ptdot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ptdot.animated { transform: scale(1); }
.ptdot:nth-child(1) {
  background: radial-gradient(circle at 50% 50%, #fff 0%, #fff 20%, var(--purple) 48%);
  box-shadow: 0 0 4px 1px rgba(112, 103, 246, 0.4);
}
.ptdot:nth-child(2) {
  background: radial-gradient(circle at 50% 50%, #fff 0%, #fff 20%, var(--green) 48%);
  box-shadow: 0 0 4px 1px rgba(47, 163, 107, 0.4);
}
.ptdot:nth-child(3) {
  background: radial-gradient(circle at 50% 50%, #fff 0%, #fff 20%, var(--coral) 48%);
  box-shadow: 0 0 4px 1px rgba(255, 99, 72, 0.4);
}

/* ── Step cards ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
  padding-top: 40px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 44px 36px 40px;
  position: relative;
  overflow: hidden;
}

/* Mobile dot (hidden on desktop) */
.process-step-dot { display: none; }

.process-number {
  font-size: 96px;
  font-weight: 900;
  color: rgba(255,255,255,0.28);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0;
  display: block;
}
.animate-on-scroll.animated .process-number {
  animation: numPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.process-steps > .process-step:nth-child(3).animate-on-scroll.animated .process-number { animation-delay: 0.1s; }
.process-steps > .process-step:nth-child(4).animate-on-scroll.animated .process-number { animation-delay: 0.2s; }
@keyframes numPop {
  from { transform: scale(0.5) translateY(8px); }
  to   { transform: scale(1)   translateY(0); }
}
.process-step h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.process-step p { font-size: 17px; color: rgba(255,255,255,0.82) !important; line-height: 1.65; }
.process-cta {
  text-align: center;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.process-cta-note {
  font-size: 17px;
  color: var(--text-dark-2);
  max-width: 420px;
  line-height: 1.65;
  margin: 0;
}

/* ── CTA Band ────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #1e1a52 0%, #2e2480 40%, #3d1f6e 100%);
  border-top: none;
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}
.cta-band-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 70% 90% at 15% 50%, rgba(237,91,62,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 70% 90% at 85% 50%, rgba(106,95,211,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.cta-band-eyebrow {
  display: inline-block;
  background: rgba(237,91,62,0.18);
  border: 1px solid rgba(237,91,62,0.35);
  color: #f0806a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.cta-band-inner h2 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 22px;
  max-width: 720px;
}
.cta-band-highlight {
  background: linear-gradient(90deg, #ed5b3e 0%, #f07a60 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-band-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 44px;
}
.cta-band-actions { display: flex; flex-direction: column; align-items: center; gap: 0; }
.cta-band-note { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 16px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ── Big animated CTA button ── */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(237,91,62,0.55), 0 8px 32px rgba(237,91,62,0.35); }
  50%       { box-shadow: 0 0 0 14px rgba(237,91,62,0), 0 12px 40px rgba(237,91,62,0.5); }
}
.btn-cta-xl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ed5b3e 0%, #d44f34 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 20px 44px;
  border-radius: 999px;
  text-decoration: none;
  animation: cta-pulse 2.4s ease-in-out infinite;
  transition: transform 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-cta-xl:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #f06a4e 0%, #e05a3e 100%);
  animation-play-state: paused;
}
.btn-cta-arrow {
  display: inline-block;
  transition: transform 0.18s ease;
  font-size: 22px;
}
.btn-cta-xl:hover .btn-cta-arrow { transform: translateX(4px); }

/* ── CTA client photo clusters ── */
@keyframes cta-float-a { 0%,100% { transform: translateY(0px)    rotate(-4deg); } 50% { transform: translateY(-10px)  rotate(-4deg); } }
@keyframes cta-float-b { 0%,100% { transform: translateY(0px)    rotate(3deg);  } 50% { transform: translateY(-8px)   rotate(3deg);  } }
@keyframes cta-float-c { 0%,100% { transform: translateY(0px)    rotate(-2deg); } 50% { transform: translateY(-12px)  rotate(-2deg); } }
@keyframes cta-float-d { 0%,100% { transform: translateY(0px)    rotate(4deg);  } 50% { transform: translateY(-9px)   rotate(4deg);  } }
@keyframes cta-float-e { 0%,100% { transform: translateY(0px)    rotate(-3deg); } 50% { transform: translateY(-11px)  rotate(-3deg); } }
@keyframes cta-float-f { 0%,100% { transform: translateY(0px)    rotate(2deg);  } 50% { transform: translateY(-7px)   rotate(2deg);  } }

.cta-clients {
  position: absolute;
  top: 0; bottom: 0;
  width: 260px;
  pointer-events: none;
  z-index: 0;
}
.cta-clients--left  { left: 24px; }
.cta-clients--right { right: 24px; }

.cta-client-img {
  position: absolute;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  border: none;
  /* Placeholder styling when src is empty */
  background: rgba(255,255,255,0.07);
  outline: 2px dashed rgba(255,255,255,0.18);
  outline-offset: -6px;
}

/* Left cluster positions */
.cta-client-img--a { width: 160px; height: 200px; top: 12%;  left: 40px;  object-position: center top; animation: cta-float-a 5.2s ease-in-out infinite; }
.cta-client-img--b { width: 130px; height: 160px; top: 42%;  left: 10px;  object-position: center 20%; animation: cta-float-b 6.1s ease-in-out infinite 0.8s; }
.cta-client-img--c { width: 145px; height: 180px; bottom: 10%; left: 55px; object-position: center top; animation: cta-float-c 5.7s ease-in-out infinite 1.5s; }

/* Right cluster positions */
.cta-client-img--d { width: 155px; height: 195px; top: 10%;  right: 40px; object-position: center top; animation: cta-float-d 5.5s ease-in-out infinite 0.4s; }
.cta-client-img--e { width: 135px; height: 165px; top: 40%;  right: 12px; object-position: center 20%; animation: cta-float-e 6.3s ease-in-out infinite 1.2s; }
.cta-client-img--f { width: 148px; height: 182px; bottom: 8%; right: 50px; object-position: center top; animation: cta-float-f 5.9s ease-in-out infinite 2s; }

/* Hide on smaller screens where there's no room */
@media (max-width: 1100px) { .cta-clients { display: none; } }

/* ── Page hero (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 120px 0 72px;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-sm { padding: 96px 0 56px; }
.page-hero-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(106,95,211,0.15) 0%, transparent 70%);
  top: -50px; right: -100px;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; color: var(--text-primary); letter-spacing: -0.025em; line-height: 1.12; margin-bottom: 16px; }
.page-hero p   { font-size: 18px; color: var(--text-secondary); line-height: 1.65; }
.page-eyebrow {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1;
}

/* ── Feature hero ────────────────────────────────────────────── */
.feature-hero {
  position: relative;
  padding: 120px 0 96px;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.feature-hero-upsell .feature-hero-glow {
  background: radial-gradient(ellipse, rgba(30,168,119,0.15) 0%, transparent 70%);
}
.feature-hero-glow {
  position: absolute;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(106,95,211,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.feature-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.feature-breadcrumb {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
/* Feature hero 2-col layout */
.feature-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.feature-hero-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.feature-hero-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.feature-hero-breadcrumb a:hover { color: var(--text-secondary); }
.feature-hero-breadcrumb span { margin: 0 6px; opacity: 0.4; }
.feature-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106,95,211,0.12);
  border: 1px solid rgba(106,95,211,0.25);
  color: var(--purple-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.feature-hero-left h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.feature-hero-left h1 em {
  font-style: normal;
  color: var(--coral);
}
.feature-hero-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}
.feature-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.feature-hero-price {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
/* Right: stat cards */
.feature-hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fh-stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: border-color 0.2s;
}
.fh-stat-card:hover { border-color: rgba(106,95,211,0.25); }
.fhs-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  min-width: 72px;
}
.fhs-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}
@media (max-width: 860px) {
  .feature-hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .feature-hero-right { display: none; }
}

/* Standalone video section (light) */
.feature-video-section { background: var(--bg-light); }
.feature-video-section .feature-video-placeholder {
  background: #fff;
  border: 1px solid var(--border-light-section);
  max-width: 860px;
  margin: 0 auto;
}
.feature-video-section .feature-video-inner p { color: var(--text-dark-2); }
.feature-video-section .feature-video-inner small { color: var(--text-dark-3); }
.feature-video-section .video-play-btn {
  background: rgba(106,95,211,0.1);
  border-color: rgba(106,95,211,0.2);
}
.feature-upsell-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(30,168,119,0.1);
  border: 1px solid rgba(30,168,119,0.25);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ── Feature stats + video layout ───────────────────────────── */
.feature-stats-section { background: var(--bg-2); border-bottom: 1px solid var(--border); }
.feature-stats-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.feature-stats-col { display: flex; flex-direction: column; gap: 28px; }
.feature-stat-item {}
.feature-stat-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.feature-stat-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.55; }
.feature-video-col {}
.feature-video-placeholder {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-video-inner { text-align: center; padding: 32px; }
.feature-video-inner p { font-size: 16px; color: var(--text-secondary); margin-top: 16px; margin-bottom: 8px; }
.feature-video-inner small { font-size: 13px; color: var(--text-muted); }
.video-play-btn {
  width: 56px; height: 56px;
  background: rgba(106,95,211,0.15);
  border: 2px solid rgba(106,95,211,0.3);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--purple-light);
  cursor: pointer;
}
.video-play-btn.large { width: 72px; height: 72px; font-size: 22px; margin: 0 auto; display: flex; }

/* ── Feature benefits grid ──────────────────────────────────── */
.feature-benefits-section { background: var(--bg); }
.feature-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feature-benefit {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.feature-benefit-icon { font-size: 24px; margin-bottom: 12px; }
.feature-benefit h3 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.feature-benefit p  { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── Feature system flow ─────────────────────────────────────── */
.feature-system-section { background: var(--bg-2); }
.feature-system-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-system-text h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.2; }
.feature-system-text p  { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.feature-system-visual { display: flex; justify-content: center; }
.system-flow { display: flex; flex-direction: column; align-items: center; gap: 0; }
.system-flow-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  width: 280px;
  font-size: 14px;
  color: var(--text-muted);
  transition: border-color 0.2s;
}
.system-flow-item.active { border-color: rgba(106,95,211,0.35); color: var(--text-secondary); }
.system-flow-item .flow-icon { font-size: 18px; flex-shrink: 0; }
.system-flow-arrow { font-size: 18px; color: var(--purple); opacity: 0.4; padding: 4px 0; }

/* ── Upsell context / CTA sections ─────────────────────────── */
.upsell-context-section { background: var(--bg-2); border-bottom: 1px solid var(--border); }
.upsell-context-inner { max-width: 760px; }
.upsell-context-card {
  background: rgba(106,95,211,0.06);
  border: 1px solid rgba(106,95,211,0.2);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
}
.upsell-context-card h2 { font-size: 22px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.upsell-context-card p  { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
.upsell-context-card a  { color: var(--purple-light); }
.upsell-cta-section { background: var(--bg-2); }
.upsell-cta-inner { max-width: 680px; }
.upsell-cta-card {
  background: rgba(237,91,62,0.05);
  border: 1px solid rgba(237,91,62,0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}
.upsell-cta-card h2 { font-size: 26px; font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
.upsell-cta-card p  { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.upsell-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.upsell-cta-note { font-size: 12px; color: var(--text-muted); }

/* ── Testimonials full grid ─────────────────────────────────── */
.testimonials-full-section { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card-full {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-card-full .testimonial-stars { font-size: 14px; color: #f5a623; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card-full p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card-full .testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-card-full strong { display: block; font-size: 14px; color: var(--text-primary); }
.testimonial-card-full span  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── Video placeholder grid ─────────────────────────────────── */
.video-testimonials-section { background: var(--bg-2); }
.video-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.video-placeholder {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.video-placeholder p { font-size: 13px; color: var(--text-muted); }

/* ── Portfolio ───────────────────────────────────────────────── */
.portfolio-section { background: var(--bg); }
.portfolio-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--text-primary);
  border-color: var(--purple);
  background: rgba(106,95,211,0.1);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: transform 0.2s, border-color 0.2s;
}
.portfolio-item:hover { transform: translateY(-2px); border-color: rgba(106,95,211,0.3); }
.portfolio-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-3);
}
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
}
.portfolio-placeholder-inner { text-align: center; padding: 24px; }
.portfolio-placeholder-inner span { font-size: 36px; }
.portfolio-placeholder-inner p { font-size: 14px; font-weight: 600; color: var(--text-secondary); margin-top: 8px; }
.portfolio-placeholder-inner small { font-size: 12px; color: var(--text-muted); }
.portfolio-info { padding: 20px; }
.portfolio-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 8px;
  display: block;
}
.portfolio-info h3 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.portfolio-result { font-size: 13px; color: var(--green); font-weight: 600; }
.portfolio-note { text-align: center; margin-top: 40px; font-size: 14px; color: var(--text-muted); }
.portfolio-note a { color: var(--purple-light); }

/* ── Portfolio 3-col thumb grid ──────────────────────────────── */
.portfolio-grid-3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.portfolio-item-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.portfolio-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .portfolio-grid-3col { grid-template-columns: repeat(2, 1fr); }
}

/* ── About page ──────────────────────────────────────────────── */
.about-bio-section { background: var(--bg-light); }
.about-bio {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.about-bio-text h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 20px; }
.about-bio-text p  { font-size: 16px; color: var(--text-dark-2); line-height: 1.7; margin-bottom: 16px; }
.about-bio-text a  { color: var(--purple); }
.about-bio-text .section-label { color: var(--green); margin-bottom: 12px; }
.about-stats {
  display: flex;
  gap: 32px;
  margin: 28px 0 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border-light-section);
  border-bottom: 1px solid var(--border-light-section);
}
.about-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.about-stat span {
  font-size: 13px;
  color: var(--text-dark-3);
  font-weight: 500;
}

.about-story-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-story {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.about-story-heading { position: sticky; top: 100px; }
.about-story .section-label { color: var(--green); margin-bottom: 12px; }
.about-story .section-title { color: var(--text-primary); font-size: clamp(34px, 4.5vw, 56px); }
.about-story-content { margin-top: 0; padding-top: 27px; }
.about-story-content p { font-size: 20px; font-weight: 400; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.about-pullquote {
  border-left: 3px solid var(--purple);
  padding: 16px 0 16px 24px;
  margin: 28px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.values-section { background: var(--bg-light); }
.values-section .section-label { color: var(--green); margin-bottom: 12px; }
.values-section .section-title { color: var(--text-dark); }
.values-list { margin-top: 56px; }
.value-row {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid var(--border-light-section);
}
.value-row:last-child { border-bottom: 1px solid var(--border-light-section); }
.value-statement {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.value-oneliner {
  font-size: 15px;
  color: var(--text-dark-3);
  line-height: 1.55;
}

.studio-section { background: var(--bg-light-2); border-top: 1px solid var(--border-light-section); }
.studio-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.studio-content .section-label { color: var(--green); margin-bottom: 12px; }
.studio-content h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 16px; }
.studio-content p  { font-size: 15px; color: var(--text-dark-2); line-height: 1.7; margin-bottom: 14px; }
.studio-logo-large { width: 120px; opacity: 0.65; }
.btn-outline-dark {
  background: transparent;
  border: 1.5px solid rgba(0,0,0,0.2);
  color: var(--text-dark);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline-dark:hover { border-color: var(--purple); color: var(--purple); background: rgba(106,95,211,0.05); }

/* About page CTA band — solid coral */
.about-cta-band {
  background: var(--coral);
  padding: 80px 0;
}
.about-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.about-cta-text h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 16px; }
.about-cta-text p  { color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 36px; }
.about-cta-actions { text-align: center; }
.about-cta-note { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 10px; }
.btn-white {
  background: #fff;
  color: var(--coral);
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: rgba(255,255,255,0.92); transform: translateY(-1px); }

/* ── Book a Call page ────────────────────────────────────────── */
.book-section {
  padding: 80px 0;
  background: var(--bg);
  min-height: calc(100vh - 80px);
  position: relative;
  overflow: hidden;
}
.book-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}
.book-glow-purple {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(106,95,211,0.14) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.book-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.book-context h1 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; color: var(--text-primary); letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 20px; }
.book-sub { font-size: 17px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 40px; }
.book-expectations h3 { font-size: 14px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px; }
.book-expectations ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.book-expectations li { display: flex; gap: 14px; }
.book-check { color: var(--green); font-size: 16px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.book-expectations li strong { display: block; font-size: 15px; color: var(--text-primary); margin-bottom: 4px; }
.book-expectations li span > span { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.book-reassurance { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.book-calendar {}
.calendar-placeholder {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-placeholder-inner { text-align: center; padding: 48px; }
.calendar-icon { font-size: 48px; margin-bottom: 20px; }
.calendar-placeholder-inner h3 { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.calendar-placeholder-inner p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 8px; }
.calendar-placeholder-note { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.calendar-placeholder-note a { color: var(--purple-light); }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-section { background: var(--bg); }
.pricing-cards { display: flex; justify-content: center; margin-bottom: 48px; }
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  max-width: 680px;
  width: 100%;
  position: relative;
}
.pricing-card-featured {
  border-color: rgba(106,95,211,0.35);
  background: linear-gradient(135deg, rgba(106,95,211,0.07) 0%, rgba(237,91,62,0.03) 100%);
}
.pricing-card-badge {
  position: absolute;
  top: -14px; left: 48px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--purple);
  color: white;
  padding: 4px 14px;
  border-radius: 100px;
}
.pricing-card-header h2 { font-size: 24px; font-weight: 800; color: var(--text-primary); margin-bottom: 10px; }
.pricing-card-header > p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; }
.pricing-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; }
.pricing-amount { font-size: 64px; font-weight: 800; color: var(--text-primary); letter-spacing: -0.04em; line-height: 1; }
.pricing-period { font-size: 20px; color: var(--text-muted); }
.pricing-note { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.pricing-divider { height: 1px; background: var(--border); margin: 32px 0; }
.pricing-features-title { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.pricing-checklist { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.pricing-checklist li { display: flex; gap: 14px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; align-items: flex-start; }
.pricing-checklist .check { color: var(--green); font-size: 15px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-checklist strong { color: var(--text-primary); }

/* ── Pricing addon ───────────────────────────────────────────── */
.pricing-addon { margin-top: 0; }
.pricing-addon-inner {
  background: rgba(30,168,119,0.05);
  border: 1px solid rgba(30,168,119,0.2);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.pricing-addon-badge {
  position: absolute;
  top: -14px; left: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--green);
  color: white;
  padding: 4px 14px;
  border-radius: 100px;
}
.pricing-addon-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
}
.pricing-addon-icon { font-size: 32px; padding-top: 4px; }
.pricing-addon-text h3 { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.pricing-addon-text p  { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 12px; }
.pricing-addon-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.pricing-addon-list li { font-size: 13px; color: var(--text-secondary); }
.pricing-addon-cta { text-align: right; flex-shrink: 0; }
.pricing-addon-note { font-size: 12px; color: var(--text-muted); max-width: 180px; text-align: right; margin-bottom: 12px; line-height: 1.5; }
.pricing-addon-learn { display: block; margin-top: 12px; font-size: 13px; color: var(--purple-light); text-decoration: none; }
.pricing-addon-learn:hover { text-decoration: underline; }
.pricing-addon-callout {
  max-width: 680px;
  width: 100%;
  margin: 20px auto 0;
  padding: 24px 32px;
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: var(--radius-lg);
  text-align: center;
}
.pricing-addon-callout p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.section-light .pricing-addon-callout p { color: #78490a; }
.btn-addon {
  display: inline-block;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #92560d;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
}
.btn-addon:hover {
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(245, 158, 11, 0.5);
}

/* ── Feature breakdown ──────────────────────────────────────── */
.breakdown-section { background: var(--bg-2); }
.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.breakdown-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.breakdown-icon { font-size: 28px; margin-bottom: 16px; }
.breakdown-item h3 { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.breakdown-item p  { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 16px; }
.breakdown-link { font-size: 13px; font-weight: 600; color: var(--purple-light); text-decoration: none; }
.breakdown-link:hover { text-decoration: underline; }

/* ── Contact page ────────────────────────────────────────────── */
.contact-section { background: var(--bg); min-height: 60vh; }
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: 16px; }
.contact-info > p { font-size: 16px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 28px; }
.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.contact-detail { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-secondary); }
.contact-detail a { color: var(--purple-light); }
.contact-detail-icon { font-size: 18px; }
.contact-form-wrap {}

/* ── Legal pages ─────────────────────────────────────────────── */
.legal-section { background: var(--bg); }
.legal-container { max-width: 760px; }
.legal-content h2 { font-size: 20px; font-weight: 700; color: var(--text-primary); margin: 40px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; margin-bottom: 12px; }
.legal-content ul li { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 4px; }
.legal-content a { color: var(--purple-light); }

/* ── Nav extended ────────────────────────────────────────────── */
.nav-features-btn {
  background: none; border: none;
  cursor: pointer;
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font);
}
.nav-features-btn .chevron { transition: transform 0.2s; }
.nav-features-btn[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-4px);
  z-index: 100;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
@media (min-width: 769px) {
  .nav-dropdown-wrap:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
.nav-dropdown-wrap { position: relative; }
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.dropdown-item:hover { background: rgba(255,255,255,0.05); }
.dropdown-item.dropdown-upsell { border-top: 1px solid var(--border); margin-top: 4px; padding-top: 14px; }
.dropdown-icon { font-size: 18px; flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--card-bg); border-radius: 7px; }
.dropdown-item span strong { display: block; font-size: 15px; font-weight: 600; color: var(--text-primary); line-height: 1.3; }
.dropdown-item span small  { display: block; font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* Mobile nav extended */
.mobile-nav-section { }
.mobile-features-toggle {
  background: none; border: none;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  font-family: var(--font); cursor: pointer;
}
.mobile-features-toggle .chevron { transition: transform 0.25s; }
.mobile-features-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-features-dropdown.open { max-height: 400px; }
.mobile-nav-sub { padding-left: 20px !important; font-size: 14px !important; }
.chevron.rotated { transform: rotate(180deg); }

/* ── Buttons extended ────────────────────────────────────────── */
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── Responsive additions ────────────────────────────────────── */
@media (max-width: 1024px) {
  .feature-stats-layout  { grid-template-columns: 1fr; }
  .feature-system-inner  { grid-template-columns: 1fr; }
  .about-bio             { grid-template-columns: 1fr; gap: 32px; }
  .about-bio .about-photo { max-width: 280px; }
  .about-story           { grid-template-columns: 1fr; gap: 16px; }
  .about-story-heading   { position: static; }
  .about-story-content   { padding-top: 0; }
  .studio-inner          { grid-template-columns: 1fr; }
  .studio-logo-wrap      { display: none; }
  .book-container        { grid-template-columns: 1fr; gap: 48px; }
  .contact-container     { grid-template-columns: 1fr; gap: 48px; }
  .pricing-addon-content { grid-template-columns: auto 1fr; }
  .pricing-addon-cta     { grid-column: 1 / -1; text-align: left; }
  .pricing-addon-note    { text-align: left; max-width: none; }
  .cta-band-inner        { flex-direction: column; text-align: center; }
  .btn-cta-xl            { font-size: 17px; padding: 17px 34px; }
  .feature-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid              { grid-template-columns: repeat(2, 1fr); }
  .value-row             { grid-template-columns: 1fr; gap: 8px; padding: 32px 0; }
  .breakdown-grid        { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid     { grid-template-columns: repeat(2, 1fr); }
  .video-placeholder-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-stats     { flex-direction: column; }
  .hero-stat-divider { display: none; }
  .hero-stat      { border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }
  /* Hide horizontal track, switch to vertical timeline */
  .process-track { display: none; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    position: relative;
    padding-left: 44px;
    padding-top: 0;
    margin-top: 48px;
  }
  /* Vertical line */
  .process-steps::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--purple), var(--green), var(--coral));
    border-radius: 99px;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.9s ease 0.2s;
  }
  .process-steps.animated::before { transform: scaleY(1); }
  /* Dot per step — nth-child 2/3/4 because track div is child 1 */
  .process-step-dot {
    display: block;
    position: absolute;
    left: -37px;
    top: 28px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #fff 0%, #fff 20%, var(--purple) 48%);
    box-shadow: 0 0 4px 1px rgba(112, 103, 246, 0.4);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
    z-index: 1;
  }
  .process-steps > .process-step:nth-child(3) .process-step-dot {
    background: radial-gradient(circle at 50% 50%, #fff 0%, #fff 20%, var(--green) 48%);
    box-shadow: 0 0 4px 1px rgba(47, 163, 107, 0.4);
  }
  .process-steps > .process-step:nth-child(4) .process-step-dot {
    background: radial-gradient(circle at 50% 50%, #fff 0%, #fff 20%, var(--coral) 48%);
    box-shadow: 0 0 4px 1px rgba(255, 99, 72, 0.4);
  }
  .process-step.animated .process-step-dot { transform: scale(1); }
  .process-step { overflow: visible; text-align: left; }
  .why-grid              { grid-template-columns: 1fr; }
  .value-row             { gap: 6px; }
  .feature-benefits-grid { grid-template-columns: 1fr; }
  .breakdown-grid        { grid-template-columns: 1fr; }
  .testimonials-grid     { grid-template-columns: 1fr; }
  .video-placeholder-grid { grid-template-columns: 1fr; }
  .portfolio-grid        { grid-template-columns: 1fr; }
  .portfolio-filters     { gap: 6px; }
  .testimonial-card      { flex: 0 0 100%; }
  .pricing-card          { padding: 28px 24px; }
  .pricing-addon-content { grid-template-columns: 1fr; }
  .system-flow-item      { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
  .hero-actions          { flex-direction: column; }
  .hero-actions .btn     { justify-content: center; }
  .book-context h1       { font-size: 32px; }
  .upsell-cta-actions    { flex-direction: column; }
}


/* ══════════════════════════════════════════════════════════════
   DESIGN ENHANCEMENT LAYER
   ══════════════════════════════════════════════════════════════ */

/* ── Grain overlay ──────────────────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── Hero entrance animations ───────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge     { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.05s both; }
.hero-headline  { animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.15s both; }
.hero-sub       { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.28s both; }
.hero-actions   { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.42s both; }
.hero-google-badge { animation: none; }
.hero-stats     { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.64s both; }
.img-placeholder-wrap { animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.8s both; }

/* ── Scroll-triggered entrance animations ───────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll[data-delay="1"] { transition-delay: 0.08s; }
.animate-on-scroll[data-delay="2"] { transition-delay: 0.16s; }
.animate-on-scroll[data-delay="3"] { transition-delay: 0.24s; }
.animate-on-scroll[data-delay="4"] { transition-delay: 0.32s; }
.animate-on-scroll[data-delay="5"] { transition-delay: 0.40s; }
.animate-on-scroll[data-delay="6"] { transition-delay: 0.48s; }
.animate-on-scroll[data-delay="7"] { transition-delay: 0.56s; }

/* ── Stronger hero glows ────────────────────────────────────── */
.hero-glow-purple {
  background: radial-gradient(circle, rgba(106,95,211,0.18) 0%, transparent 65%) !important;
  width: 650px !important;
  height: 650px !important;
  top: -140px !important;
  right: -120px !important;
}
.hero-glow-coral {
  background: radial-gradient(circle, rgba(237,91,62,0.12) 0%, transparent 65%) !important;
  width: 480px !important;
  height: 480px !important;
  bottom: -100px !important;
  left: -80px !important;
}

/* ── Gradient text on hero em ───────────────────────────────── */
.hero-headline em {
  font-style: normal;
  background: linear-gradient(100deg, var(--coral) 0%, #f87c5a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section label accent dot ───────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Card hover glow ────────────────────────────────────────── */
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(106,95,211,0.14), 0 0 0 1px rgba(106,95,211,0.28) !important;
  transform: translateY(-3px) !important;
}
.why-card:hover {
  border-color: rgba(106,95,211,0.3) !important;
  box-shadow: 0 8px 28px rgba(106,95,211,0.10) !important;
  transform: translateY(-2px);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

/* ── SVG icon containers ────────────────────────────────────── */
.feature-icon,
.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feature-icon svg,
.why-icon svg {
  display: block;
}

/* Icon containers on solid brand color cards */
.features-grid .feature-card .feature-icon { background: rgba(255,255,255,0.18) !important; color: #fff !important; }

/* Color-cycling icon containers — why */
.why-grid .why-card:nth-child(1) .why-icon { background: rgba(106,95,211,0.14); color: var(--purple-light); }
.why-grid .why-card:nth-child(2) .why-icon { background: rgba(30,168,119,0.13);  color: var(--green); }
.why-grid .why-card:nth-child(3) .why-icon { background: rgba(237,91,62,0.12);   color: var(--coral); }
.why-grid .why-card:nth-child(4) .why-icon { background: rgba(30,168,119,0.13);  color: var(--green); }
.why-grid .why-card:nth-child(5) .why-icon { background: rgba(106,95,211,0.14); color: var(--purple-light); }
.why-grid .why-card:nth-child(6) .why-icon { background: rgba(237,91,62,0.12);   color: var(--coral); }

/* ── Dark section overrides (features + why removed from light) */
.features-section {
  background: var(--bg-2) !important;
}
.features-section .section-label { color: var(--purple-light); }
.features-section .section-title { color: var(--text-primary); }
.features-section .section-sub   { color: var(--text-secondary); }

.why-section {
  background: var(--bg-2) !important;
}
.why-section .section-label { color: var(--purple-light); }
.why-section .section-title { color: var(--text-primary); }
.why-section .section-sub   { color: var(--text-secondary); }
.why-card h3 { color: var(--text-primary); }
.why-card p  { color: var(--text-secondary); }


/* ── CTA band: gradient always wins ───────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #1e1a52 0%, #2e2480 40%, #3d1f6e 100%) !important;
  border-top: none !important;
}

/* ── Typography micro-refinements ───────────────────────────── */
.section-title {
  letter-spacing: -0.022em;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
}

/* ── Testimonial card subtle left border on hover ────────────── */
.testimonial-card {
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  border-color: rgba(106,95,211,0.25);
  transform: translateY(-2px);
}

/* ── Process step hover ─────────────────────────────────────── */
.process-step {
  transition: box-shadow 0.2s, transform 0.2s;
}
.section-light .process-step:hover {
  box-shadow: 0 4px 20px rgba(106,95,211,0.10);
  transform: translateY(-2px);
}


/* ══════════════════════════════════════════════════════════════
   HOMEPAGE RESTYLE
   ══════════════════════════════════════════════════════════════ */

/* ── Hero centered single-column layout ─────────────────────── */
.hero-center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-center .hero-actions {
  justify-content: center;
}

/* ── Hero social proof ───────────────────────────────────────── */
.hero-social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.54s both;
}
.hero-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-avatar {
  border-radius: 50%;
  border: 3px solid #0c0c10;
  overflow: hidden;
  margin-left: -18px;
  flex-shrink: 0;
  position: relative;
}
.hero-avatars .hero-avatar:first-child { margin-left: 0; }
.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Progressive sizing — largest at center (4th), shrinks symmetrically outward */
.hero-avatar:nth-child(1) { width: 51px; height: 51px; z-index: 1; }
.hero-avatar:nth-child(2) { width: 64px; height: 64px; z-index: 2; }
.hero-avatar:nth-child(3) { width: 79px; height: 79px; z-index: 3; }
.hero-avatar:nth-child(4) { width: 97px; height: 97px; z-index: 4; }
.hero-avatar:nth-child(5) { width: 79px; height: 79px; z-index: 3; }
.hero-avatar:nth-child(6) { width: 64px; height: 64px; z-index: 2; }
.hero-avatar:nth-child(7) { width: 51px; height: 51px; z-index: 1; }
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-trusted-text {
  font-size: 14px;
  color: var(--text-secondary);
  white-space: nowrap;
  line-height: 1;
}
.hero-trusted-text strong {
  color: var(--text-primary);
  font-weight: 700;
}
.hero-proof-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .hero-trust-row { flex-direction: column; gap: 10px; }
  .hero-proof-divider { display: none; }
  .hero-avatar:nth-child(1) { width: 32px; height: 32px; }
  .hero-avatar:nth-child(2) { width: 40px; height: 40px; }
  .hero-avatar:nth-child(3) { width: 50px; height: 50px; }
  .hero-avatar:nth-child(4) { width: 62px; height: 62px; }
  .hero-avatar:nth-child(5) { width: 50px; height: 50px; }
  .hero-avatar:nth-child(6) { width: 40px; height: 40px; }
  .hero-avatar:nth-child(7) { width: 32px; height: 32px; }
  .hero-avatar { margin-left: -12px; }
}

/* Hero price note */
.hero-price-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  letter-spacing: 0.01em;
}

/* ── Results strip ───────────────────────────────────────────── */
.results-strip {
  background: #0c0c10;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 32px 0;
}
.results-strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
  flex: 1;
  max-width: 220px;
}
.result-num {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.result-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-align: center;
}
.result-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .results-strip-grid { flex-wrap: wrap; gap: 24px; }
  .result-divider { display: none; }
  .result-item { max-width: 45%; }
}

/* ── Hero visual mock (hv-*) ────────────────────────────────── */
.hero-visual {
  animation: heroFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}
.hv-card {
  background: var(--bg-3);
  border: 1px solid rgba(106,95,211,0.22);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.45),
    0 0 0 1px rgba(106,95,211,0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.hv-card-header {
  padding: 14px 18px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hv-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}
.hv-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(30,168,119,0.5); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 5px rgba(30,168,119,0); }
}
.hv-card-domain {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.02em;
}
.hv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.hv-item:last-child { border-bottom: none; }
.hv-item:hover { background: rgba(255,255,255,0.025); }
.hv-item-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hv-icon-green  { background: rgba(30,168,119,0.15);  color: var(--green); }
.hv-icon-yellow { background: rgba(245,166,35,0.15);  color: #f5a623; }
.hv-icon-purple { background: rgba(106,95,211,0.15);  color: var(--purple-light); }
.hv-icon-coral  { background: rgba(237,91,62,0.15);   color: var(--coral); }
.hv-item-body { flex: 1; min-width: 0; }
.hv-item-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hv-item-body span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hv-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.hv-tag--green  { background: rgba(30,168,119,0.15);  color: var(--green); }
.hv-tag--purple { background: rgba(106,95,211,0.15);  color: var(--purple-light); }
.hv-tag--coral  { background: rgba(237,91,62,0.15);   color: var(--coral); }
.hv-stars { font-size: 12px; color: #f5a623; letter-spacing: 1px; flex-shrink: 0; }
.hv-footer {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.hv-footer-stat { flex: 1; text-align: center; }
.hv-footer-num {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--purple-light);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hv-footer-label {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.hv-footer-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Platform activity feed (features section) ──────────────── */
.platform-preview-wrapper {
  position: relative;
  margin-top: 56px;
}

.platform-layout-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.platform-layout-text {
  padding-top: 0;
}

.platform-layout-text h3 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.platform-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.platform-features-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

.platform-check {
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 1px;
}

.platform-features-list strong {
  color: var(--text-primary);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .platform-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }
  
  .platform-layout-text {
    padding-top: 0;
  }
}

.platform-preview {
  background: var(--bg-light-2);
  border: 1px solid var(--border-light-section);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 28px rgba(106, 95, 211, 0.12);
}

.platform-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(106, 95, 211, 0.06);
  border-bottom: 1px solid rgba(106, 95, 211, 0.08);
  flex-wrap: wrap;
  gap: 12px;
}

.platform-preview-note {
  font-size: 13px;
  color: var(--text-dark-3);
  font-weight: 500;
}

.platform-list {
  position: relative;
  height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
}

.platform-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(106, 95, 211, 0.06);
  transition: all 0.3s ease-out;
  background: var(--bg-light-2);
  color: var(--text-dark);
  animation: slideInRow 0.4s ease-out forwards;
  opacity: 1;
  transform: translateY(0);
}

.platform-row.exit-animate {
  animation: slideOutRow 0.3s ease-in forwards;
  opacity: 0;
}

.platform-row:last-child { 
  border-bottom: none; 
}

.platform-row:hover { 
  background: rgba(106, 95, 211, 0.03);
}

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

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

.platform-row-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-row-body { 
  flex: 1; 
  min-width: 0; 
}

.platform-row-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.platform-row-body span {
  display: block;
  font-size: 13px;
  color: var(--text-dark-3);
  margin-top: 0;
  font-weight: 500;
}

.platform-row-badge {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.platform-row-stars {
  font-size: 14px;
  color: #f5a623;
  flex-shrink: 0;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ── Light background text colors ──────────────────────────── */
.platform-preview .hv-live {
  color: var(--text-dark-2);
}

/* ── "From Marz" personal note card ─────────────────────────── */
.marz-note {
  background: linear-gradient(135deg, rgba(106,95,211,0.07) 0%, rgba(237,91,62,0.04) 100%);
  border: 1px solid rgba(106,95,211,0.2);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  margin-top: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.marz-note-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--coral) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(106,95,211,0.35);
}
.marz-note-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 20px;
  font-style: italic;
}
.marz-note-sig {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.marz-note-sig strong { font-size: 14px; color: var(--text-primary); font-weight: 700; }
.marz-note-sig span   { font-size: 13px; color: var(--text-muted); }
.marz-note-sig a {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-light);
  text-decoration: none;
  background: rgba(106,95,211,0.1);
  padding: 3px 10px;
  border-radius: 100px;
  transition: background 0.15s;
}
.marz-note-sig a:hover { background: rgba(106,95,211,0.2); }

@media (max-width: 640px) {
  .marz-note { padding: 28px 24px; flex-direction: column; gap: 16px; }
  .platform-preview-header { flex-direction: column; align-items: flex-start; }
}


/* ── FAQ RESTYLE ─────────────────────────────────────────────── */

/* Override old FAQ rules */


/* ══════════════════════════════════════════════════════════════
   WORK EXAMPLES SECTION
   ══════════════════════════════════════════════════════════════ */

.work-section {
  background: var(--bg-2);
  overflow: hidden;
}
.work-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 48px;
}
.work-header-text .section-title { margin-bottom: 12px; }
.work-header-text .section-sub   { max-width: 520px; }
.work-header-stats {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.work-stat-pill {
  text-align: center;
  white-space: nowrap;
  padding: 0 24px;
}
.work-stat-pill strong { display: block; font-size: 28px; font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; margin-bottom: 5px; }
.work-stat-pill span   { font-size: 11px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.06em; }

/* Carousel wrapper — arrows sit in the gutter, outside the content edge */
.work-carousel {
  position: relative;
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 0 32px; /* matches container padding so cards align with page content */
}
.work-carousel-viewport {
  overflow: hidden;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
}
.carousel-btn--prev { left: -56px; }
.carousel-btn--next { right: -56px; }
.carousel-btn:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }

.work-scroll-outer {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: 40px;
  padding-bottom: 4px;
}
.work-scroll-outer::-webkit-scrollbar { display: none; }
.work-scroll-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.work-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.work-card-mockup { display: flex; flex-direction: column; }
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 12px;
  background: rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.mockup-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* Scrolling mockup image — landscape container, tall image scrolls up */
.mockup-img-wrap {
  overflow: hidden;
  height: 200px; /* landscape viewport — image overflows below */
}
.mockup-img {
  width: 100%;
  height: auto; /* natural full-page height, much taller than 200px */
  display: block;
  animation: mockup-scroll 12s ease-in-out infinite;
}

@keyframes mockup-scroll {
  /* translateY(calc(-100% + 200px)) slides the image up exactly until
     its bottom edge aligns with the bottom of the 200px container */
  0%,  15% { transform: translateY(0); }
  50%, 65% { transform: translateY(calc(-100% + 200px)); }
  90%, 100%{ transform: translateY(0); }
}

.work-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.work-footer-note { font-size: 13px; color: var(--text-muted); margin: 0; }

@media (max-width: 900px) {
  .work-header { flex-direction: column; align-items: flex-start; gap: 28px; }
  .work-header-stats { flex-wrap: wrap; }
}
@media (max-width: 900px) {
  .work-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 640px) {
  .work-footer { flex-direction: column; align-items: flex-start; }
  .work-card { flex: 0 0 calc(100% - 0px); }

  /* Stats: equal 3-column grid so all 3 pills align */
  .work-header-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
  }
  .work-stat-pill { padding: 0 8px; }

  /* Arrows: move inside the carousel, overlay the card edges */
  .carousel-btn--prev { left: 8px; }
  .carousel-btn--next { right: 8px; }
  .carousel-btn {
    background: rgba(12,12,16,0.75);
    backdrop-filter: blur(6px);
    border-color: rgba(255,255,255,0.2);
    width: 38px;
    height: 38px;
  }
}


/* ══════════════════════════════════════════════════════════════
   OFF-WHITE SECTION TEXTURE
   Dot grid on lavender/off-white sections — must stay at end
   ══════════════════════════════════════════════════════════════ */

.section-light,
.features-section,
.why-section,
.testimonials-section,
.testimonials-section-2 {
  background-image: radial-gradient(circle, rgba(106, 95, 211, 0.22) 1.5px, transparent 1.5px) !important;
  background-size: 26px 26px !important;
  background-repeat: repeat !important;
}

/* ══ Features Bento — 3 flex columns ════════════════════════ */
.features-bento {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bento-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bento-col-center { flex: 1.35; }

/* Side cards fill their column equally */
.bento-col:not(.bento-col-center) .feature-card { flex: 1; }

/* All bento feature cards — white, dark text */
.features-bento .feature-card {
  background: #ffffff !important;
  border: 1px solid rgba(106, 95, 211, 0.1) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  box-sizing: border-box;
}
.features-bento .feature-card h3 { color: var(--text-dark) !important; }
.features-bento .feature-card p   { color: var(--text-dark-2) !important; }

/* Left col — purple (website) + orange (campaigns) */
.bento-col:nth-child(1) .feature-card:nth-child(1) .feature-icon { background: var(--purple) !important; color: #fff !important; }
.bento-col:nth-child(1) .feature-card:nth-child(2) .feature-icon { background: var(--coral) !important; color: #fff !important; }

/* Right col — coral (reviews) + green (SEO) */
.bento-col:nth-child(3) .feature-card:nth-child(1) .feature-icon { background: var(--coral) !important; color: #fff !important; }
.bento-col:nth-child(3) .feature-card:nth-child(2) .feature-icon { background: var(--green) !important; color: #fff !important; }

/* Center col follow-up — green */
.bento-col-center .feature-card .feature-icon { background: var(--green) !important; color: #fff !important; }

/* Center image card */
.features-bento-center {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: none;
  padding: 0;
}

.bento-placeholder-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.features-bento-center:hover .bento-placeholder-img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 860px) {
  .features-bento { flex-direction: column; }
  .bento-col { flex-direction: row; }
  .bento-col .feature-card { flex: 1; }
  .bento-col-center { flex: none; width: 100%; }
}

@media (max-width: 640px) {
  .bento-col { flex-direction: column; }
}


/* ══════════════════════════════════════════════════════════════
   WHY US — BENTO FLIP GRID
   ══════════════════════════════════════════════════════════════ */

.why2-section {
  background: #0b0d18;
  padding: 96px 0 104px;
}

/* Intro */
.why2-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.why2-eyebrow { color: #7067f6 !important; justify-content: center; }
.why2-headline {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: #f5f3ee;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.why2-sub {
  font-size: 19px;
  color: rgba(245,243,238,0.65);
  line-height: 1.65;
}

/* Grid */
.why2-grid {
  display: flex;
  gap: 22px;
  align-items: stretch;
  min-height: 760px;
}
.why2-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ── Flip card wrapper ── */
.why2-card {
  border-radius: 24px;
  perspective: 1100px;
  cursor: pointer;
}
/* Per-position flex ratios — cards fill column height proportionally */
.why2-col:nth-child(1) .why2-card:nth-child(1) { flex: 43; } /* image — taller  */
.why2-col:nth-child(1) .why2-card:nth-child(2) { flex: 33; } /* info  — shorter */
.why2-col:nth-child(2) .why2-card:nth-child(1) { flex: 21; } /* phrase — short  */
.why2-col:nth-child(2) .why2-card:nth-child(2) { flex: 51; } /* image — dominant*/
.why2-col:nth-child(3) .why2-card:nth-child(1) { flex: 28; } /* info  — short   */
.why2-col:nth-child(3) .why2-card:nth-child(2) { flex: 40; } /* phrase — taller */

.why2-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.62s cubic-bezier(0.4, 0.2, 0.2, 1);
}
.why2-card:hover .why2-card-inner {
  transform: rotateY(180deg);
}

/* ── Faces ── */
.why2-face {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.why2-face--back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
}

/* ── Face backgrounds ── */
.why2-phrase--purple { background: #7067f6; }
.why2-phrase--orange { background: #ef623d; }
.why2-back--dark     { background: #141828; }
.why2-back--light    { background: #f3f0ea; }

/* ── Image front face ── */
.why2-face--front[style*="background-image"] {
  background-size: cover;
  background-position: center top;
}
.why2-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 52px 26px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}

/* ── Image back face ── */
.why2-back--dark h3 {
  font-size: 22px;
  font-weight: 700;
  color: #f5f3ee;
  line-height: 1.25;
  margin-bottom: 14px;
}
.why2-back--dark p {
  font-size: 17px;
  color: rgba(245,243,238,0.75);
  line-height: 1.65;
}

/* ── Phrase front face ── */
.why2-face--front.why2-phrase--purple,
.why2-face--front.why2-phrase--orange {
  display: flex;
  align-items: flex-start;
  padding: 34px 32px;
}
.why2-phrase-text {
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

/* ── Info front face ── */
.why2-face--front.why2-back--light {
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.why2-stat {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.why2-face--front.why2-back--light h3 {
  font-size: 20px;
  font-weight: 700;
  color: #161616;
  margin-bottom: 8px;
  line-height: 1.25;
}
.why2-face--front.why2-back--light p {
  font-size: 16px;
  color: rgba(22,22,22,0.68);
  line-height: 1.6;
}

/* ── Back body text (shared) ── */
.why2-back-body {
  font-size: 17px;
  line-height: 1.65;
}
.why2-phrase--purple .why2-back-body,
.why2-phrase--orange .why2-back-body {
  color: rgba(255,255,255,0.9);
}
.why2-back--light .why2-back-body {
  color: rgba(22,22,22,0.72);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .why2-grid { flex-wrap: wrap; }
  .why2-col { flex: 0 0 calc(50% - 11px); }
  .why2-col:last-child { flex: 1 1 100%; flex-direction: row; gap: 22px; }
  .why2-col:last-child .why2-card { flex: 1; }
}
@media (max-width: 640px) {
  .why2-section { padding: 64px 0; }
  /* Reduce card border-radius on mobile */
  .why2-card { border-radius: 12px; }

  /* 3-column grid: all cards fill the full column height */
  .why2-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    min-height: 520px;
    align-items: stretch;
  }
  .why2-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
  }
  /* Override the 900px last-child row rule */
  .why2-col:last-child { flex: 1; flex-direction: column; gap: 8px; }

  /* Cards fill their column using the same proportional ratios as desktop */
  .why2-col:nth-child(1) .why2-card:nth-child(1) { flex: 55; }
  .why2-col:nth-child(1) .why2-card:nth-child(2) { flex: 45; }
  .why2-col:nth-child(2) .why2-card:nth-child(1) { flex: 30; }
  .why2-col:nth-child(2) .why2-card:nth-child(2) { flex: 70; }
  .why2-col:nth-child(3) .why2-card:nth-child(1) { flex: 45; }
  .why2-col:nth-child(3) .why2-card:nth-child(2) { flex: 55; }

  /* Image cards: fill their flex height, keep faces absolutely positioned */
  .why2-card--image { display: block; }
  .why2-card--image .why2-card-inner { height: 100%; transform: none !important; transform-style: flat; }
  .why2-card--image .why2-face--back { display: none; }
  .why2-img-label { font-size: 10px; padding: 28px 10px 10px; }

  /* Phrase + info cards: disable flip, inner fills height */
  .why2-card--phrase,
  .why2-card--info { perspective: none; }
  .why2-card--phrase .why2-card-inner,
  .why2-card--info   .why2-card-inner { transform: none !important; transform-style: flat; height: 100%; }
  .why2-card--phrase .why2-face,
  .why2-card--info   .why2-face { position: absolute; inset: 0; transform: none !important;
                                   backface-visibility: visible; -webkit-backface-visibility: visible; }
  .why2-card--phrase .why2-face--back,
  .why2-card--info   .why2-face--back { display: none; }

  /* Scale down typography for narrow columns */
  .why2-face--front.why2-phrase--purple,
  .why2-face--front.why2-phrase--orange { padding: 14px 10px; }
  .why2-phrase-text { font-size: 15px; letter-spacing: -0.02em; }

  .why2-face--front.why2-back--light { padding: 12px 10px; }
  .why2-stat { font-size: 24px; margin-bottom: 4px; }
  .why2-face--front.why2-back--light h3 { font-size: 12px; margin-bottom: 3px; }
  .why2-face--front.why2-back--light p { font-size: 11px; line-height: 1.4; }
}


/* ══════════════════════════════════════════════════════════════
   NEWS / BLOG — archive + article pages
   ══════════════════════════════════════════════════════════════ */

/* Shared light-page overrides */
.news-page,
.article-page {
  background: #fff;
  color: #1a1a2e;
}
.news-page .nav,
.article-page .nav {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.news-page .footer,
.article-page .footer {
  margin-top: 0;
}

/* ── Category tags ───────────────────────────────────────────── */
.news-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.tag-purple { background: rgba(106,95,211,0.1); color: #6a5fd3; }
.tag-green  { background: rgba(30,168,119,0.1); color: #1a8a60; }
.tag-coral  { background: rgba(237,91,62,0.1);  color: #c94c30; }

/* ── News archive hero ───────────────────────────────────────── */
.news-hero {
  background: #fff;
  padding: 48px 0 28px;
  border-bottom: 1px solid #efefef;
}
.news-hero h1 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}

/* ── News grid ───────────────────────────────────────────────── */
.news-section {
  background: #fafafa;
  padding: 36px 0 96px;
}

/* Featured article */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 56px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
  margin-bottom: 36px;
}
.news-featured:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.09); }
.news-featured-img {
  background: #f0eefb;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9d97d4;
  font-size: 13px;
  font-weight: 600;
}
.news-featured-img span {
  text-align: center;
  padding: 24px;
  line-height: 1.5;
}
.news-featured-body { padding: 48px 48px 48px 0; }
.news-featured-body h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.news-featured-body p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 24px;
}
.news-featured-meta {
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

/* Card grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.news-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.news-card-img {
  background: #f4f3fb;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9d97d4;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.news-card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.news-card-meta { font-size: 11px; color: #aaa; font-weight: 500; }

@media (max-width: 900px) {
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-img { aspect-ratio: 16/7; }
  .news-featured-body { padding: 32px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ── Article page ────────────────────────────────────────────── */
.article-header {
  padding: 100px 0 56px;
  background: #fff;
  border-bottom: 1px solid #efefef;
}
.article-header .news-tag { margin-bottom: 20px; }
.article-title {
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 820px;
  margin-bottom: 24px;
}
.article-deck {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 32px;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #888;
}
.article-byline strong { color: #1a1a2e; font-weight: 600; }
.article-byline-dot { opacity: 0.4; }

/* Hero image placeholder */
.article-hero-img {
  width: 100%;
  aspect-ratio: 16/6;
  max-height: 600px;
  background: #f0eefb;
  overflow: hidden;
  position: relative;
}
.article-hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Body */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: start;
  padding: 72px 0 96px;
}
.article-body {
  max-width: 100%;
  min-width: 0;
}
.article-body h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 48px 0 16px;
}
.article-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 32px 0 12px;
}
.article-body p {
  font-size: 18px;
  line-height: 1.78;
  color: #333;
  margin-bottom: 22px;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 22px;
}
.article-body li {
  font-size: 18px;
  line-height: 1.78;
  color: #333;
  margin-bottom: 8px;
}
.article-body strong { color: #1a1a2e; }
.article-body hr {
  border: none;
  border-top: 1px solid #efefef;
  margin: 48px 0;
}
.article-body a { color: #6a5fd3; text-decoration: underline; text-underline-offset: 3px; }

/* Inline image placeholder */
.article-img-placeholder {
  width: 100%;
  aspect-ratio: 16/8;
  background: #f4f3fb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9d97d4;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 24px;
  line-height: 1.5;
  margin: 40px 0;
}

/* Pull quote */
.article-pullquote {
  border-left: 4px solid #6a5fd3;
  padding: 20px 28px;
  margin: 40px 0;
  background: #f8f7fe;
  border-radius: 0 12px 12px 0;
}
.article-pullquote p {
  font-size: 21px !important;
  font-weight: 700;
  color: #1a1a2e !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  font-style: italic;
}

/* Stat callout */
.article-stat {
  background: #1a1a2e;
  color: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
  margin: 40px 0;
}
.article-stat-num {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}
.article-stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}

/* Checklist */
.article-checklist {
  background: #f8f7fe;
  border-radius: 16px;
  padding: 32px 36px;
  margin: 40px 0;
}
.article-checklist h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}
.article-checklist ul { padding: 0; list-style: none; margin: 0; }
.article-checklist li {
  font-size: 16px !important;
  color: #333;
  padding: 8px 0;
  border-bottom: 1px solid rgba(106,95,211,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-checklist li:last-child { border-bottom: none; }
.article-checklist li::before {
  content: '✓';
  color: #1ea877;
  font-weight: 800;
  flex-shrink: 0;
}

/* FAQ */
.article-faq { margin-top: 64px; }
.article-faq h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 32px;
}
.article-faq-item {
  padding: 24px 0;
  border-top: 1px solid #efefef;
}
.article-faq-item:last-child { border-bottom: 1px solid #efefef; }
.article-faq-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.4;
}
.article-faq-item p {
  font-size: 16px !important;
  color: #555;
  margin: 0 !important;
}

/* Sidebar */
.article-sidebar { position: sticky; top: 100px; }
.sidebar-cta {
  background: #1a1a2e;
  border-radius: 16px;
  padding: 32px;
  color: #fff;
  margin-bottom: 28px;
}
.sidebar-cta h4 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.sidebar-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}
.sidebar-related h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  margin-bottom: 16px;
}
.sidebar-related-link {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #efefef;
  line-height: 1.4;
}
.sidebar-related-link:last-child { border-bottom: none; }
.sidebar-related-link:hover { color: #6a5fd3; }

/* Article CTA banner */
.article-cta-banner {
  background: linear-gradient(135deg, #2d2580 0%, #1a1a2e 60%, #3a1a28 100%);
  border-radius: 20px;
  padding: 56px;
  text-align: center;
  margin: 64px 0 0;
}
.article-cta-banner h3 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.article-cta-banner p {
  font-size: 17px !important;
  color: rgba(255,255,255,0.65) !important;
  margin-bottom: 28px !important;
}
.article-cta-banner a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; gap: 48px; }
  .article-sidebar { position: static; }
}
@media (max-width: 600px) {
  .article-header { padding: 80px 0 40px; }
  .article-cta-banner { padding: 36px 24px; }
}
