﻿/* ===== Vantage Systems - Base ===== */
:root {
  --navy: #101E33;
  --navy-light: #1B2E4C;
  --steel: #3E7CB1;
  --amber: #F2A93B;
  --amber-dim: rgba(242, 169, 59, 0.35);
  --bg: #F4F6F8;
  --white: #FFFFFF;
  --ink: #14181F;
  --ink-soft: #4A5568;
  --border: #E1E6EB;
  --radius-pill: 999px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 20px rgba(16, 30, 51, 0.06);
  --shadow-card-hover: 0 8px 28px rgba(16, 30, 51, 0.1);
  --max-w: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

@media (max-width: 720px) {
  section { padding: 56px 0; }
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 12px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.2s ease;
  white-space: nowrap;
}

/* Primary: pill + amber glow - reserved for the buttons that are the actual ask */
.btn-primary {
  background: var(--amber);
  color: var(--navy);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 0 0 var(--amber-dim), 0 6px 24px -6px rgba(242, 169, 59, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 8px var(--amber-dim), 0 10px 32px -6px rgba(242, 169, 59, 0.7);
}

.btn-primary.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* Secondary: rounded, quiet, no glow */
.btn-secondary {
  background: transparent;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover { border-color: var(--steel); color: var(--steel); }

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 246, 248, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}
.logo span { color: var(--steel); }
.logo-icon { height: 30px; width: 30px; display: block; margin-right: 9px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--steel); }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    flex-shrink: 0;
  }
}

@media (max-width: 400px) {
  .logo { font-size: 1.05rem; }
}

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 8px;
  display: none;
  flex-direction: column;
  min-width: 220px;
  z-index: 60;
}

/* Invisible bridge so the mouse can travel from the trigger to the menu
   through the gap above without the hover state dropping in between. */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown-menu a { padding: 10px 12px; border-radius: 8px; font-size: 0.92rem; white-space: nowrap; }
.nav-dropdown-menu a:hover { background: var(--bg); color: var(--steel); }

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }

@media (max-width: 860px) {
  .nav-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 16px;
    min-width: 0;
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; }
  .nav-dropdown-menu a { padding: 6px 0; }
}

/* ===== Hero ===== */
.hero { padding: 72px 0 60px; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  background: var(--amber);
  color: var(--navy);
  padding: 2px 14px;
  border-radius: 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero .lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 32px;
}

.hero-bullets { list-style: none; margin-bottom: 28px; }
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.02rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.hero-bullets li::before {
  content: '✓';
  color: var(--steel);
  font-weight: 700;
  flex-shrink: 0;
}

.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.hero-reassure { font-size: 0.85rem; color: var(--ink-soft); margin-top: 14px; }

/* Hero visual: before/after review mock */
.hero-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-card-hover);
}

.review-compare { display: flex; flex-direction: column; gap: 16px; }

.review-card {
  background: var(--navy-light);
  border-radius: var(--radius-md);
  padding: 20px;
  color: var(--white);
}

.review-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8FA3BE;
  margin-bottom: 10px;
}

.stars { letter-spacing: 2px; font-size: 1.1rem; }
.stars.dim, .stars .dim { color: #3A4A63; }
.stars.lit, .stars .lit { color: var(--amber); }

.review-count { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; font-size: 1.6rem; margin-top: 6px; }

.arrow-down {
  align-self: center;
  color: var(--amber);
  font-size: 1.4rem;
}

.text-bubble {
  background: var(--steel);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.9rem;
  max-width: 85%;
  align-self: flex-end;
  margin-top: 4px;
}

.sent-badge {
  align-self: flex-end;
  background: rgba(127, 215, 154, 0.15);
  color: #7FD79A;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-top: 8px;
}

/* ===== Stat band ===== */
.stat-band {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: -20px;
}

.stat-band .stat-num {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--steel);
  line-height: 1;
}

.stat-band .stat-copy p:first-child { font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.stat-band .stat-copy .cite { font-size: 0.78rem; color: var(--ink-soft); }
.stat-band .stat-copy .cite a { color: var(--steel); }
.stat-band .cite a:hover { text-decoration: underline; }

/* ===== Problem ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.problem-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.tag-bad { background: #FDECEC; color: #C0392B; }
.tag-good { background: #EAF3EC; color: #2E7D4F; }

.problem-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.problem-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ===== How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  counter-reset: step;
}

@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: var(--amber);
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* ===== Why Reviews Matter (benefit grid) ===== */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 980px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.benefit-card .benefit-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.benefit-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.benefit-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* ===== What you get ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover { box-shadow: var(--shadow-card-hover); border-color: var(--amber-dim); }

.feature-card { position: relative; }
.feature-card.headline { border-color: var(--amber); }
.feature-card.bonus { border-color: var(--steel); }

.feature-card .badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--amber);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature-card .badge.badge-bonus { background: var(--steel); color: var(--white); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--ink-soft); font-size: 0.96rem; }

