/* JW Supporting Communities — shared styles
   One file for every page. Colours are defined once in :root. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #00BF63;
  --green-text: #007A3D;   /* darker green for small text on white/pale, better contrast */
  --white:      #FFFFFF;
  --text:       #14231B;
  --pale:       #F4FBF7;
  --muted:      rgba(20,35,27,0.72);
  --faint:      rgba(20,35,27,0.55);
  --line:       rgba(20,35,27,0.08);
  font-size: 16px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text); background: var(--white);
  line-height: 1.65; overflow-x: hidden; width: 100%;
}
h1, h2, h3, h4 { line-height: 1.12; }
p { font-size: 0.9375rem; color: var(--muted); }
a { color: inherit; }
img, svg { max-width: 100%; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--text); color: var(--white); padding: 0.75rem 1rem; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  border-bottom: 1.5px solid var(--line);
  padding: 0 5%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 4.25rem; transition: box-shadow 0.2s;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.nav-logo-jw { font-size: 1.375rem; font-weight: 900; color: var(--green); line-height: 1; letter-spacing: -0.03em; }
.nav-logo-divider { width: 1px; height: 1.25rem; background: rgba(20,35,27,0.15); }
.nav-logo-sub { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em; line-height: 1.15; max-width: 6.5rem; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a, .nav-panel a {
  font-size: 0.8125rem; font-weight: 500; color: rgba(20,35,27,0.78); text-decoration: none; transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-panel a:hover { color: var(--green-text); }
.nav-links a[aria-current="page"], .nav-panel a[aria-current="page"] { color: var(--green-text); font-weight: 700; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-contact {
  background: var(--green); color: var(--white); padding: 0.5rem 1.25rem; border-radius: 100px;
  font-size: 0.8125rem; font-weight: 600; text-decoration: none; white-space: nowrap; transition: filter 0.2s, transform 0.15s;
}
.nav-contact:hover { filter: brightness(0.9); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line); border-radius: 10px;
  width: 2.5rem; height: 2.5rem; cursor: pointer; align-items: center; justify-content: center; color: var(--text);
}
.nav-panel {
  display: none; position: fixed; top: 4.25rem; left: 0; right: 0; z-index: 99;
  background: var(--white); border-bottom: 1.5px solid var(--line);
  padding: 0.75rem 5% 1.25rem; box-shadow: 0 1.5rem 2rem rgba(20,35,27,0.08);
}
.nav-panel a { display: block; padding: 0.75rem 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
.nav-panel a:last-child { border-bottom: none; }
.nav-open .nav-panel { display: block; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green); color: var(--white); padding: 0.875rem 2rem; border-radius: 100px;
  font-size: 0.9375rem; font-weight: 600; text-decoration: none; display: inline-block; border: none; cursor: pointer;
  font-family: inherit; transition: filter 0.2s, transform 0.15s; text-align: center;
}
.btn-primary:hover { filter: brightness(0.9); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--text); padding: 0.8125rem 1.875rem; border-radius: 100px;
  font-size: 0.9375rem; font-weight: 600; text-decoration: none; display: inline-block;
  border: 2px solid rgba(20,35,27,0.2); transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--green); color: var(--green-text); }
.btn-white {
  background: var(--white); color: var(--text); padding: 0.875rem 2rem; border-radius: 100px;
  font-size: 0.9375rem; font-weight: 700; text-decoration: none; display: inline-block; transition: opacity 0.2s, transform 0.15s;
}
.btn-white:hover { opacity: 0.92; transform: translateY(-2px); }
.btn-ghost { color: var(--text); font-size: 0.9375rem; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 0.375rem; transition: color 0.2s; }
.btn-ghost:hover { color: var(--green-text); }

