/* ========================================
   HOMEPAGE STYLES
   tokens.css provides design tokens, reset & base typography
   ======================================== */

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-sm);
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-xl) 0;
}

@media (min-width: 768px) {
  section { padding: var(--space-2xl) 0; }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-mark::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  background: var(--green);
  top: 10px;
  left: 8px;
  border-radius: 1px;
}

.logo-mark::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: rgba(255,255,255,0.4);
  top: 16px;
  left: 8px;
  border-radius: 1px;
}

.logo-mark-line3 {
  position: absolute;
  width: 13px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  top: 22px;
  left: 8px;
  border-radius: 1px;
}

nav {
  display: none;
  gap: var(--space-md);
}

nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

nav a:hover { color: var(--text); }

.header-cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  transition: background 0.2s;
}

.header-cta:hover { background: var(--navy-light); }

@media (min-width: 768px) {
  nav { display: flex; }
}

/* Mobile menu */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}

.mobile-nav-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px var(--green-glow), 0 1px 2px rgba(0,0,0,0.06);
}

.btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--green-glow), 0 2px 4px rgba(0,0,0,0.08);
}

.btn-primary:active { transform: translateY(0); }

.btn-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}

.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--off-white);
}

/* ========================================
   CRM FORM EMBED (LeadConnector)
   ======================================== */
.crm-form-wrap {
  max-width: 480px;
  height: 249px;
  position: relative;
}
/* Loading placeholder — visible until iframe renders */
.crm-form-wrap::before {
  content: "Loading sign-up form\2026";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted, #8a94a6);
  letter-spacing: 0.02em;
  opacity: 0.6;
  pointer-events: none;
}
/* Once iframe loads, it covers the placeholder */
.crm-form-wrap iframe {
  position: relative;
  z-index: 1;
}
/* Light placeholder text on dark section backgrounds */
.final-cta .crm-form-wrap::before {
  color: rgba(255,255,255,0.35);
}

/* ========================================
   HERO EMAIL FORM (native overlay)
   ======================================== */
.hero-email-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 520px;
  margin: -12px 0 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 35, 50, 0.08), 0 1px 3px rgba(0,0,0,0.06);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.hero-email-form:focus-within {
  border-color: var(--green);
  box-shadow: 0 2px 16px var(--green-glow), 0 2px 6px rgba(0,0,0,0.06);
}

.hero-email-form input[type="email"] {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  padding: 0.95rem 1.25rem;
  line-height: 1.4;
}

.hero-email-form input[type="email"]::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.hero-email-form button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  padding: 0.95rem 1.5rem;
  transition: background 0.2s;
  flex-shrink: 0;
}

.hero-email-form button:hover {
  background: var(--green-hover);
}

.hero-email-form button:active {
  background: #116932;
}

.hero-email-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.hero-email-form button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.hero-email-form button:hover svg {
  transform: translateX(2px);
}

/* Success state */
.hero-email-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.25rem;
  margin: -12px 0 12px;
  background: rgba(22, 163, 74, 0.06);
  border: 1.5px solid rgba(22, 163, 74, 0.25);
  border-radius: var(--radius-lg);
  max-width: 520px;
  animation: fadeInUp 0.4s ease;
}

.hero-email-success svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

.hero-email-success span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

/* Error state */
.hero-email-error {
  font-size: 0.8rem;
  color: var(--red);
  margin-top: 0.4rem;
  animation: fadeInUp 0.3s ease;
}

/* Hidden CRM iframe (keeps CRM integration alive) */
.crm-form-wrap--hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Hero CRM form — clip iframe to remove whitespace and blend with site */

@media (max-width: 480px) {
  .hero-email-form {
    flex-direction: column;
    border-radius: var(--radius);
  }
  .hero-email-form input[type="email"] {
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 1rem;
  }
  .hero-email-form button {
    justify-content: center;
    padding: 0.85rem 1rem;
  }
}

/* ========================================
   WAITLIST EMAIL FORM (reusable)
   ======================================== */
.waitlist-email-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 35, 50, 0.08), 0 1px 3px rgba(0,0,0,0.06);
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.waitlist-email-form:focus-within {
  border-color: var(--green);
  box-shadow: 0 2px 16px var(--green-glow), 0 2px 6px rgba(0,0,0,0.06);
}

