/* ============================================================
   CatchSunlight — Homepage Stylesheet
   Mobile-first, no framework dependencies
   ============================================================ */

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

:root {
  /* Palette */
  --clay:       #2E8FC0;   /* primary / CTA blue */
  --clay-dark:  #1E6F9A;
  --clay-light: #6DBDE8;
  --slate:      #2A2A28;   /* main text */
  --slate-mid:  #555550;
  --slate-light:#888882;
  --cream:      #FAF7F0;   /* background */
  --cream-dark: #EDEEE5;   /* subtle section alt */
  --sage:       #4B7F52;   /* green — plant/growing icons & checkmarks only */
  --yellow:     #F5B301;   /* accent — badges, stat highlights, one hero moment */
  --teal-deep:  #1F3A3D;   /* dark contrast bands: trust bar, footer */
  --white:      #FFFFFF;

  /* Type scale */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Manrope', system-ui, 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;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2rem;
  --space-xl:  3rem;
  --space-2xl: 4.5rem;
  --space-3xl: 7rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);

  /* Layout */
  --max-width: 1200px;
  --gutter:    1.25rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--slate);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--clay); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Section spacing ── */
.section { padding-block: var(--space-2xl); }
.section-alt { background: var(--cream-dark); }

/* ── Section labels ── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: var(--space-xs);
}
.section-label.center { text-align: center; }

h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.2;
  color: var(--slate);
  margin-bottom: var(--space-md);
}
h2.center { text-align: center; }
h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--slate);
  margin-bottom: var(--space-xs);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.7em 1.5em;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--clay-dark); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: transparent;
  color: var(--clay);
  border-color: var(--clay);
}
.btn-secondary:hover { background: var(--clay); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--clay-dark);
  border-color: transparent;
  padding-inline: 0.5em;
}
.btn-ghost:hover { color: var(--clay); text-decoration: underline; }

.btn-lg { font-size: var(--text-lg); padding: 0.8em 1.75em; }

/* ── Link arrow ── */
.link-arrow {
  display: inline-block;
  font-weight: 600;
  color: var(--clay);
  margin-top: var(--space-md);
  transition: gap 0.15s;
}
.link-arrow:hover { text-decoration: underline; }

/* ── Image placeholders (dev/staging aid) ── */
.img-placeholder {
  background: var(--cream-dark);
  border: 2px dashed var(--clay-light);
  color: var(--slate-light);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
  line-height: 1.5;
  border-radius: var(--radius-md);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  height: 80px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 60px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--clay);
}

.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: var(--space-md);
}
.main-nav a {
  color: var(--slate);
  font-weight: 500;
  font-size: var(--text-sm);
  padding: 0.25em 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.main-nav a:hover { color: var(--clay); border-bottom-color: var(--clay); text-decoration: none; }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { min-height: 680px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-color: var(--teal-deep); /* fallback when image missing */
}

/* Bottom-anchored scrim — text stays readable, photo remains visible */
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 26, 34, 0.92) 0%,
    rgba(20, 26, 34, 0.70) 40%,
    rgba(20, 26, 34, 0.45) 70%,
    rgba(20, 26, 34, 0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-3xl) var(--space-2xl);
  max-width: 720px;
}

.hero-eyebrow {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-sm);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-lg);
  max-width: 560px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--teal-deep);
  padding-block: var(--space-md);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  color: rgba(255,255,255,0.88);
  font-size: calc(var(--text-sm) * 1.2);
  font-weight: 500;
}

.trust-item svg { color: #6BBF72; flex-shrink: 0; }

@media (min-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(3, auto);
    gap: var(--space-sm) var(--space-xl);
    justify-content: center;
  }
}

/* ============================================================
   CREDIBILITY
   ============================================================ */
.credibility-inner {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .credibility-inner {
    grid-template-columns: 280px 1fr;
  }
}

.credibility-photo img {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.credibility-placeholder {
  max-width: 280px;
  aspect-ratio: 3/4;
}

.credibility-copy p {
  color: var(--slate-mid);
  margin-bottom: var(--space-sm);
  font-size: var(--text-lg);
}

.credibility-copy p strong { color: var(--slate); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-cards {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .product-cards { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.product-card-featured {
  box-shadow: 0 0 0 2px var(--yellow), var(--shadow-md);
  position: relative;
}
.product-card-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--yellow);
  color: #1A1A18;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3em 0.75em;
  border-radius: var(--radius-sm);
  z-index: 1;
}

.product-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card-img .img-placeholder {
  height: 200px;
  border-radius: 0;
  border: none;
  border-bottom: 2px dashed var(--clay-light);
}

.product-card-img-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  color: var(--clay);
}

.product-card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-xs);
}