/* ── HERO (home) ── */
.hero { padding: 8.5rem 5% 5rem; background: var(--white); width: 100%; }
.hero-inner { max-width: 70rem; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--pale); border-radius: 100px;
  padding: 0.3125rem 0.875rem; font-size: 0.8125rem; font-weight: 600; color: var(--green-text); margin-bottom: 1.5rem; letter-spacing: 0.01em;
}
.hero-headline { font-size: clamp(2.25rem, 4.5vw, 3.625rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.125rem; }
.hero-headline .accent, .page-hero h1 .accent { color: var(--green); }
.hero-sub { font-size: 1.0625rem; line-height: 1.7; margin-bottom: 2rem; max-width: 33rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; align-items: center; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 2rem; border-top: 1.5px solid var(--line); }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--muted); }

.hero-card { background: var(--pale); border: 2px solid var(--line); border-radius: 20px; padding: 2.5rem 2rem; text-align: center; }
.hero-card-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.75rem; }
.hero-price { font-size: clamp(4rem, 9vw, 6.5rem); font-weight: 900; line-height: 0.95; letter-spacing: -0.05em; display: block; margin-bottom: 0.25rem; }
.hero-price-unit { font-size: 0.9375rem; font-weight: 600; color: var(--green-text); letter-spacing: 0.04em; text-transform: uppercase; display: block; margin-bottom: 1.5rem; }
.hero-card-divider { width: 2.5rem; height: 2px; background: rgba(20,35,27,0.12); margin: 0 auto 1.5rem; }
.hero-plans { display: flex; flex-direction: column; gap: 0.625rem; text-align: left; }
.hero-plan-row { display: flex; align-items: center; gap: 0.75rem; background: var(--white); border: 1.5px solid var(--line); border-radius: 10px; padding: 0.75rem 1rem; font-size: 0.9375rem; font-weight: 500; }
.hero-plan-row svg { flex-shrink: 0; }
.hero-plan-note { font-size: 0.8125rem; color: var(--faint); font-weight: 500; margin-top: 0.75rem; }
.hero-card-cta { display: block; width: 100%; margin-top: 1.5rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 8rem 5% 3.5rem; background: var(--white); }
.page-hero-inner { max-width: 70rem; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3.5rem; align-items: center; }
.page-hero-inner.narrow { grid-template-columns: 1fr; }
.page-hero-inner.narrow > div { max-width: 48rem; }
.page-hero h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 1rem; }
.page-hero .lead { font-size: 1.0625rem; line-height: 1.7; margin-bottom: 1.75rem; max-width: 36rem; }
.page-hero-panel { background: var(--pale); border: 2px solid var(--line); border-radius: 20px; padding: 1.75rem 1.75rem; }
.page-hero-panel h2 { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 1rem; font-weight: 600; }

/* ── SECTIONS ── */
.section { padding: 5rem 5%; width: 100%; }
.section.bg-pale { background: var(--pale); }
.section.bg-dark { background: var(--text); color: var(--white); }
.section-inner { max-width: 70rem; margin: 0 auto; }
.section-inner.narrow > * { max-width: 48rem; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green-text); margin-bottom: 0.625rem; display: flex; align-items: center; gap: 0.5rem;
}
.section-eyebrow::before { content: ''; width: 1.5rem; height: 2px; background: var(--green); flex-shrink: 0; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem; }
.section-intro { font-size: 1.0625rem; line-height: 1.72; max-width: 38rem; }
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 2.75rem; align-items: end; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.card {
  background: var(--white); border-radius: 16px; border: 1.5px solid var(--line);
  padding: 1.875rem 1.625rem; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.bg-pale .card { background: var(--white); }
.card:hover { border-color: var(--green); box-shadow: 0 8px 30px rgba(0,191,99,0.12); transform: translateY(-3px); }
.card-num { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-text); margin-bottom: 0.75rem; }
.card-title { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.625rem; }
.card-desc { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1rem; }
.card-desc:last-child { margin-bottom: 0; }
.card-icon { width: 2.75rem; height: 2.75rem; border-radius: 12px; background: var(--pale); display: flex; align-items: center; justify-content: center; margin-bottom: 1.125rem; }
.bg-pale .card-icon { background: var(--pale); }