.waitlist-email-form input[type="email"] {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  padding: 0.95rem 1.25rem;
  line-height: 1.4;
}

.waitlist-email-form input[type="email"]::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.waitlist-email-form button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  padding: 0.95rem 1.5rem;
  transition: background 0.2s;
  flex-shrink: 0;
}

.waitlist-email-form button:hover {
  background: var(--green-hover);
}

.waitlist-email-form button:active {
  background: #116932;
}

/* Dark variant (final CTA section) */
.waitlist-email-form--dark {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}

.waitlist-email-form--dark:focus-within {
  border-color: var(--green);
}

/* Success state */
.waitlist-email-success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.25rem;
  margin: 0 auto;
  background: rgba(22, 163, 74, 0.06);
  border: 1.5px solid rgba(22, 163, 74, 0.25);
  border-radius: var(--radius-lg);
  max-width: 520px;
  animation: fadeInUp 0.4s ease;
}

.waitlist-email-success p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
}

.waitlist-success--dark {
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.35);
}

.waitlist-success--dark p {
  color: var(--green);
}

@media (max-width: 480px) {
  .waitlist-email-form {
    flex-direction: column;
    border-radius: var(--radius);
  }
  .waitlist-email-form input[type="email"] {
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 1rem;
  }
  .waitlist-email-form button {
    justify-content: center;
    padding: 0.85rem 1rem;
  }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Inline waitlist link (replaces ghost CTAs) */
.waitlist-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--green);
  transition: gap 0.2s;
}

.waitlist-link:hover { gap: 0.75rem; }

.waitlist-link svg {
  width: 16px;
  height: 16px;
}

/* Price strikethrough */
.price-future {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: var(--space-2xl);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(22, 163, 74, 0.04), transparent),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(26, 35, 50, 0.03), transparent);
  pointer-events: none;
}

/* Ledger lines background */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 39px,
    rgba(26, 35, 50, 0.03) 39px,
    rgba(26, 35, 50, 0.03) 40px
  );
  pointer-events: none;
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.beta-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  margin-bottom: var(--space-md);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.hero h1 .hero-dollar {
  color: var(--red);
  position: relative;
}

.hero h1 .hero-dollar::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 2px;
  height: 6px;
  background: var(--red-soft);
  border-radius: 2px;
  z-index: -1;
}

.hero-sub-headline {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero-sub-headline strong {
  color: var(--text);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-subtext {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-subtext span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-subtext span::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  background: var(--green-glow);
  flex-shrink: 0;
  position: relative;
}

.hero-quote-inline {
  margin-top: var(--space-lg);
  padding-left: 1rem;
  border-left: 2px solid var(--amber);
}

.hero-quote-inline p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-quote-inline cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.4rem;
  letter-spacing: 0.02em;
}

/* Hero visual — mock audit card */
.hero-visual {
  position: relative;
}

@media (max-width: 959px) {
  .hero-visual { max-width: 480px; }
}

.audit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(26, 35, 50, 0.08), 0 2px 8px rgba(26, 35, 50, 0.04);
  overflow: visible;
  position: relative;
}

.audit-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.audit-card-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.audit-card-title .dot-live {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.audit-card-badge {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  background: var(--green-glow);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.audit-card-body {
  padding: 1.25rem;
}

.audit-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.audit-stat {
  padding: 0.75rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--warm-gray);
}

.audit-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.audit-stat-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}

.audit-stat-value.alert {
  color: var(--red);
}

.audit-stat-value.ok {
  color: var(--green);
}

.audit-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0 1rem;
}

.audit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  font-size: 0.85rem;
}

.audit-row + .audit-row {
  border-top: 1px solid var(--warm-gray);
}

.audit-row-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.audit-row-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audit-row-icon.warn {
  background: var(--red-soft);
  color: var(--red);
}

.audit-row-icon.ok {
  background: var(--green-glow);
  color: var(--green);
}

.audit-row-icon svg {
  width: 11px;
  height: 11px;
}

.audit-row-value {
  font-weight: 600;
  color: var(--navy);
}