.feature-card ul { list-style: none; margin-top: 6px; }
.feature-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
.feature-card ul li::before { content: '→'; color: var(--steel); flex-shrink: 0; font-weight: 700; }

.feature-split { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.feature-split .sample-review-card { justify-self: center; }

@media (max-width: 700px) {
  .feature-split { grid-template-columns: 1fr; }
  .feature-split .sample-review-card { justify-self: stretch; max-width: 100%; margin-top: 8px; }
}

/* ===== Tiers ===== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }

.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.tier-card .who { font-size: 0.9rem; color: var(--ink-soft); font-style: italic; margin-bottom: 16px; }
.tier-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.tier-card .range { font-size: 0.88rem; color: var(--steel); font-weight: 600; }

/* ===== Pricing / Offer stack ===== */
.pricing-wrap {
  background: var(--navy);
  border-radius: 28px;
  padding: 56px 40px;
  color: var(--white);
}

@media (max-width: 720px) { .pricing-wrap { padding: 40px 22px; } }

.pricing-wrap .section-head h2,
.pricing-wrap .section-head p { color: var(--white); }
.pricing-wrap .section-head p { color: #B7C4D6; }

.stack-list {
  max-width: 640px;
  margin: 0 auto 40px;
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 8px;
}

.stack-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
}

.stack-row:last-child { border-bottom: none; }

.stack-row .name { font-weight: 600; font-size: 0.98rem; }
.stack-row .desc { font-size: 0.85rem; color: #93A4BD; margin-top: 3px; }
.stack-row .value { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; font-weight: 700; color: var(--amber); white-space: nowrap; }
.stack-row .value.priceless { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }

.stack-total {
  text-align: center;
  margin-bottom: 8px;
}

.stack-total .crossed {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 1.6rem;
  color: #7C8CA8;
  text-decoration: line-through;
  text-decoration-color: #C0392B;
  text-decoration-thickness: 2px;
}

.stack-total .label { font-size: 0.85rem; color: #93A4BD; margin-top: 4px; }

.price-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 900px) { .price-tiers { grid-template-columns: 1fr; } }

.price-card {
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
}

.price-card.popular {
  background: linear-gradient(180deg, #1E3454 0%, var(--navy-light) 100%);
  border-color: var(--amber);
  box-shadow: 0 0 0 6px var(--amber-dim), 0 10px 30px -6px rgba(242,169,59,0.4);
  transform: scale(1.04);
}

@media (max-width: 900px) { .price-card.popular { transform: none; } }

.price-card .popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.price-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.price-card .amount { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; font-size: 2.2rem; color: var(--amber); margin: 12px 0 2px; }
.price-card .amount span { font-size: 0.95rem; color: #93A4BD; font-family: 'Inter', sans-serif; }
.price-card .req { font-size: 0.85rem; color: #93A4BD; margin-bottom: 22px; }

.guarantee-bar {
  max-width: 560px;
  margin: 48px auto 0;
  text-align: center;
  padding: 24px;
  border: 1.5px dashed rgba(242,169,59,0.5);
  border-radius: var(--radius-lg);
}

.guarantee-bar strong { color: var(--amber); display: block; font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; font-size: 1.05rem; margin-bottom: 6px; }
.guarantee-bar p { color: #B7C4D6; font-size: 0.92rem; }

.pricing-cta { text-align: center; margin-top: 36px; }

/* ===== Founder / founding-client ===== */
.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}

@media (max-width: 800px) { .founder-grid { grid-template-columns: 1fr; } }

.founder-photo {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy), var(--steel));
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 85%;
  display: block;
}

.founder-copy p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.02rem; }
.founder-copy .name { color: var(--navy); font-weight: 700; font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; margin-top: 20px; }
.founder-copy .role { color: var(--steel); font-size: 0.9rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 40px auto 0; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}

.faq-q .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
  font-size: 1rem;
  color: var(--steel);
}

.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--amber); color: var(--navy); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 24px 20px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* ===== Final CTA ===== */
.final-cta {
  text-align: center;
  background: var(--navy);
  border-radius: 28px;
  padding: 64px 32px;
  color: var(--white);
}