.product-who { color: var(--slate-mid); font-size: var(--text-base); }
.product-spec { font-size: var(--text-sm); color: var(--slate-light); }

.product-price {
  margin-block: var(--space-sm);
  padding-block: var(--space-sm);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.price-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate-light);
  margin-bottom: 2px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--slate);
}

.price-or {
  display: block;
  font-size: var(--text-sm);
  color: var(--slate-light);
  margin-top: 2px;
}

.product-card-body .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   COMPARISON
   ============================================================ */
.comparison-inner {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .comparison-inner { grid-template-columns: 1fr 380px; }
}

.comparison-copy > p {
  color: var(--slate-mid);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.comparison-table {
  display: grid;
  gap: var(--space-sm);
  margin-block: var(--space-lg);
}

@media (min-width: 560px) {
  .comparison-table { grid-template-columns: 1fr 1fr; }
}

.comparison-col {
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.comparison-col-them {
  background: var(--cream-dark);
  border: 1px solid rgba(0,0,0,0.08);
}

.comparison-col-us {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.9);
}

.comparison-col-head {
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.comparison-col-them .comparison-col-head {
  color: var(--slate-mid);
  border-bottom-color: rgba(0,0,0,0.1);
}

.comparison-col-us .comparison-col-head { color: var(--clay-light); }

.comparison-col ul { display: flex; flex-direction: column; gap: var(--space-xs); }

.comparison-col li {
  font-size: var(--text-sm);
  padding-left: 1.25em;
  position: relative;
}

.comparison-col-them li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--slate-light);
}

.comparison-col-us li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6BBF72;
  font-weight: 700;
}

.comparison-col-us li strong { color: var(--white); }

.comparison-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.comparison-visual-placeholder {
  aspect-ratio: 3/4;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-cards {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 640px) { .testimonial-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .testimonial-cards { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  border-top: 3px solid var(--clay);
}

.stars {
  font-size: var(--text-xl);
  color: var(--yellow);
  letter-spacing: 0.05em;
}

.testimonial-card p {
  flex: 1;
  color: var(--slate-mid);
  font-size: var(--text-base);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--space-xs);
  border-top: 1px solid var(--cream-dark);
}

.testimonial-card footer strong {
  font-style: normal;
  color: var(--slate);
  font-weight: 600;
}

.testimonial-card footer span {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--slate-light);
}

/* ============================================================
   GRANTS
   ============================================================ */
.grants-inner {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .grants-inner { grid-template-columns: 1fr auto; align-items: center; }
}

.grants-copy p {
  color: var(--slate-mid);
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.grants-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  align-items: center;
}

.grants-badge {
  background: var(--teal-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  flex-shrink: 0;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
}

.grant-amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--space-sm);
}

.grant-dollar {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 5vw, 3.5rem);
  font-weight: 800;
  color: var(--clay-light);
  line-height: 1;
}

.grant-label {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

.grant-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
}

.grant-note {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-top: var(--space-sm);
}

.grants-badge .link-arrow {
  color: var(--clay-light);
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 55%;
  background-color: var(--clay-dark); /* fallback */
}

.cta-band-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 26, 34, 0.90) 0%,
    rgba(20, 26, 34, 0.65) 60%,
    rgba(20, 26, 34, 0.30) 100%
  );
}

.cta-band-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-3xl);
  width: 100%;
  max-width: 640px;
}

.cta-band-content h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-band-content > p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-lg);
  margin-bottom: var(--space-lg);
}

.cta-band-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.cta-location {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-sm);
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-2xl);
}

.footer-inner {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 640px)  { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-col { text-align: center; }
.footer-col .logo-footer { margin-bottom: var(--space-sm); justify-content: center; }
.footer-col .logo-text { color: var(--white); font-size: var(--text-lg); }
.footer-col img { height: 60px; filter: brightness(0) invert(1); }

.footer-col p { font-size: var(--text-sm); line-height: 1.6; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.5em; align-items: center; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--space-md);
  text-align: center;
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.4); }


/* ============================================================
   RESPONSIVE — MOBILE NAV
   ============================================================ */