.audit-row-value.alert {
  color: var(--red);
}

/* Floating badge on the card */
.audit-float-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
  animation: badge-bounce 3s ease-in-out infinite;
}

@keyframes badge-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Animated counter */
@keyframes countUp {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-dollar-amount {
  display: inline-block;
  animation: countUp 0.6s ease-out 0.3s both;
}

.check-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ========================================
   PROBLEM
   ======================================== */
.problem {
  background: var(--white);
  position: relative;
}

.problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.problem-header {
  max-width: 700px;
  margin-bottom: var(--space-lg);
}

.problem-header h2 {
  margin-bottom: var(--space-sm);
}

.problem-header h2 .problem-highlight {
  color: var(--red);
}

.problem-header > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* --- Money-flow pipeline --- */
.money-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-xl);
  padding: var(--space-md) var(--space-sm);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pipeline-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 64px;
  text-align: center;
}

.pipeline-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pipeline-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
  line-height: 1.2;
  min-height: 2.4em;
}

.pipeline-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  min-width: 44px;
  position: relative;
}

.pipeline-arrow .arrow-line {
  width: 32px;
  height: 2px;
  background: var(--border);
  position: relative;
}

.pipeline-arrow .arrow-line::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -3px;
  border: 4px solid transparent;
  border-left-color: var(--border);
}

.pipeline-arrow.has-leak .arrow-line {
  background: var(--red);
}

.pipeline-arrow.has-leak .arrow-line::after {
  border-left-color: var(--red);
}

.pipeline-arrow .leak-label {
  position: absolute;
  top: -1.1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .money-pipeline { padding: var(--space-lg) var(--space-md); }
  .pipeline-stage { min-width: 80px; }
  .pipeline-icon { width: 52px; height: 52px; font-size: 1.25rem; }
  .pipeline-label { font-size: 0.75rem; }
  .pipeline-arrow { padding: 0 0.5rem; }
  .pipeline-arrow .arrow-line { width: 44px; }
}

/* --- Quote cards --- */
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
  .quotes-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .quotes-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.quote-card {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quote-card:nth-child(even) {
  border-left-color: var(--red);
}

.quote-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 35, 50, 0.08);
}

.quote-card .quote-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.quote-card .quote-text .quote-amount {
  font-style: normal;
  font-weight: 700;
  color: var(--red);
}

.quote-card .quote-source {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quote-card .quote-source::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--text-muted);
}

/* --- Problem stats row --- */
.problem-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 640px) {
  .problem-stats { grid-template-columns: 1fr 1fr 1fr; }
}

.problem-stat {
  text-align: center;
  padding: var(--space-sm) var(--space-md);
}

.problem-stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.problem-stat .stat-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 220px;
  margin: 0 auto;
}

/* --- Verdict box --- */
.problem-verdict {
  margin-top: var(--space-xl);
  background: var(--navy);
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.problem-verdict::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--red));
}

/* Frustration cycle */
.verdict-cycle {
  padding: var(--space-lg) var(--space-lg) var(--space-md);
}

.verdict-cycle-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.verdict-cycle-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--navy-muted);
}

.verdict-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.35rem;
  line-height: 1.8;
}

.verdict-step {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}

.verdict-step .step-text {
  background: var(--navy-light);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.verdict-arrow {
  color: var(--navy-faint);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.verdict-step-repeat {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--amber);
  background: rgba(217, 119, 6, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

.verdict-step-repeat svg {
  width: 14px;
  height: 14px;
}

/* Divider */
.verdict-divider {
  height: 1px;
  background: var(--navy-muted);
  margin: 0 var(--space-lg);
}

/* Verdict statement */
.verdict-statement {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .verdict-statement {
    flex-direction: row;
    align-items: center;
    gap: var(--space-lg);
  }
}

.verdict-line {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  line-height: 1.25;
  flex: 1;
}

.verdict-line strong {
  color: var(--green);
}

.verdict-cta {
  flex-shrink: 0;
}

.verdict-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.verdict-cta a:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}

.verdict-cta a svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   SOCIAL PROOF
   ======================================== */
.social-proof {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.social-proof::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.02);
}

.social-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.social-header .section-label {
  color: var(--green);
  border-color: var(--green);
}

.social-header h2 {
  margin-bottom: var(--space-lg);
  color: var(--white);
}

.social-big-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: var(--space-sm);
}

