/* ========================================
   Anderson Amenities — Apartments Landing Page
   Production stylesheet (extracted from apartments-v3 prototype)
   Version: 2026-04-08
   ======================================== */

/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
  /* Primary greens — deep leaf / forest / monstera */
  --color-primary: #2D6A4F;
  --color-primary-light: #40916C;
  --color-primary-dark: #1B4332;
  --color-primary-subtle: #F0F7F4;

  /* Accent — warm amber/gold for CTAs */
  --color-accent: #C17F24;
  --color-accent-hover: #A86B1D;
  --color-accent-light: #FDF3E0;

  /* Dark surfaces — deep forest green */
  --color-navy: #1B4332;

  /* Secondary green for check marks, success signals */
  --color-green: #2D6A4F;
  --color-green-light: #E8F5EE;

  /* Red for X marks in comparison */
  --color-red: #C0392B;
  --color-red-light: #FDEDEC;

  /* Backgrounds */
  --color-bg-white: #FFFFFF;
  --color-bg-light: #F5F7F2;
  --color-bg-warm: #F0F7F4;
  --color-bg-dark: #1B4332;

  /* Text */
  --color-text-primary: #1A1A1A;
  --color-text-secondary: #4A5548;
  --color-text-muted: #7D8B7A;
  --color-text-on-dark: #FFFFFF;
  --color-text-on-dark-muted: #A8C4B4;

  /* Borders */
  --color-border: #D5DDD6;
  --color-border-dark: #B8C4BA;

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(27,67,50,0.04);
  --shadow-md: 0 4px 12px rgba(27,67,50,0.06);
  --shadow-lg: 0 8px 24px rgba(27,67,50,0.08);
  --shadow-xl: 0 16px 48px rgba(27,67,50,0.1);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;

  --sticky-header-height: 56px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--sticky-header-height);
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); }

.skip-link {
  position: absolute; top: -100px; left: 8px;
  background: var(--color-navy); color: var(--color-text-on-dark);
  padding: 8px 16px; border-radius: var(--radius-md); z-index: 1100; font-size: var(--text-sm);
}
.skip-link:focus { top: 8px; }

/* ========================================
   CONTAINER
   ======================================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}

/* ========================================
   STICKY HEADER
   ======================================== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 4px rgba(27,67,50,0.06);
  height: var(--sticky-header-height);
}
.sticky-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.sticky-header__brand {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-primary-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.sticky-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #FFFFFF;
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}
.sticky-header__cta:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 16px rgba(193,127,36,0.3);
  transform: translateY(-1px);
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  background: var(--color-bg-dark);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 0;
}
.trust-bar__item {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  color: var(--color-text-on-dark);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.trust-bar__item:last-child {
  border-right: none;
}
.trust-bar__num {
  font-size: 14px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.01em;
  margin-right: 7px;
}
@media (max-width: 640px) {
  .trust-bar__inner { gap: 8px 20px; }
  .trust-bar__item { padding: 0; border-right: none; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding: var(--space-12) 0 var(--space-12);
  background: var(--color-bg-white);
}
.hero__grid {
  display: grid;
  gap: var(--space-10);
}
.hero__content { max-width: 600px; }
.hero__headline {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}
.hero__subheadline {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  font-weight: 400;
}
.hero__text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

/* Hero testimonial */
.hero-testimonial {
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-5);
  margin-bottom: var(--space-6);
}
.hero-testimonial__quote {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-2);
}
.hero-testimonial__attribution {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-testimonial__byline {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.hero-testimonial__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary-dark);
}
.hero-testimonial__org {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
}

/* Hero value prop badges */
.hero-props {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.hero-prop {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-5) var(--space-4);
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.hero-prop__stat {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.hero-prop__stat--green {
  color: var(--color-primary);
}
.hero-prop__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  line-height: var(--leading-snug);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #FFFFFF;
  font-family: var(--font-family);
  font-size: var(--text-lg);
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  width: 100%;
  max-width: 360px;
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 20px rgba(193,127,36,0.35);
  transform: translateY(-1px);
}
.btn-primary:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* ========================================
   FORM CARD
   ======================================== */
.form-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-8);
  max-width: 440px;
  width: 100%;
}
.form-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-2);
}
.form-card__subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  line-height: var(--leading-normal);
}
.form-group {
  margin-bottom: var(--space-5);
}
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-family: var(--font-family);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background: var(--color-bg-white);
  border: 1.5px solid var(--color-border-dark);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}
.form-input::placeholder { color: var(--color-text-muted); }