@media (max-width: 820px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: var(--space-sm) 0;
  }
  .main-nav a {
    display: block;
    padding: 0.75rem var(--gutter);
    border-bottom: none;
    font-size: var(--text-base);
  }
  .main-nav ul li:last-child { padding-bottom: var(--space-sm); }

  /* Add inline CTA to mobile nav */
  .main-nav ul::after {
    content: '';
    display: block;
    height: 1px;
    background: var(--cream-dark);
    margin: 0 var(--gutter);
  }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .grants-ctas { flex-direction: column; }
  .grants-ctas .btn { width: 100%; justify-content: center; }
  .cta-band-contacts { flex-direction: column; }
  .cta-band-contacts .btn { width: 100%; justify-content: center; }
  .comparison-table { grid-template-columns: 1fr; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   INTERIOR PAGE COMPONENTS
   Shared across all pages beyond the homepage
   ============================================================ */

/* ── Page Hero ── */
.page-hero {
  background: var(--teal-deep);
  background-size: cover;
  background-position: center 40%;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(31,58,61,0.96) 0%,
    rgba(31,58,61,0.70) 50%,
    rgba(31,58,61,0.45) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-block: var(--space-2xl);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin-bottom: var(--space-lg);
  line-height: 1.65;
}

.page-hero .section-label { color: var(--yellow); }
.page-hero .hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

@media (max-width: 560px) {
  .page-hero .hero-actions { flex-direction: column; }
  .page-hero .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Breadcrumb within page hero */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-sm);
}

.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); text-decoration: none; }

/* ── Pricing Tiers ── */
.pricing-tiers {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 640px) {
  .pricing-tiers { grid-template-columns: repeat(2, 1fr); }
}

.pricing-tier {
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
}

.pricing-tier-standard {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-md);
}

.pricing-tier-featured {
  background: var(--teal-deep);
  color: rgba(255,255,255,0.88);
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: #1A1A18;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3em 0.75em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  width: fit-content;
}

.tier-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--slate);
  margin-bottom: var(--space-xs);
}
.pricing-tier-featured .tier-name { color: var(--white); }

.tier-price {
  display: flex;
  align-items: flex-end;
  gap: 0.3em;
  margin-block: var(--space-xs);
  flex-wrap: wrap;
}

.tier-price-amount {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-4xl));
  font-weight: 800;
  color: var(--clay);
  line-height: 1;
}
.pricing-tier-featured .tier-price-amount { color: var(--yellow); }

.tier-price-note {
  font-size: var(--text-sm);
  color: var(--slate-light);
  margin-bottom: 0.25em;
  line-height: 1.3;
}
.pricing-tier-featured .tier-price-note { color: rgba(255,255,255,0.55); }

.tier-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-block: var(--space-sm);
}
.pricing-tier-featured .tier-divider { border-top-color: rgba(255,255,255,0.12); }

.tier-desc {
  font-size: var(--text-base);
  color: var(--slate-mid);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.pricing-tier-featured .tier-desc { color: rgba(255,255,255,0.72); }

.tier-includes {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-bottom: var(--space-lg);
  flex: 1;
}

.tier-includes li {
  display: flex;
  gap: 0.6em;
  align-items: flex-start;
  font-size: var(--text-sm);
  line-height: 1.5;
}

.tier-includes li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-tier-featured .tier-includes li::before { color: #6BBF72; }

.tier-note {
  font-size: var(--text-xs);
  color: var(--slate-light);
  margin-top: var(--space-xs);
  line-height: 1.5;
}
.pricing-tier-featured .tier-note { color: rgba(255,255,255,0.4); }

/* ── Add-on Card ── */
.addon-card {
  background: var(--white);
  border: 1px dashed var(--clay);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.addon-price {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--clay);
  flex-shrink: 0;
}

.addon-body h4 { font-size: var(--text-lg); font-weight: 700; margin-bottom: 0.25em; }
.addon-body p { font-size: var(--text-base); color: var(--slate-mid); line-height: 1.6; }

/* ── Data Table ── */
.data-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.08);
  margin-block: var(--space-lg);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  background: var(--white);
}

.data-table th {
  text-align: left;
  padding: 0.65em 1em;
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate-light);
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  white-space: nowrap;
}

.data-table td {
  padding: 0.65em 1em;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--slate);
  line-height: 1.5;
  vertical-align: top;
}

.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: #F4F4EE; }
.data-table td strong { font-weight: 600; }

/* ── Process Steps ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(46,143,192,0.15);
}

.step-body h3 { font-size: var(--text-lg); margin-bottom: 0.3em; }
.step-body p { color: var(--slate-mid); font-size: var(--text-base); line-height: 1.65; }
.step-body strong { color: var(--slate); }

/* ── Notice / Callout Boxes ── */
.notice-box {
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  margin-block: var(--space-lg);
}