.social-big-stat .big-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1;
}

.social-big-stat .big-label {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
}

.social-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

/* --- Ticker --- */
.review-ticker {
  overflow: hidden;
  margin-bottom: var(--space-lg);
  position: relative;
}

.review-ticker::before,
.review-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.review-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

.review-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}

.ticker-track {
  display: flex;
  gap: var(--space-sm);
  animation: ticker 40s linear infinite;
  width: max-content;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-card {
  flex-shrink: 0;
  padding: var(--space-md);
  background: var(--navy-light);
  border: 1px solid var(--navy-muted);
  border-radius: var(--radius);
  min-width: 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ticker-card .ticker-stars {
  color: var(--amber);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.ticker-card p {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.ticker-card .ticker-source {
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: auto;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Social summary bar --- */
.social-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  max-width: 800px;
  margin: 0 auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--navy-muted);
}

@media (min-width: 640px) {
  .social-summary { grid-template-columns: 1fr 1fr 1fr; }
}

.social-summary-item {
  text-align: center;
  padding: var(--space-sm);
}

.social-summary-item .summary-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green);
  margin-bottom: 0.15rem;
}

.social-summary-item .summary-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
  background: var(--off-white);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.how-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.how-header h2 {
  margin-bottom: var(--space-sm);
}

.how-header > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* --- Steps layout --- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Connecting line between steps on desktop */
@media (min-width: 768px) {
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 2px;
    background: repeating-linear-gradient(
      90deg,
      var(--border) 0,
      var(--border) 6px,
      transparent 6px,
      transparent 12px
    );
    z-index: 0;
  }
}

.step-card {
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  z-index: 1;
}

.step-card:hover {
  box-shadow: 0 8px 24px rgba(26, 35, 50, 0.06);
  transform: translateY(-2px);
}

/* Step top row: number + time badge */
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-time {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  background: var(--green-glow);
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
}

/* Step icon */
.step-icon {
  width: 100%;
  padding: var(--space-sm) 0;
  margin-bottom: var(--space-sm);
  display: flex;
  justify-content: center;
}

.step-icon svg {
  width: 48px;
  height: 48px;
  color: var(--navy);
  opacity: 0.15;
}

.step-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.step-card > p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

/* Platform/feature tags */
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: var(--space-sm);
}

.step-tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.step-tag.highlight {
  background: var(--red-soft);
  border-color: transparent;
  color: var(--red);
  font-weight: 600;
}

.step-tag.ok {
  background: var(--green-glow);
  border-color: transparent;
  color: var(--green);
  font-weight: 600;
}

/* Step footnote */
.step-footnote {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

/* Step CTA at bottom */
.steps-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.steps-cta p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

/* ========================================
   FREE AUDIT
   ======================================== */
.free-audit {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.free-audit::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(22, 163, 74, 0.06), transparent 70%);
  pointer-events: none;
}

/* Two-column grid */
.audit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 860px) {
  .audit-grid { grid-template-columns: 1fr 1fr; }
}

/* Left: copy */
.audit-copy .section-label {
  color: var(--green);
  border-color: var(--green);
}

.audit-copy h2 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.audit-copy > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

.audit-copy > .section-label {
  margin-bottom: var(--space-sm);
}

.audit-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: var(--space-lg);
}

.audit-benefit {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.audit-benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audit-benefit-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.audit-benefit-text strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.audit-benefit-text span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.audit-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--navy-muted);
}

.audit-trust-item {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.audit-trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* Right: preview card */
.audit-preview {
  background: var(--navy-light);
  border: 1px solid var(--navy-muted);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.audit-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--navy-muted);
}

.audit-preview-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.audit-preview-title .dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.audit-preview-badge {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  background: rgba(22, 163, 74, 0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
}

.audit-preview-body {
  padding: var(--space-md);
}

.audit-preview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.audit-preview-stat {
  padding: var(--space-sm);
  background: var(--navy);
  border-radius: var(--radius);
  text-align: center;
}

.audit-preview-stat .prev-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.audit-preview-stat .prev-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
}