.form-submit {
  width: 100%;
  height: 52px;
  margin-top: var(--space-2);
  font-size: var(--text-lg);
  max-width: none;
}
.form-privacy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-3);
  line-height: var(--leading-normal);
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
  justify-content: center;
}
.form-trust__item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}
.form-trust__icon {
  width: 14px;
  height: 14px;
  background: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-trust__icon::after {
  content: "";
  display: block;
  width: 6px;
  height: 3px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}

/* ========================================
   SECTION UTILITIES
   ======================================== */
.section {
  padding: var(--space-12) 0;
}
.section--alt {
  background: var(--color-bg-light);
}
.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-on-dark);
}
.section--warm {
  background: var(--color-bg-warm);
}
.section__divider {
  width: 48px;
  height: 3px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-6);
}
.section__header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.section__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}
.section--dark .section__title {
  color: var(--color-text-on-dark);
}
.section__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

/* ========================================
   CLIENT LOGO BAR — Scrolling Marquee
   ======================================== */
.logo-bar {
  padding: var(--space-8) 0 var(--space-10);
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
}
.logo-bar::before,
.logo-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.logo-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--color-bg-light), transparent);
}
.logo-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--color-bg-light), transparent);
}
.logo-bar__label {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
/* Marquee track — holds two copies of logos for seamless loop.
   One set width must exceed viewport width to prevent both copies
   being visible simultaneously (which reads as "duplicates"). */
.logo-bar__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
}
.logo-bar__track:hover {
  animation-play-state: paused;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-bar__track { animation: none; }
}
/* Wide gap + matching padding keeps one set wider than any typical desktop
   viewport (up to ~1920px ultrawide), preventing both marquee copies from
   being visible at once. Set-to-set boundary spacing (padding_left +
   padding_right = 160px) intentionally matches the internal gap. */
.logo-bar__set {
  display: flex;
  align-items: center;
  gap: 160px;
  padding: 0 80px;
  flex-shrink: 0;
}
.logo-bar__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  flex-shrink: 0;
  height: 56px;
  opacity: 0.6;
  transition: opacity var(--transition-base);
}
.logo-bar__track:hover .logo-bar__logo {
  opacity: 0.75;
}

/* Styled logo wordmarks */
.logo--greystar {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B2A4A;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  line-height: 1;
}
.logo--greystar::before,
.logo--greystar::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #1B2A4A;
}
.logo--greystar::before { margin-bottom: 5px; }
.logo--greystar::after { margin-top: 5px; }

.logo--toll-brothers {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #1B2A4A;
  text-align: center;
  line-height: 1;
}
.logo--toll-brothers__name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: block;
}
.logo--toll-brothers__sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

.logo--avenue5 {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #3D4550;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  border: 2px solid #3D4550;
  border-right: none;
  padding: 6px 0 6px 8px;
  position: relative;
}
.logo--avenue5__five {
  color: #6DBE45;
  font-size: 1.5rem;
  font-weight: 800;
  position: relative;
  margin-left: 1px;
  padding-right: 8px;
  border-right: 2px solid #3D4550;
  display: inline-flex;
  align-self: stretch;
  align-items: center;
}
.logo--avenue5__sub {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3D4550;
  display: block;
  position: absolute;
  bottom: -2px;
  left: 8px;
}

.logo--onni {
  font-family: 'Arial Rounded MT Bold', 'Nunito', Arial, sans-serif;
  color: #1B2A4A;
  text-align: center;
  line-height: 1;
}
.logo--onni__name {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  display: block;
  text-transform: lowercase;
}
.logo--onni__sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  display: block;
  text-align: right;
  margin-top: 0px;
  padding-right: 2px;
}

.logo--landmark {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #1B3E8A;
  line-height: 1;
}
.logo--landmark__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #D4A528;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo--landmark__icon::after {
  content: "";
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #D4A528;
  border-radius: 0 0 50% 50%;
}
.logo--landmark__text {
  display: flex;
  flex-direction: column;
}
.logo--landmark__name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}
.logo--landmark__sub {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  color: #1B3E8A;
}

.logo--acc {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #1B2A4A;
  text-align: center;
  line-height: 1.15;
}
.logo--acc__name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}
.logo--acc__icon {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 3px;
}
.logo--acc__pillar {
  width: 5px;
  height: 18px;
  background: #1B2A4A;
  border-radius: 1px 1px 0 0;
}
.logo--acc__pillar--tall { height: 22px; }