.notice-box-info { background: #EBF5FB; border-left: 4px solid var(--clay); }
.notice-box-warn { background: #FEF9E7; border-left: 4px solid var(--yellow); }
.notice-box-neutral { background: var(--cream-dark); border-left: 4px solid var(--slate-light); }

.notice-box-icon { flex-shrink: 0; margin-top: 2px; }
.notice-box-info .notice-box-icon { color: var(--clay); }
.notice-box-warn .notice-box-icon { color: #9A7000; }
.notice-box-neutral .notice-box-icon { color: var(--slate-light); }

.notice-box-body h4 { font-size: var(--text-base); font-weight: 700; margin-bottom: 0.25em; color: var(--slate); }
.notice-box-body p { font-size: var(--text-sm); color: var(--slate-mid); line-height: 1.6; }
.notice-box-body p + p { margin-top: 0.5em; }
.notice-box-body a { color: var(--clay); font-weight: 500; }

/* ── Stat Band ── */
.stat-band {
  background: var(--teal-deep);
  padding-block: var(--space-xl);
}

.stat-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
  text-align: center;
}

.stat-item { flex: 1; min-width: 160px; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, 3rem);
  font-weight: 800;
  color: var(--yellow);
  display: block;
  line-height: 1;
  margin-bottom: 0.25em;
}

.stat-label { color: rgba(255,255,255,0.7); font-size: var(--text-sm); font-weight: 500; line-height: 1.4; }

/* ── Feature Highlight ── */
.feature-highlight {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: grid;
  gap: var(--space-xl);
  align-items: center;
  margin-block: var(--space-xl);
}

@media (min-width: 768px) {
  .feature-highlight { grid-template-columns: 1fr 1fr; }
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: var(--yellow);
  color: #1A1A18;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3em 0.75em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  width: fit-content;
}

.feature-price {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--clay);
  margin-block: var(--space-xs) var(--space-sm);
}

.feature-visual { border-radius: var(--radius-lg); overflow: hidden; }
.feature-visual img { width: 100%; height: 300px; object-fit: cover; }
.feature-visual .img-placeholder { height: 300px; }

.feature-body p { color: var(--slate-mid); font-size: var(--text-lg); margin-bottom: var(--space-sm); line-height: 1.65; }
.feature-body ul { display: flex; flex-direction: column; gap: 0.5em; }
.feature-body ul li {
  display: flex; gap: 0.6em; align-items: flex-start;
  font-size: var(--text-base); color: var(--slate-mid);
}
.feature-body ul li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }

/* ── Video Gallery ── */
.video-section-head { display: flex; align-items: baseline; gap: var(--space-sm); margin-bottom: var(--space-sm); }

.video-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-top: var(--space-md);
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--slate);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.18s;
  border: 1px solid rgba(0,0,0,0.06);
}

.video-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }

.video-thumb {
  aspect-ratio: 16/9;
  background: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.45);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background 0.18s, border-color 0.18s;
}

.video-card:hover .video-play { background: rgba(255,255,255,0.25); border-color: var(--white); }

.video-info { padding: var(--space-sm); }
.video-info h4 { font-family: var(--font-display); font-size: var(--text-base); font-weight: 700; margin-bottom: 0.2em; }
.video-info p { font-size: var(--text-sm); color: var(--slate-light); }

/* ── Accordion (FAQ) ── */
.accordion {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  transition: background 0.15s, color 0.15s;
  line-height: 1.4;
}

.accordion-trigger:hover { background: var(--cream); }
.accordion-trigger[aria-expanded="true"] { background: var(--cream); color: var(--clay); }

.accordion-icon {
  flex-shrink: 0;
  color: var(--slate-light);
  transition: transform 0.22s ease, color 0.15s;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); color: var(--clay); }

.accordion-body {
  display: none;
  padding: var(--space-sm) var(--space-lg) var(--space-md);
  color: var(--slate-mid);
  background: var(--cream);
  font-size: var(--text-base);
  line-height: 1.7;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.accordion-body.open { display: block; }
.accordion-body p { margin-bottom: 0.5em; }
.accordion-body p:last-child { margin-bottom: 0; }
.accordion-body a { color: var(--clay); font-weight: 500; }

/* ── Photo Gallery ── */
.photo-gallery {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-top: var(--space-xl);
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
  display: block;
}

.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .img-placeholder { height: 100%; border-radius: 0; border: none; }

/* ── Benefits Grid ── */
.benefits-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin-top: var(--space-xl);
}