.check-list { list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; color: rgba(20,35,27,0.8); padding: 0.3125rem 0; font-weight: 500; }
.check-list li::before { content: '\2713'; color: var(--green-text); font-weight: 800; flex-shrink: 0; }
.card .check-list { margin-top: auto; }

/* path cards (home chooser) */
.path-card {
  display: flex; flex-direction: column; text-decoration: none; background: var(--white); border-radius: 18px;
  border: 2px solid var(--line); padding: 2rem 1.75rem; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.path-card:hover { border-color: var(--green); box-shadow: 0 10px 34px rgba(0,191,99,0.14); transform: translateY(-4px); }
.path-card .path-who { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-text); margin-bottom: 0.625rem; }
.path-card h3 { font-size: 1.375rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.625rem; }
.path-card p { flex: 1; margin-bottom: 1.25rem; }
.path-card .path-go { font-size: 0.9375rem; font-weight: 700; color: var(--text); display: inline-flex; align-items: center; gap: 0.375rem; transition: gap 0.2s, color 0.2s; }
.path-card:hover .path-go { gap: 0.625rem; color: var(--green-text); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: step; }
.steps.three { grid-template-columns: repeat(3, 1fr); }
.step { background: var(--white); border: 1.5px solid var(--line); border-radius: 16px; padding: 1.625rem 1.375rem; counter-increment: step; }
.step::before {
  content: counter(step); width: 2rem; height: 2rem; border-radius: 50%; background: var(--green); color: var(--white);
  font-size: 0.875rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 0.875rem;
}
.step h3 { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; line-height: 1.65; }

/* callouts */
.callout { background: var(--pale); border-left: 4px solid var(--green); border-radius: 8px; padding: 1.125rem 1.375rem; }
.callout p { color: var(--text); line-height: 1.7; }
.callout strong { color: var(--green-text); }
.callout + .callout { margin-top: 1rem; }

/* sponsor credit mock-up */
.credit-mock { background: var(--white); border: 1.5px solid var(--line); border-radius: 14px; overflow: hidden; }
.credit-mock-bar { background: var(--pale); border-bottom: 1.5px solid var(--line); padding: 0.5rem 0.875rem; display: flex; gap: 0.375rem; }
.credit-mock-bar span { width: 0.625rem; height: 0.625rem; border-radius: 50%; background: rgba(20,35,27,0.15); }
.credit-mock-body { padding: 1.25rem 1.375rem; }
.credit-mock-body .fake-line { height: 0.5rem; border-radius: 4px; background: rgba(20,35,27,0.08); margin-bottom: 0.5rem; }
.credit-panel { margin-top: 1rem; border: 2px dashed rgba(0,191,99,0.5); border-radius: 12px; padding: 0.875rem 1rem; background: var(--pale); }
.credit-panel .credit-label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-text); }
.credit-panel .credit-name { font-size: 1rem; font-weight: 700; color: var(--text); }
.credit-panel .credit-link { font-size: 0.8125rem; color: var(--faint); }
.credit-footer { margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--line); font-size: 0.75rem; color: var(--faint); }

/* pills + community cards */
.pill { display: inline-block; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 100px; padding: 0.25rem 0.75rem; }
.pill-green { background: var(--pale); color: var(--green-text); border: 1.5px solid rgba(0,191,99,0.35); }
.pill-outline { background: var(--white); color: var(--muted); border: 1.5px solid rgba(20,35,27,0.18); }
.community-card { border: 2px dashed rgba(20,35,27,0.18); border-radius: 16px; padding: 1.75rem 1.5rem; background: var(--white); display: flex; flex-direction: column; gap: 0.5rem; }
.community-card h3 { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em; }
.community-card .community-status { font-size: 0.875rem; color: var(--muted); }
.community-card a.community-link { margin-top: auto; padding-top: 0.75rem; font-size: 0.875rem; font-weight: 700; text-decoration: none; color: var(--green-text); }
.community-card a.community-link:hover { text-decoration: underline; }