.logo--fairfield {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1B2A4A;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.logo--fairfield__dot {
  width: 7px;
  height: 7px;
  background: #E86830;
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
}

/* ========================================
   BENEFIT CARDS
   ======================================== */
.benefits-grid {
  display: grid;
  gap: var(--space-5);
}
.benefit-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
}
.benefit-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}
.benefit-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.benefit-card__icon svg {
  width: 22px;
  height: 22px;
}
.benefit-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary-dark);
}
.benefit-card__body {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.comparison {
  padding: var(--space-12) 0;
  background: var(--color-bg-white);
}
.comparison__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
}
.comparison__column {
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
}
.comparison__column--old {
  background: #F9F6F3;
  border: 1px solid #E5DDD5;
}
.comparison__column--new {
  background: var(--color-green-light);
  border: 2px solid var(--color-primary);
  position: relative;
}
.comparison__column-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}
.comparison__column-title {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: var(--space-6);
  line-height: var(--leading-snug);
}
.comparison__column--old .comparison__column-title {
  color: var(--color-text-muted);
}
.comparison__column--new .comparison__column-title {
  color: var(--color-primary-dark);
}
.comparison__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.comparison__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}
.comparison__item--bad {
  color: var(--color-text-muted);
}
.comparison__item--good {
  color: var(--color-text-primary);
  font-weight: 500;
}
.comparison__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.comparison__icon--x {
  background: var(--color-red-light);
  color: var(--color-red);
}
.comparison__icon--check {
  background: var(--color-green-light);
  color: var(--color-green);
}
.comparison__icon svg {
  width: 14px;
  height: 14px;
}
.comparison__item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.comparison__item-desc {
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

/* ========================================
   STAT CARDS
   ======================================== */
.stats-grid {
  display: grid;
  gap: var(--space-5);
}
.stat-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.stat-card__number {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-2);
}
.stat-card__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}
.stat-card__description {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}
.stat-card--highlight .stat-card__number {
  color: var(--color-primary);
}

/* Impact sub-sections */
.impact-section {
  margin-top: var(--space-10);
}
.impact-block {
  margin-bottom: var(--space-8);
}
.impact-block__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-3);
}
.impact-block__body {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}
.impact-block__body strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* ========================================
   MID-PAGE CTA STRIP
   ======================================== */
.mid-cta {
  padding: var(--space-10) 0;
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.mid-cta__text {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-5);
}
.mid-cta .btn-primary {
  margin: 0 auto;
  max-width: 320px;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.steps-grid {
  display: grid;
  gap: var(--space-8);
}
.step {
  display: flex;
  gap: var(--space-5);
}
.step__number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-primary-subtle);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: 800;
  border: 2px solid var(--color-primary);
}
.step__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}
.step__body {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ========================================
   SOCIAL PROOF
   ======================================== */
.proof-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.proof-badge {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}
.proof-badge__icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--color-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-badge__icon::after {
  content: "";
  display: block;
  width: 9px;
  height: 4.5px;
  border-left: 2px solid var(--color-green);
  border-bottom: 2px solid var(--color-green);
  transform: rotate(-45deg) translateY(-1px);
}
.proof-badge__text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--leading-snug);
}

/* Upgraded testimonial card */
.testimonial-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-6) var(--space-6) var(--space-8);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-8);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: var(--space-4);
  left: var(--space-5);
  font-size: 3.5rem;
  font-family: 'Georgia', serif;
  color: var(--color-primary);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card__quote {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  font-style: italic;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
  padding-top: var(--space-6);
}
.testimonial-card__attribution {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 600;
}

/* ========================================
   EVERYTHING WE HANDLE CHECKLIST
   ======================================== */
.checklist-section {
  padding: var(--space-12) 0;
  background: var(--color-bg-light);
}
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  max-width: 800px;
  margin: 0 auto;
}
.checklist-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.checklist-item__icon {
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.checklist-item__icon svg {
  width: 32px;
  height: 32px;
}
.checklist-item__label {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}
.checklist-item__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}
.checklist-note {
  text-align: center;
  margin-top: var(--space-8);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-primary-dark);
}