.audit-preview-stat .prev-value.ok { color: var(--green); }
.audit-preview-stat .prev-value.alert { color: var(--red); }
.audit-preview-stat .prev-value.warn { color: var(--amber); }

/* Discrepancy rows inside preview */
.audit-preview-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.5rem;
}

.audit-preview-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.audit-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.65rem;
  background: var(--navy);
  border-radius: var(--radius);
  font-size: 0.85rem;
}

.audit-preview-row .row-label {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.audit-preview-row .row-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.audit-preview-row .row-amount {
  font-weight: 700;
  color: var(--red);
}

.audit-preview-footer {
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--navy-muted);
  text-align: center;
}

.audit-preview-footer span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   WAITLIST / EARLY ACCESS
   ======================================== */
.beta-access {
  background: var(--off-white);
  position: relative;
}

.beta-access::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.beta-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-lg);
}

.beta-center h2 {
  margin-bottom: var(--space-sm);
}

.beta-center > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Advantage cards */
.beta-advantages {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  max-width: 900px;
  margin: 0 auto var(--space-lg);
}

@media (min-width: 640px) {
  .beta-advantages { grid-template-columns: 1fr 1fr 1fr; }
}

.beta-advantage {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-md);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.beta-advantage:hover {
  box-shadow: 0 4px 12px rgba(26, 35, 50, 0.06);
  transform: translateY(-2px);
}

.beta-advantage-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.beta-advantage-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.beta-advantage h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.beta-advantage p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.beta-cta {
  text-align: center;
}

.beta-cta p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

/* ========================================
   SECURITY
   ======================================== */
.security {
  background: var(--off-white);
  position: relative;
}

.security::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* Hero promise — the big read-only statement */
.security-promise {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.security-promise .section-label {
  margin-bottom: var(--space-sm);
}

.security-shield {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  position: relative;
}

.security-shield::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed var(--border);
}

.security-shield svg {
  width: 32px;
  height: 32px;
  color: var(--green);
}

.security-promise h2 {
  margin-bottom: var(--space-sm);
}

.security-promise h2 .security-highlight {
  color: var(--green);
}

.security-promise > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* Read-only guarantee banner */
.readonly-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: var(--space-sm) var(--space-md);
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-lg);
  max-width: 520px;
  margin: var(--space-lg) auto var(--space-xl);
}

.readonly-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--green);
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.readonly-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.readonly-text strong {
  color: var(--navy);
}

/* Trust grid — fear-based Q&A cards */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

.trust-item {
  display: flex;
  gap: 1rem;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.trust-item:hover {
  box-shadow: 0 4px 12px rgba(26, 35, 50, 0.06);
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.trust-item-content {
  flex: 1;
}

.trust-item-content .trust-question {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  font-style: italic;
}

.trust-item-content h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.trust-item-content p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  background: var(--off-white);
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h2 {
  margin-bottom: 0.25rem;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--green);
  margin-bottom: var(--space-md);
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-list li svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  line-height: 1.5;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  background: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--green); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: var(--space-md);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(22, 163, 74, 0.08), transparent);
  pointer-events: none;
}

.final-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.final-content h2 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.final-content h2 em {
  color: var(--amber);
  font-style: italic;
}

.final-steps {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-lg);
}

.final-steps p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.final-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--space-sm);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg) 0;
  color: rgba(255, 255, 255, 0.4);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255, 255, 255, 0.8); }

.footer-copy {
  font-size: 0.8rem;
}
/* ========================================
   CALCULATOR WIDGET SECTION
   ======================================== */
.calc-section {
  background: var(--off-white);
  text-align: center;
}

.calc-section-header {
  max-width: 560px;
  margin: 0 auto var(--space-lg);
}

.calc-section-header h2 {
  margin-bottom: var(--space-sm);
}

.calc-section-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

.calc-section-widget {
  max-width: 520px;
  margin: 0 auto;
}

.calc-section-full-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  transition: gap 0.2s;
}

.calc-section-full-link:hover {
  gap: 0.6rem;
}

.calc-section-full-link svg {
  width: 16px;
  height: 16px;
}