.final-cta h2 { color: var(--white); font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 16px; }
.final-cta p.lede { color: #B7C4D6; max-width: 46ch; margin: 0 auto 32px; }
.final-cta .hero-reassure { color: #93A4BD; }

/* ===== Footer ===== */
footer { background: var(--navy); color: #B7C4D6; padding: 48px 0 28px; margin-top: -1px; }

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { color: var(--white); }
.footer-brand .logo span { color: var(--steel); }
.footer-brand p { margin-top: 10px; font-size: 0.9rem; max-width: 32ch; }

.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-links h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-links a:hover { color: var(--amber); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #6B7D99;
}

/* ===== Reveal-on-scroll (progressive enhancement only - content is visible by default) ===== */
.reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.js-reveal-active .reveal { opacity: 0; transform: translateY(18px); }
.js-reveal-active .reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Multi-stat band ===== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -20px;
}

@media (max-width: 820px) { .stat-grid { grid-template-columns: 1fr; } }

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-card);
}

.stat-card .stat-num {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 800;
  color: var(--steel);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.stat-card:nth-child(2) .stat-num { color: var(--amber); }
.stat-card:nth-child(3) .stat-num { color: var(--navy); }

.stat-card p:nth-of-type(1) { font-weight: 600; color: var(--navy); margin-bottom: 6px; font-size: 0.98rem; }
.stat-card .cite { font-size: 0.76rem; color: var(--ink-soft); }
.stat-card .cite a { color: var(--steel); }
.stat-card .cite a:hover { text-decoration: underline; }

/* ===== Sample review card (illustrative graphic, not a real testimonial) ===== */
.sample-review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-hover);
  padding: 22px 24px;
  max-width: 320px;
}

.sample-review-card .swatch-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.sample-review-card .g-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.sample-review-card .g-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: conic-gradient(from 0deg, #4285F4 0deg 90deg, #34A853 90deg 180deg, #FBBC05 180deg 270deg, #EA4335 270deg 360deg);
  flex-shrink: 0;
}
.sample-review-card .stars.lit { font-size: 1rem; }
.sample-review-card p.quote { font-size: 0.92rem; color: var(--ink-soft); font-style: italic; }
.sample-review-card .who { font-size: 0.82rem; color: var(--navy); font-weight: 600; margin-top: 10px; }