/* CTA band */
.cta-band { background: var(--text); padding: 4.5rem 5%; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 59px,rgba(255,255,255,0.02) 59px,rgba(255,255,255,0.02) 60px),
    repeating-linear-gradient(90deg,transparent,transparent 59px,rgba(255,255,255,0.02) 59px,rgba(255,255,255,0.02) 60px);
}
.cta-band-inner { position: relative; max-width: 42rem; margin: 0 auto; }
.cta-band h2 { font-size: clamp(1.625rem, 3.4vw, 2.5rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.72); font-size: 1rem; margin-bottom: 1.75rem; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; justify-content: center; }
.cta-band .cta-alt { font-size: 0.875rem; margin-top: 1.25rem; margin-bottom: 0; color: rgba(255,255,255,0.55); }
.cta-band .cta-alt a { color: var(--green); font-weight: 600; }

/* FAQ */
.faq-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.faq-filter button {
  font-family: inherit; font-size: 0.8125rem; font-weight: 600; padding: 0.5rem 1rem; border-radius: 100px; cursor: pointer;
  border: 1.5px solid rgba(20,35,27,0.15); background: var(--white); color: var(--text); transition: background 0.15s, border-color 0.15s;
}
.faq-filter button:hover { border-color: var(--green); }
.faq-filter button[aria-pressed="true"] { background: var(--green); border-color: var(--green); color: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 0.625rem; }
.faq-item { border: 1.5px solid rgba(20,35,27,0.1); border-radius: 12px; overflow: hidden; background: var(--white); transition: border-color 0.2s; }
.faq-item[hidden] { display: none; }
.faq-item.is-open { border-color: var(--green); }
.faq-question {
  width: 100%; background: var(--white); border: none; padding: 1.125rem 1.25rem; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; font-family: inherit; font-size: 0.9375rem; font-weight: 600; color: var(--text); gap: 0.75rem;
}
.faq-question:hover, .faq-item.is-open .faq-question { background: var(--pale); }
.faq-chevron { width: 1.25rem; height: 1.25rem; flex-shrink: 0; transition: transform 0.25s; color: var(--green-text); }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer { overflow: hidden; padding: 0.25rem 1.25rem 1.25rem; font-size: 0.9375rem; color: var(--muted); line-height: 1.75; }
.js .faq-answer { max-height: 0; padding: 0 1.25rem; transition: max-height 0.35s ease; }
.js .faq-item.is-open .faq-answer { max-height: 30rem; padding: 0.25rem 1.25rem 1.25rem; }
.faq-tag { display: inline-block; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-text); margin-bottom: 0.375rem; }

