/* Care Compass Asia — global styles (faithful to original design language) */
:root {
  --cta: #DBE06A;
  --cta-hover: #E7EB8B;
  --green-900: #1E4433;
  --green-800: #275641;
  --green-700: #33684F;
  --green-100: #DCE7DC;
  --green-50: #EAF0EA;
  --bg-light: #EFF2E2;
  --bg-lighter: #F7F8EC;
  --ink: #1E3A2F;
  --ink-soft: #57685B;
  --ink-mute: #5F6B64;
  --cream: #F7F5EC;
  --line: #E1E5D2;
  --font-serif: "Fraunces", "Lora", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
h1, h2, .section-head p, .beyond p, .pull-quote, .hero .lede { text-wrap: balance; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg-lighter);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(33, 73, 58, 0.97);
  backdrop-filter: blur(8px);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #DBE06A;
  font-weight: 800; font-size: 16.5px; letter-spacing: -0.01em;
  flex-shrink: 0; white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 30px; min-width: 0; }
.nav a {
  text-decoration: none; color: #D3DFD5; font-size: 15px; font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 1060px) {
  .nav { gap: 22px; }
  .nav a[href*="how-we-help"], .nav a[href*="how-it-works"] { display: none; }
}
@media (max-width: 620px) {
  .site-header .container { gap: 12px; height: 58px; }
  .nav { gap: 12px; }
  .nav a:not(.nav-cta) { display: none; }
  .nav .nav-cta { padding: 8px 15px; font-size: 13.5px; }
  .brand { font-size: 14.5px; gap: 7px; }
  .brand svg { width: 24px; height: 24px; }
}
.nav a:hover { color: #fff; }
.nav .nav-cta {
  background: var(--cta); color: var(--green-900);
  padding: 9px 20px; border-radius: 100px; font-weight: 600;
  white-space: nowrap;
}
.nav .nav-cta:hover { background: var(--cta-hover); color: var(--green-900); }
@media (max-width: 720px) {
  .nav { gap: 16px; }
  .nav a[href*="how-we-help"], .nav a[href*="how-it-works"], .nav a[href*="faq"] { display: none; }
  .nav a { font-size: 14px; }
  .nav .nav-cta { padding: 8px 16px; font-size: 14px; }
  .brand { font-size: 15px; }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--green-800);
  color: #fff;
  text-align: center;
  padding: 104px 0 112px;
}
@media (max-width: 640px) {
  .hero { padding: 72px 0 80px; }
  .hero-badge { font-size: 13px; margin-bottom: 26px; }
  .hero p.lede { margin-bottom: 34px; }
  .btn { font-size: 15.5px; padding: 14px 26px; }
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #D7E2D8;
  font-size: 14.5px; font-weight: 500;
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 36px;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #F5F7F2;
  max-width: 17ch;
  margin: 0 auto 32px;
}
.hero p.lede {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: #AFC3B2;
  max-width: 60ch;
  margin: 0 auto 44px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
  text-decoration: none; font-weight: 600; font-size: 16.5px;
  padding: 16px 32px; border-radius: 100px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.98); }
.btn-light { background: var(--cta); color: var(--green-900); }
.btn-light:hover { background: var(--cta-hover); }
.btn-solid { background: var(--cta); color: var(--green-900); }
.btn-solid:hover { background: var(--cta-hover); }
.btn .arrow { font-size: 18px; line-height: 1; }

/* ---------- Section scaffolding ---------- */
section { padding: 84px 0; }
@media (max-width: 640px) { section { padding: 60px 0; } .section-head { margin-bottom: 38px; } }
@media (max-width: 760px) {
  section { padding: 60px 0; }
  .hero { padding: 84px 0 92px; }
  .section-head { margin-bottom: 40px; }
}
.section-alt { background: var(--bg-light); }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-head p { color: var(--ink-soft); font-size: 16px; }

/* ---------- Icon chip ---------- */
.icon-chip {
  width: 48px; height: 48px; border-radius: 12px;
  background: #A9CFB6; color: var(--green-900);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-circle {
  width: 48px; height: 48px; border-radius: 14px;
  background: #A9CFB6; color: var(--green-900);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

/* ---------- Pain point cards ---------- */
.pain-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1020px; margin: 0 auto;
}
@media (max-width: 760px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 30px 32px;
  display: flex; gap: 20px; align-items: flex-start;
}
.pain-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.pain-card p { font-size: 14.5px; color: var(--ink-soft); }
.pain-outro {
  text-align: center; max-width: 600px; margin: 48px auto 0;
  font-size: 17.5px; color: var(--ink-soft);
}