/* ========================================
   FAQ ACCORDION
   ======================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-primary);
  cursor: pointer;
  list-style: none;
  line-height: var(--leading-snug);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-primary);
  margin-left: var(--space-4);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "\2212";
}
.faq-item__answer {
  padding-bottom: var(--space-5);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  text-align: center;
}
.final-cta__headline {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-4);
  line-height: var(--leading-snug);
}
.final-cta__body {
  font-size: var(--text-base);
  color: var(--color-text-on-dark-muted);
  max-width: 600px;
  margin: 0 auto var(--space-10);
  line-height: var(--leading-relaxed);
}
.final-cta .form-card {
  margin: 0 auto;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-bg-light);
  padding: var(--space-8) 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}
.footer__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}
.footer__text a {
  color: var(--color-text-secondary);
  text-decoration: underline;
}

/* ========================================
   TABLET (768px+)
   ======================================== */
@media (min-width: 768px) {
  .section { padding: var(--space-16) 0; }
  .section__title { font-size: var(--text-3xl); }
  .hero { padding: var(--space-16) 0; }
  .hero__headline { font-size: var(--text-4xl); }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr 1fr; }
  .proof-badges { grid-template-columns: 1fr 1fr; max-width: 700px; margin-left: auto; margin-right: auto; }
  .hero-prop__stat { font-size: 2rem; }
  .hero-prop__label { font-size: 0.875rem; }
  .hero-prop { padding: var(--space-6) var(--space-5); }
  .final-cta__headline { font-size: var(--text-3xl); }
  .comparison { padding: var(--space-16) 0; }
  .comparison__grid { grid-template-columns: 1fr 1fr; }
  .checklist-grid { grid-template-columns: 1fr 1fr 1fr; }
  .checklist-section { padding: var(--space-16) 0; }
}

/* ========================================
   DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .section { padding: var(--space-20) 0; }
  .section__title { font-size: var(--text-4xl); }
  .hero { padding: var(--space-20) 0; }
  .hero__grid {
    grid-template-columns: 1fr 440px;
    align-items: start;
    gap: var(--space-16);
  }
  .hero__headline { font-size: var(--text-5xl); }
  .hero__subheadline { font-size: var(--text-xl); }
  .hero-props { grid-template-columns: 1fr 1fr; gap: var(--space-5); max-width: 480px; }
  .hero-prop { padding: var(--space-6) var(--space-5); }
  .hero-prop__stat { font-size: 2.5rem; }
  .hero-prop__label { font-size: 1rem; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-card__number { font-size: var(--text-5xl); }
  .proof-badges { grid-template-columns: repeat(4, 1fr); max-width: none; }
  .impact-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
  .final-cta__headline { font-size: var(--text-4xl); }
  .comparison { padding: var(--space-20) 0; }
  .comparison__column { padding: var(--space-10) var(--space-8); }
  .checklist-section { padding: var(--space-20) 0; }
}

/* ========================================
   IMAGES
   ======================================== */
.section-image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-md);
}

.hero__image {
  width: 100%;
  max-height: 260px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-6);
}

.benefits-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}
.benefits-row:last-child { margin-bottom: 0; }
.benefits-row__image {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-md);
}
.benefits-row__cards {
  display: grid;
  gap: var(--space-5);
}

.banner-image {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-10);
}

.steps-image {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-8);
}

.proof-image {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-8);
}

/* Tablet breakpoint — increased image sizes */
@media (min-width: 768px) {
  .hero__image { max-height: 300px; }
  .benefits-row__image { height: 320px; }
  .benefits-row__cards { grid-template-columns: 1fr 1fr; }
  .banner-image { height: 320px; }
  .steps-image { height: 300px; }
  .proof-image { height: 300px; }
}

@media (min-width: 1024px) {
  .hero__image { max-height: 300px; }
  .benefits-row {
    flex-direction: row;
    align-items: stretch;
  }
  .benefits-row--reverse {
    flex-direction: row-reverse;
  }
  .benefits-row__image {
    width: 380px;
    min-width: 380px;
    height: auto;
    min-height: 280px;
  }
  .benefits-row__cards {
    flex: 1;
    grid-template-columns: 1fr;
  }
  .banner-image { height: 380px; }
  .steps-image { height: 360px; }
  .proof-image { height: 340px; }
}

/* Mobile/desktop form toggle */
.hero__form-desktop { display: none; }
.hero__form-mobile { display: block; }
@media (min-width: 1024px) {
  .hero__form-desktop { display: block !important; }
  .hero__form-mobile { display: none !important; }
}

/* Visually-hidden success state */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}
.form-success__title {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-3);
}
.form-success__body {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}
.form-card.is-submitted form,
.form-card.is-submitted .form-privacy,
.form-card.is-submitted .form-trust,
.form-card.is-submitted .form-card__title,
.form-card.is-submitted .form-card__subtitle {
  display: none;
}
.form-card.is-submitted .form-success {
  display: block;
}