/* CONTACT FORM (light card) */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.contact-item { display: flex; align-items: center; gap: 0.875rem; text-decoration: none; }
.contact-item:hover .contact-value { color: var(--green-text); }
.contact-icon { width: 2.75rem; height: 2.75rem; border-radius: 12px; background: var(--pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 1.125rem; height: 1.125rem; }
.contact-label { font-size: 0.75rem; font-weight: 600; color: var(--faint); letter-spacing: 0.06em; text-transform: uppercase; }
.contact-value { font-size: 0.9375rem; font-weight: 600; color: var(--text); transition: color 0.2s; }
.form-card { background: var(--pale); border: 1.5px solid var(--line); border-radius: 18px; padding: 2rem; }
.form-card-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.375rem; }
.form-card-sub { font-size: 0.875rem; margin-bottom: 1.5rem; }
.cf-field { margin-bottom: 1rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.cf-label { display: block; font-size: 0.75rem; font-weight: 600; color: rgba(20,35,27,0.7); margin-bottom: 0.375rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cf-input, .cf-select, .cf-textarea {
  width: 100%; border: 1.5px solid rgba(20,35,27,0.18); border-radius: 8px; padding: 0.6875rem 0.875rem;
  font-family: inherit; font-size: 0.9375rem; color: var(--text); background: var(--white); outline: none;
  transition: border-color 0.15s; -webkit-appearance: none; appearance: none;
}
.cf-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314231B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1.125rem; padding-right: 2.5rem; }
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color: var(--green); }
.cf-textarea { resize: vertical; min-height: 7rem; }
.cf-submit {
  display: flex; align-items: center; justify-content: center; gap: 0.625rem; width: 100%; background: var(--green); color: var(--white);
  padding: 1rem 1.5rem; border-radius: 100px; border: none; cursor: pointer; font-family: inherit; font-size: 1rem; font-weight: 700;
  transition: filter 0.2s, transform 0.15s;
}
.cf-submit:hover { filter: brightness(0.92); transform: translateY(-2px); }
.cf-note { font-size: 0.8125rem; color: var(--faint); text-align: center; margin-top: 0.875rem; }
.cf-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* CENTRED CARD PAGES (thank-you, 404) */
.center-main { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 7rem 5% 5rem; background: var(--pale); position: relative; }
.center-main::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 59px,rgba(0,191,99,0.025) 59px,rgba(0,191,99,0.025) 60px),
    repeating-linear-gradient(90deg,transparent,transparent 59px,rgba(0,191,99,0.025) 59px,rgba(0,191,99,0.025) 60px);
}
.center-card {
  position: relative; z-index: 2; background: var(--white); border-radius: 20px; border: 1.5px solid var(--line);
  padding: 3rem 2.5rem; max-width: 36rem; width: 100%; text-align: center; box-shadow: 0 1.5rem 3.5rem rgba(20,35,27,0.08);
}
.center-icon { width: 4.5rem; height: 4.5rem; border-radius: 50%; background: var(--pale); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; }
.center-eyebrow { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-text); margin-bottom: 0.75rem; }
.center-code { font-size: clamp(3.5rem, 9vw, 5rem); font-weight: 900; color: var(--green); line-height: 1; letter-spacing: -0.04em; margin-bottom: 0.5rem; }
.center-card h1 { font-size: clamp(1.625rem, 4vw, 2.25rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.875rem; }
.center-card .center-body { font-size: 1rem; line-height: 1.75; margin-bottom: 1.75rem; }
.center-card .center-body strong { color: var(--text); font-weight: 600; }
.center-next { background: var(--pale); border-radius: 12px; padding: 1.375rem 1.5rem; text-align: left; margin-bottom: 1.75rem; }
.center-next-title { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green-text); margin-bottom: 0.75rem; }
.center-steps { list-style: none; counter-reset: cs; }
.center-steps li { counter-increment: cs; display: flex; gap: 0.625rem; align-items: flex-start; font-size: 0.875rem; color: var(--muted); padding: 0.3125rem 0; line-height: 1.55; }
.center-steps li::before {
  content: counter(cs); width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--green); color: var(--white);
  font-size: 0.6875rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.center-links { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.center-links a { font-size: 0.875rem; font-weight: 600; color: var(--muted); text-decoration: none; padding: 0.4375rem 0.9375rem; background: var(--pale); border-radius: 100px; }
.center-links a:hover { background: rgba(0,191,99,0.12); color: var(--text); }

/* LEGAL PAGES (matches the other JW legal pages) */
.page-header { background: var(--green); padding: 8rem 5% 3rem; width: 100%; }
.page-header-inner { max-width: 42rem; margin: 0 auto; }
.page-header-eyebrow { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 0.75rem; }
.page-header-title { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.05; margin-bottom: 0.75rem; letter-spacing: -0.03em; }
.page-header-meta { font-size: 0.8125rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.legal-content { max-width: 42rem; margin: 0 auto; padding: 3rem 5% 4rem; }
.legal-content section { margin-bottom: 2.5rem; }
.legal-content h2 { font-size: 1.375rem; font-weight: 800; margin-bottom: 0.875rem; letter-spacing: -0.02em; }
.legal-content h3 { font-size: 1.0625rem; font-weight: 700; margin: 1.25rem 0 0.625rem; }
.legal-content p { line-height: 1.8; margin-bottom: 0.875rem; }
.legal-content p strong { color: var(--text); font-weight: 600; }
.legal-content a { color: var(--green-text); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { color: var(--text); }
.legal-content ul { padding-left: 1.125rem; margin: 0.75rem 0 1rem; }
.legal-content li { font-size: 0.9375rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.5rem; }
.legal-note { background: var(--pale); border-left: 4px solid var(--green); border-radius: 8px; padding: 1rem 1.25rem; margin: 1.25rem 0; font-size: 0.9375rem; color: var(--text); line-height: 1.7; }
.legal-note strong { color: var(--green-text); }
.price-line { display: flex; align-items: baseline; gap: 0.625rem; margin: 0.25rem 0 1rem; flex-wrap: wrap; }
.price-line .amount { font-size: 1.75rem; font-weight: 800; color: var(--green-text); letter-spacing: -0.02em; }
.price-line .label { font-size: 0.9375rem; color: var(--muted); }
.legal-part { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-text); margin: 2.5rem 0 1.5rem; padding-top: 1.5rem; border-top: 1.5px solid var(--line); }
.legal-cta { background: var(--green); padding: 3rem 5%; text-align: center; width: 100%; }
.legal-cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--white); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.legal-cta p { color: rgba(255,255,255,0.92); margin-bottom: 1.5rem; font-weight: 500; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: start; }
.about-quote { font-size: 1.25rem; font-weight: 700; line-height: 1.5; letter-spacing: -0.02em; margin-bottom: 1.5rem; padding-left: 1.25rem; border-left: 4px solid var(--green); }
.about-body { font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.about-body strong { color: var(--text); font-weight: 600; }
.about-body a { color: var(--green-text); font-weight: 600; }
.photo-slot { aspect-ratio: 4 / 5; border-radius: 16px; border: 2px dashed rgba(20,35,27,0.2); background: var(--pale); display: flex; align-items: center; justify-content: center; text-align: center; padding: 1.5rem; color: var(--faint); font-size: 0.875rem; font-weight: 500; }

/* FOOTER */
.site-footer { background: var(--text); padding: 3.5rem 5% 1.75rem; width: 100%; }
.footer-top { max-width: 70rem; margin: 0 auto; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .nav-logo-sub { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.7; margin-top: 1rem; max-width: 20rem; }
.footer-col h3 { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 600; margin-bottom: 0.875rem; }
.footer-col a { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.75); text-decoration: none; padding: 0.25rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { max-width: 70rem; margin: 0 auto; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 900px) {
  .hero-inner, .page-hero-inner, .section-head, .split, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps.three { grid-template-columns: repeat(2, 1fr); }
  .section-head { gap: 1rem; }
  .hero { padding-top: 7rem; }
  .page-hero { padding-top: 7rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .photo-slot { max-width: 18rem; }
}
@media (max-width: 600px) {
  .steps, .steps.three, .grid-4 { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .center-card { padding: 2.25rem 1.5rem; }
  .form-card { padding: 1.5rem 1.25rem; }
  .nav-logo-sub { max-width: 5.5rem; }
  .nav-contact { padding: 0.5rem 1rem; }
}

/* SCROLL ANIMATION (only when JS is running) */
.js .anim-ready { opacity: 0; transform: translateY(1.25rem); transition: opacity 0.55s ease, transform 0.55s ease; }
.js .anim-ready.anim-done { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .anim-ready { opacity: 1; transform: none; transition: none; }
}

/* FUNDING EXAMPLE (how-it-works) */
.fund-card { background: var(--white); border: 1.5px solid var(--line); border-radius: 16px; padding: 1.5rem 1.75rem; }
.fund-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line); font-size: 0.9375rem; font-weight: 500; }
.fund-row span:last-child { font-weight: 700; }
.fund-row.fund-total { border-bottom: none; color: var(--green-text); font-weight: 800; }
.fund-bar { height: 0.625rem; border-radius: 100px; background: rgba(20,35,27,0.08); overflow: hidden; margin-top: 0.5rem; }
.fund-bar span { display: block; height: 100%; background: var(--green); border-radius: 100px; }