/* ---------- Services ---------- */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1060px; margin: 0 auto;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-item {
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 28px 30px;
}
.svc-item h3 { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.svc-item p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- How to get started (tile + connector) ---------- */
.steps-panel {
  background: #EAF0DB; border-radius: 24px;
  padding: 60px 48px; max-width: 1020px; margin: 0 auto;
}
.steps {
  display: grid; grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: start;
}
.step { text-align: center; }
.step-tile {
  width: 76px; height: 76px; border-radius: 20px;
  background: #93C4A4; color: var(--green-900);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.step h3 { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.step p { font-size: 14px; color: var(--ink-soft); max-width: 30ch; margin: 0 auto; }
.step-line {
  height: 3px; border-radius: 2px; background: var(--green-700);
  margin-top: 37px;
}
@media (max-width: 760px) {
  .steps-panel { padding: 32px 22px; border-radius: 18px; }
  .steps { grid-template-columns: 1fr; gap: 6px; }
  .step { display: flex; flex-wrap: wrap; text-align: left; gap: 0 14px; align-items: center; }
  .step-tile { margin: 0; flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; }
  .step h3 { flex: 1; min-width: 0; font-size: 16px; margin: 0; }
  .step p { flex: 0 0 100%; font-size: 14px; margin: 10px 0 0; max-width: none; }
  .step-line { width: 3px; height: 24px; margin: 2px 0 2px 27px; }
}

/* ---------- Trust strip ---------- */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1020px; margin: 0 auto;
}
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item {
  text-align: left;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 28px 30px;
}
.trust-item .icon-circle { margin: 0 0 18px; }
@media (max-width: 760px) {
  .trust-item { display: flex; flex-wrap: wrap; gap: 0 14px; align-items: center; padding: 22px 20px; }
  .trust-item .icon-circle { margin: 0; flex-shrink: 0; width: 44px; height: 44px; }
  .trust-item h3 { flex: 1; min-width: 0; margin: 0; }
  .trust-item p { flex: 0 0 100%; margin: 10px 0 0; max-width: none; }
}
.trust-item h3 { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.trust-item p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Beyond care ---------- */
.beyond { text-align: center; max-width: 780px; margin: 0 auto; }
.beyond h2 .hl { white-space: nowrap; }
.beyond p { color: var(--ink-soft); font-size: 16px; }

/* ---------- Form ---------- */
.form-shell {
  max-width: 660px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 48px 52px;
}
@media (max-width: 640px) { .form-shell { padding: 34px 24px; } }
.form-shell .f-label {
  display: block; font-weight: 700; font-size: 15px;
  color: var(--ink); margin: 28px 0 9px;
}
.form-shell .f-first { margin-top: 0; }
.q-label {
  display: block; font-weight: 700; font-size: 15px;
  color: var(--ink); margin: 0 0 11px;
}
.form-shell fieldset { margin: 28px 0 0; }
#call-time { margin: 0; }
.input-other { margin-top: 10px; }
.form-shell .input-other {
  font-size: 14.5px; padding: 11px 16px;
}
.q-sub { font-weight: 500; font-size: 13px; color: var(--ink-mute); }
.form-shell input[type="text"],
.form-shell input[type="email"],
.form-shell input[type="tel"],
.form-shell textarea {
  width: 100%; font-family: var(--font-sans); font-size: 15px;
  padding: 12px 15px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--bg-lighter); color: var(--ink);
}
.form-shell input:focus, .form-shell textarea:focus {
  outline: 2px solid var(--green-700); outline-offset: 1px; background: #fff;
}
.form-hint { font-size: 13.5px; color: var(--ink-mute); margin-top: 7px; }
.choice { display: flex; align-items: flex-start; gap: 11px; padding: 7px 0; font-size: 16px; color: var(--ink-soft); }
.choice input { margin-top: 5px; accent-color: var(--green-800); width: 17px; height: 17px; }
fieldset { border: none; }
.form-shell button {
  display: block; width: auto; min-width: 300px;
  margin: 36px auto 0;
  background: var(--cta); color: var(--green-900);
  font-family: var(--font-sans); font-weight: 700; font-size: 16.5px;
  padding: 15px 48px; border: none; border-radius: 100px; cursor: pointer;
}
@media (max-width: 480px) { .form-shell button { width: 100%; min-width: 0; } }
.form-shell button:hover { background: var(--cta-hover); }
.form-privacy { text-align: center; font-size: 13.5px; color: var(--ink-mute); margin-top: 16px; }
.form-privacy a { color: var(--green-700); }

/* ---------- FAQ / inner pages ---------- */
.page-hero {
  background: var(--green-800); color: #fff;
  text-align: center;
  padding: 88px 0 80px;
}
.page-hero h1 {
  font-weight: 800;
  font-size: clamp(34px, 4.8vw, 52px); letter-spacing: -0.02em;
  color: #F5F7F2;
  margin-bottom: 16px;
}
.page-hero p { color: #AFC3B2; font-size: 18px; max-width: 58ch; margin: 0 auto; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details {
  background: transparent; border: none;
  border-bottom: 1px solid var(--line); border-radius: 0;
  margin: 0; padding: 0;
}
.faq-cat {
  display: table;
  font-size: 10px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: #465C4E;
  background: #E7EFDD; border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 8px;
}
.faq-list summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-weight: 600; font-size: 15.5px; color: #3B4C41;
  padding: 18px 0;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; font-size: 26px; font-weight: 400;
  color: var(--green-700); flex-shrink: 0; line-height: 1;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list .faq-a { padding: 0 0 18px; color: var(--ink-soft); font-size: 14.5px; max-width: 66ch; }
.faq-list .faq-a p + p { margin-top: 12px; }
.faq-list a { color: var(--green-700); }

/* ---------- Legal / prose pages ---------- */
.prose { max-width: 740px; margin: 0 auto; }
.prose h2 { font-size: 26px; margin: 46px 0 14px; }
.prose h2:first-of-type { margin-top: 0; }
.prose p, .prose li { color: var(--ink-soft); font-size: 16px; }
.prose ul { padding-left: 22px; margin: 12px 0; }
.prose li { margin: 6px 0; }
.prose .updated { font-size: 14px; color: var(--ink-mute); margin-bottom: 38px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--green-800); color: #fff;
  text-align: center; padding: 92px 0;
}
.cta-band h2 { color: #F5F7F2; }
.cta-band p { color: #AFC3B2; max-width: 54ch; margin: 0 auto 36px; font-size: 17.5px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-800); color: #AFC3B2;
  text-align: center;
  padding: 56px 0 44px; font-size: 15px;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 9px;
  color: #DBE06A; font-weight: 800; font-size: 16px;
  margin-bottom: 26px;
}
.footer-links {
  display: flex; gap: 12px 30px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 30px;
}
.footer-links a { color: #D3DFD5; text-decoration: none; font-size: 14.5px; font-weight: 600; }
.footer-links a:hover { color: #fff; }
.footer-disclaimer {
  max-width: 640px; margin: 0 auto;
  font-size: 13.5px; line-height: 1.75; color: #B2C4B5;
  padding: 0 12px;
}
.footer-rule {
  width: 56px; height: 1px; background: rgba(255,255,255,0.22);
  margin: 26px auto;
}
.footer-copy { font-size: 13px; color: #B2C4B5; }
@media (max-width: 640px) {
  .site-footer { padding: 44px 0 36px; }
  .footer-links { gap: 10px 22px; }
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
:focus-visible { outline: 2px solid var(--green-700); outline-offset: 2px; }
.hero :focus-visible, .page-hero :focus-visible, .cta-band :focus-visible,
.site-header :focus-visible, .site-footer :focus-visible { outline-color: var(--cream); }

/* ---------- FAQ tags (homepage) ---------- */
.faq-tags {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin: -12px 0 36px;
}
.faq-tag {
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 600;
  color: var(--ink-soft); background: #fff;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 17px; cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.faq-tag:hover { border-color: var(--green-700); color: var(--green-800); }
.faq-tag.is-active {
  background: var(--green-800); color: #fff; border-color: var(--green-800);
}
.tag-chip {
  display: inline-block; vertical-align: 2px;
  font-size: 11.5px; font-weight: 600;
  color: var(--green-700); background: var(--green-50);
  border-radius: 100px; padding: 3px 12px; margin-left: 12px;
  white-space: nowrap;
}
@media (max-width: 640px) { .tag-chip { display: none; } }

.wm { letter-spacing: -0.02em; }
.wm-a {
  color: #DBE06A;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.42em;
  line-height: 0.8;
  margin-left: -1px;
  vertical-align: -0.06em;
}
.tm {
  font-size: 8px; font-weight: 500; opacity: 0.7;
  position: relative; top: -7px; margin-left: 1px;
}
.footer-brand .wm { font-weight: 800; }

/* ---------- About page ---------- */
.story { max-width: 700px; margin: 0 auto; }
.story p { color: var(--ink-soft); font-size: 16px; line-height: 1.8; margin-bottom: 22px; }
@media (max-width: 640px) { .story p { font-size: 16px; line-height: 1.8; } }
.story em { font-style: italic; color: var(--ink); }
.pull-quote {
  max-width: 640px; margin: 56px auto 0; text-align: center;
}
.pull-quote p {
  font-family: var(--font-serif); font-weight: 600; font-style: italic;
  font-size: clamp(22px, 3vw, 30px); line-height: 1.45; color: var(--green-800);
}
.pull-quote::before {
  content: ''; display: block; width: 56px; height: 3px;
  background: var(--green-100); margin: 0 auto 28px; border-radius: 2px;
}
.beliefs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 56px;
  max-width: 940px; margin: 0 auto;
}
@media (max-width: 720px) { .beliefs { grid-template-columns: 1fr; } }
.belief h3 { font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.belief p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Stat strip (Our story) ---------- */
.stat-strip {
  max-width: 700px; margin: 8px auto 30px;
  background: var(--bg-light); border-radius: 16px;
  padding: 34px 38px 12px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px;
}
@media (max-width: 620px) { .stat-strip { grid-template-columns: 1fr; padding: 28px 24px 10px; } }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-serif); font-weight: 600;
  font-size: 40px; line-height: 1.1; color: var(--green-800);
}
.stat-label { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.stat-strip .stat-source, .stat-source {
  grid-column: 1 / -1;
  font-size: 9.5px !important; line-height: 1.45;
  color: var(--ink-mute);
  border-top: 1px solid var(--line); padding-top: 7px; margin: -6px 0 0 !important;
}
.stat-source a { color: inherit; text-decoration: none; }
.stat-source a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .pain-card { padding: 24px 22px; gap: 16px; }
  .icon-chip { width: 42px; height: 42px; }
  .form-shell button { font-size: 16px; }
  .page-hero { padding: 64px 0 56px; }
}

/* ---------- CTA reassurance chips ---------- */
.assure {
  text-align: center; margin-top: 14px;
  font-size: 13px; font-weight: 500; color: var(--ink-mute);
}

/* ---------- Location split row ---------- */
.loc-row { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 10px; }
@media (max-width: 640px) { .loc-row { grid-template-columns: 1fr; gap: 10px; } }

/* ---------- Script emphasis (mixed-type highlight) ---------- */
.hl {
  font-family: 'Caveat', 'Comic Sans MS', cursive;
  font-weight: 700;
  font-size: 1.32em;
  line-height: 0.9;
  color: var(--green-700);
  padding: 0 0.04em;
}
.hero .hl, .page-hero .hl, .cta-band .hl { color: #DBE06A; }
.pull-quote .hl { font-size: 1.28em; }

.beyond .icon-circle { margin: 0 auto 20px; }

/* ---------- Interlude band (beyond care) ---------- */
.interlude { background: #DEEACE; }
.interlude h2 { color: var(--green-900); }
.interlude .beyond p { color: #4E6152; }
.interlude .hl { color: var(--green-700); }


/* ---------- Pill choice chips ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 9px; }
.pill { position: relative; cursor: pointer; }
.pill input {
  position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none;
}
.pill span {
  display: inline-block; font-size: 14px; font-weight: 600;
  color: var(--ink-soft); background: var(--bg-lighter);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 16px;
  transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}
.pill:hover span { border-color: var(--green-700); color: var(--green-800); }
.pill input:checked + span {
  background: var(--green-800); color: #fff; border-color: var(--green-800);
}
.pill input:focus-visible + span {
  outline: 2px solid var(--green-700); outline-offset: 2px;
}

/* ---------- Location sub-labels ---------- */
.loc-field { display: flex; flex-direction: column; }
.sub-label {
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  margin-bottom: 6px;
}
.sub-label .opt { font-weight: 500; color: var(--ink-mute); font-size: 12.5px; }
.footer-copy a { color: #B2C4B5; text-decoration: underline; text-underline-offset: 2px; }
.footer-copy a:hover { color: #C4D2C6; }


/* ---------- Footer CTA hint (marker stroke) ---------- */
.footer-links .footer-cta {
  color: #DBE06A;
  position: relative;
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-links .footer-cta::after {
  content: '';
  position: absolute; left: -14px; right: -22px; bottom: -17px;
  height: 19px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 24' preserveAspectRatio='none'><path d='M3 10.5 C 32 9.6, 72 7 , 110 4.4 S 140 2.2, 146.5 2 L 146.8 4.2 C 128 5.4, 96 8.6, 58 12 S 10 15.8, 3.6 15.6 Z' fill='%23DBE06A'/><path d='M16 19.4 C 42 17.8, 66 16 , 86 14.4 L 86.2 16 C 64 17.9, 40 19.8, 16.4 21.2 Z' fill='%23DBE06A' opacity='0.85'/></svg>") no-repeat center / 100% 100%;
  transition: transform 0.18s ease, filter 0.18s ease;
}
.footer-links .footer-cta:hover { color: #E7EB8B; }
.footer-links .footer-cta:hover::after { transform: translateY(-3px); filter: brightness(1.12); }

.f-label .opt { font-weight: 500; color: var(--ink-mute); font-size: 13px; }

.label-hint { font-weight: 500; font-size: 12.5px; color: var(--ink-mute); letter-spacing: 0; }

/* ---------- Motion (respects reduced-motion) ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* scroll reveal */
  .rv { opacity: 0; transform: translateY(16px); }
  .rv.in {
    opacity: 1; transform: none;
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 0.9, 0.3, 1);
    transition-delay: var(--rvd, 0ms);
  }
  /* hero entrance */
  .hero h1, .hero .lede, .hero .btn, .hero .hero-badge {
    opacity: 0; transform: translateY(14px);
    animation: heroIn 0.7s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
  }
  .hero .hero-badge { animation-delay: 0.05s; }
  .hero h1 { animation-delay: 0.15s; }
  .hero .lede { animation-delay: 0.32s; }
  .hero .btn { animation-delay: 0.45s; }
  @keyframes heroIn { to { opacity: 1; transform: none; } }
  /* steps connector draws itself */
  .steps-panel .step-line { transform: scaleX(0); transform-origin: left center; }
  .steps-panel.in .step-line { transition: transform 0.7s ease 0.5s; transform: scaleX(1); }
  @media (max-width: 760px) {
    .steps-panel .step-line { transform: scaleY(0); transform-origin: top center; }
    .steps-panel.in .step-line { transform: scaleY(1); }
  }
}

/* ---------- Blog / article typography (ready for future posts) ---------- */
.post-head { max-width: 720px; margin: 0 auto 40px; }
.post-head .post-cat {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: #465C4E; background: #E7EFDD;
  border-radius: 100px; padding: 4px 11px; margin-bottom: 14px;
}
.post-head h1 { font-family: var(--font-serif); font-size: clamp(28px, 3.6vw, 40px); line-height: 1.2; color: var(--ink); margin-bottom: 14px; }
.post-meta { font-size: 13.5px; color: var(--ink-mute); }
.post-body { max-width: 680px; margin: 0 auto; }
.post-body p { font-size: 16px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 22px; }
.post-body h2 { font-family: var(--font-serif); font-size: 24px; color: var(--ink); margin: 40px 0 14px; }
.post-body h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 30px 0 10px; }
.post-body ul, .post-body ol { margin: 0 0 22px 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote {
  border-left: 3px solid #A9CFB6; padding: 4px 0 4px 20px; margin: 26px 0;
  font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--ink);
}
.post-body a { color: var(--green-700); text-decoration: underline; text-underline-offset: 2px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 26px 28px; text-decoration: none; display: block;
}
.blog-card:hover { border-color: var(--green-700); }
.blog-card .post-cat { margin-bottom: 10px; }
.blog-card h2 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 12px; }
.blog-card .post-meta { font-size: 12.5px; }

/* ---------- Customer stories (ready for future) ---------- */
.story-facts {
  display: flex; flex-wrap: wrap; gap: 10px;
  max-width: 680px; margin: 0 auto 36px;
}
.story-facts span {
  font-size: 13px; font-weight: 600; color: var(--green-800);
  background: #E7EFDD; border-radius: 100px; padding: 7px 16px;
}
.story-quote {
  max-width: 680px; margin: 36px auto;
  font-family: var(--font-serif); font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.5; color: var(--ink); text-align: center;
}
.story-quote .hl { font-size: 1.25em; }
.story-quote cite { display: block; margin-top: 14px; font-family: var(--font-sans); font-style: normal; font-size: 13.5px; color: var(--ink-mute); }
.story-disclaimer {
  max-width: 680px; margin: 30px auto 0;
  font-size: 12.5px; color: var(--ink-mute); text-align: center;
}