/* ===== Review-growth bar chart (clearer than a sparkline) ===== */
.trend-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  color: var(--white);
}
.trend-card .trend-label { font-size: 0.85rem; color: #B7C4D6; margin-bottom: 20px; text-align: center; }
.trend-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 22px;
}
.trend-bar { display: flex; flex-direction: column; align-items: center; width: 56px; }
.trend-bar .bar-count {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.trend-bar .bar-track {
  height: 90px;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.trend-bar .bar-fill {
  width: 100%;
  background: var(--steel);
  border-radius: 6px 6px 0 0;
}
.trend-bar:last-child .bar-fill { background: var(--amber); }
.trend-bar .bar-label { font-size: 0.72rem; color: #93A4BD; margin-top: 8px; }

/* ===== Every home service supported ===== */
.trades-section {
  position: relative;
  background: var(--navy);
  border-radius: 28px;
  padding: 72px 32px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.trades-section .section-head h2,
.trades-section .section-head p { color: var(--white); }
.trades-section .section-head p { color: #B7C4D6; }

.trades-bg-device {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  opacity: 0.16;
  filter: blur(0.5px);
  pointer-events: none;
}

.trades-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.trade-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
}

.trade-chip .dot {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.trade-chip.c-amber .dot { background: var(--amber); }
.trade-chip.c-steel .dot { background: var(--steel); }
.trade-chip.c-green .dot { background: #3C8A5C; }

/* ===== Big trade tiles (way bigger, take up real space) ===== */
.trades-grid-big {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.trade-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 12px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
}

.trade-tile .icon {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  flex-shrink: 0;
}

.trade-tile.c-amber .icon { background: var(--amber); }
.trade-tile.c-steel .icon { background: var(--steel); }
.trade-tile.c-green .icon { background: #3C8A5C; }

.trade-tile .icon svg { width: 44px; height: 44px; }

.trade-tile .label { font-weight: 700; font-size: 1.02rem; text-align: center; }

/* ===== Explicit 6-column layout for the homepage trades teaser ===== */
.trades-grid-teaser { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 900px) { .trades-grid-teaser { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .trades-grid-teaser { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 640px) {
  .trades-grid-big {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 12px;
    padding: 4px 4px 12px;
    margin: 0 -4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .trades-grid-big .trade-tile {
    flex: 0 0 92px;
    padding: 16px 6px;
    gap: 10px;
    scroll-snap-align: start;
  }
  .trades-grid-big .trade-tile .icon { width: 52px; height: 52px; font-size: 1.5rem; border-radius: 14px; }
  .trades-grid-big .trade-tile .icon svg { width: 26px; height: 26px; }
  .trades-grid-big .trade-tile .label { font-size: 0.8rem; }
}

/* ===== Pricing toggle ===== */
.billing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 36px; }

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--navy-light);
  padding: 8px;
  border-radius: var(--radius-pill);
}

.billing-toggle span { font-size: 0.9rem; color: #93A4BD; padding: 0 10px; font-weight: 600; }
.billing-toggle span.active { color: var(--navy); background: var(--white); padding: 8px 16px; border-radius: var(--radius-pill); }

.toggle-switch {
  width: 46px;
  height: 26px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.15);
  position: relative;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--amber);
  transition: transform 0.2s ease;
}
.toggle-switch.on::after { transform: translateX(20px); }

.billing-toggle .save-tag {
  display: inline-block;
  margin-left: 8px;
  background: #2E8B57;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.price-card .amount .strike { font-size: 1.1rem; color: #6B7D99; text-decoration: line-through; margin-right: 6px; font-family: 'Inter', sans-serif; }
.price-card .req { margin-bottom: 22px; }

/* ===== Included-in-every-plan banner ===== */
.included-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(127, 215, 154, 0.12);
  border: 1px solid rgba(127, 215, 154, 0.35);
  color: #7FD79A;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  max-width: 560px;
  margin: 0 auto 28px;
  text-align: center;
}

/* ===== Timezone select ===== */
.tz-select {
  margin-bottom: 20px;
}
.tz-select select,
.time-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: var(--navy);
  background: var(--white);
}

.time-select:disabled { color: var(--ink-soft); }

/* ===== V-shape decorative background ===== */
.v-bg {
  position: relative;
  overflow: hidden;
}
.v-bg::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  width: 140%;
  height: 120%;
  transform: translateX(-50%);
  background:
    linear-gradient(115deg, transparent 48%, rgba(62,124,177,0.10) 49%, rgba(62,124,177,0.14) 51%, transparent 52%),
    linear-gradient(65deg, transparent 48%, rgba(242,169,59,0.08) 49%, rgba(242,169,59,0.12) 51%, transparent 52%);
  pointer-events: none;
  z-index: 0;
}
.v-bg > .container { position: relative; z-index: 1; }

/* ===== Stack total (price-anchor emphasis) ===== */
.stack-total-big {
  text-align: center;
  margin: 8px auto 40px;
  max-width: 480px;
}

.stack-total-big .add-up { font-size: 0.85rem; color: #93A4BD; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }

.stack-total-big .crossed-big {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  color: var(--white);
  text-decoration: line-through;
  text-decoration-color: #E24C4C;
  text-decoration-thickness: 3px;
  line-height: 1;
}

.stack-total-big .then-arrow { color: var(--amber); font-size: 1.4rem; margin: 10px 0; }

.stack-total-big .today-price {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--amber);
}
.stack-total-big .today-price span { font-size: 0.9rem; color: #B7C4D6; font-family: 'Inter', sans-serif; }

/* ===== Booking calendar ===== */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 36px;
}

@media (max-width: 820px) { .booking-wrap { grid-template-columns: 1fr; } }

.date-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.date-chip {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  padding: 12px 6px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 0.85rem;
}
.date-chip .dow { color: var(--ink-soft); font-size: 0.72rem; text-transform: uppercase; margin-bottom: 4px; }
.date-chip .dnum { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); }
.date-chip.selected { border-color: var(--amber); background: #FFF7EA; box-shadow: 0 0 0 3px var(--amber-dim); }

.booking-step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.booking-step-label:not(:first-child) { margin-top: 28px; }
.booking-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; margin-top: 14px; }
.booking-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.booking-form input:focus { outline: none; border-color: var(--steel); }

.booking-summary {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 18px;
}
.booking-summary strong { color: var(--navy); }

/* ===== Included tag (genuinely free, no dollar value) ===== */
.value.included { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: #7FD79A; }

/* ===== FAQ category headers ===== */
.faq-category { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; font-size: 1.2rem; color: var(--navy); margin: 40px 0 16px; }
.faq-category:first-child { margin-top: 0; }

/* ===== Blog ===== */
.blog-hero { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); margin-bottom: 36px; display: block; }
.blog-post { max-width: 720px; margin: 0 auto; padding-bottom: 40px; }
.blog-post h2 { font-size: 1.3rem; margin: 32px 0 12px; }
.blog-post h2:first-child { margin-top: 0; }
.blog-post p { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 4px; }
.blog-post a { color: var(--steel); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.blog-card:hover { box-shadow: var(--shadow-card-hover); border-color: var(--amber-dim); transform: translateY(-2px); }

.blog-grid-index .blog-card { background: var(--bg); }

.blog-date { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--steel); }
.blog-card h3 { font-size: 1.1rem; margin: 10px 0 8px; }
.blog-card p { color: var(--ink-soft); font-size: 0.92rem; }
.blog-read-more { display: inline-block; margin-top: 14px; font-size: 0.88rem; font-weight: 600; color: var(--amber); }