.benefit-item { display: flex; flex-direction: column; gap: var(--space-xs); }

.benefit-icon {
  width: 44px; height: 44px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
  margin-bottom: var(--space-xs);
  flex-shrink: 0;
}

.benefit-item h4 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--slate); margin-bottom: 0.2em; }
.benefit-item p { font-size: var(--text-base); color: var(--slate-mid); line-height: 1.6; }

/* ── Kit Compare Cards ── */
.kit-compare-grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

@media (min-width: 640px) {
  .kit-compare-grid { grid-template-columns: repeat(2, 1fr); }
}

.kit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.kit-card-head {
  padding: var(--space-md) var(--space-lg);
  background: var(--teal-deep);
}

.kit-card-head h3 { color: var(--white); font-size: var(--text-xl); margin-bottom: 0.2em; }
.kit-card-head p { color: rgba(255,255,255,0.65); font-size: var(--text-sm); }
.kit-card-price { color: var(--yellow); font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 800; margin-top: var(--space-xs); display: block; }
.kit-card-body { padding: var(--space-lg); }
.kit-card-body .data-table-wrap { margin-block: 0; }
.kit-tradeoff { font-size: var(--text-sm); color: var(--slate-mid); margin-top: var(--space-sm); padding: var(--space-sm); background: var(--cream-dark); border-radius: var(--radius-sm); line-height: 1.55; }

/* ── Split section (text + image) ── */
.split-section {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .split-section { grid-template-columns: 1fr 1fr; }
  .split-section.flip > :first-child { order: 2; }
  .split-section.flip > :last-child  { order: 1; }
}

.split-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.split-visual .img-placeholder { min-height: 320px; }

.split-body p { color: var(--slate-mid); font-size: var(--text-lg); margin-bottom: var(--space-sm); line-height: 1.65; }
.split-body p strong { color: var(--slate); }
.split-body ul { display: flex; flex-direction: column; gap: 0.5em; margin-top: var(--space-sm); }
.split-body ul li { display: flex; gap: 0.6em; align-items: flex-start; font-size: var(--text-base); color: var(--slate-mid); }
.split-body ul li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; }

/* ── Cross-link cards (related pages) ── */
.crosslink-cards {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (min-width: 480px) { .crosslink-cards { grid-template-columns: repeat(2, 1fr); } }

.crosslink-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.07);
  text-decoration: none;
  color: var(--slate);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: box-shadow 0.18s, transform 0.18s;
}

.crosslink-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.crosslink-card h4 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--clay); }
.crosslink-card p { font-size: var(--text-sm); color: var(--slate-mid); line-height: 1.55; }
.crosslink-card .link-arrow { margin-top: auto; font-size: var(--text-sm); }

/* ── Credentials list ── */
.credential-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.credential-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-md);
  align-items: flex-start;
}

.credential-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--clay);
  flex-shrink: 0;
}

.credential-item h4 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--slate); margin-bottom: 0.2em; }
.credential-item p { font-size: var(--text-base); color: var(--slate-mid); line-height: 1.6; }
.credential-why { font-size: var(--text-sm); color: var(--clay); font-weight: 600; margin-top: 0.4em; }

/* ── Formspree state management — library overrides these on success/error ── */
[data-fs-success] { display: none; }
[data-fs-error]   { display: none; }

/* ── Lead Capture Form ── */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 560px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.form-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--slate);
}

.form-label span { color: var(--clay); font-weight: 400; }

.form-input {
  width: 100%;
  padding: 0.7em 0.9em;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--slate);
  background: var(--cream);
  line-height: 1.5;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:hover {
  border-color: var(--clay-light);
}

.form-input:focus {
  outline: none;
  border-color: var(--clay);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,143,192,0.14);
}

.form-input::placeholder {
  color: var(--slate-light);
  font-weight: 400;
}

textarea.form-input,
select.form-input {
  font-family: var(--font-body);
  font-size: var(--text-base);
}

select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232E8FC0' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9em center;
  padding-right: 2.5em;
  cursor: pointer;
  color: var(--slate);
}

select.form-input option { color: var(--slate); background: var(--white); }

.form-textarea { resize: vertical; min-height: 110px; }

.form-submit {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xs);
}

.form-privacy {
  font-size: var(--text-sm);
  color: var(--slate-light);
}

@media (max-width: 560px) {
  .form-submit { flex-direction: column; align-items: flex-start; }
}
