/* ===== Design Tokens ===== */
:root {
  --bg: #fdfbf7;         /* warm cream */
  --bg-alt: #f1eee7;     /* soft beige */
  --ink: #1a3636;        /* deep forest green */
  --ink-soft: #677d6a;   /* muted sage */
  --brand: #1a3636;      /* deep forest green */
  --brand-dark: #122727;
  --brand-soft: #e7ede8; /* pale sage tint */
  --accent: #c5a059;     /* muted gold */
  --danger: #b23b2e;
  --white: #ffffff;
  --line: rgba(26, 54, 54, 0.12);
  --shadow: 0 24px 60px -24px rgba(26, 54, 54, 0.28);
  --radius: 16px;
  --radius-sm: 12px;
  --maxw: 1160px;
  --wa-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M17.5 14.4c-.3-.2-1.7-.9-2-1-.3-.1-.5-.2-.6.2-.2.3-.7.9-.9 1.1-.2.2-.3.2-.6.1-1.7-.9-2.9-1.6-4-3.5-.3-.5.3-.5.8-1.6.1-.2 0-.4 0-.5 0-.2-.6-1.5-.9-2.1-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.4-.3.3-1 1-1 2.4s1 2.8 1.2 3c.2.2 2 3.1 5 4.3 1.9.7 2.6.8 3.5.7.6-.1 1.7-.7 1.9-1.4.2-.7.2-1.2.2-1.4-.1-.1-.3-.2-.6-.3zM12 2a10 10 0 00-8.6 15l-1.4 5 5.2-1.3A10 10 0 1012 2z'/></svg>");
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(26,54,54,.05), transparent 60%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Fraunces", Georgia, serif; font-weight: 500; line-height: 1.12; letter-spacing: -0.01em; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--brand-soft); }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 14px; }
.section-head .eyebrow::after { content: ""; display: block; width: 34px; height: 2px; background: var(--accent); margin: 10px auto 0; border-radius: 2px; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 1.5px solid transparent; transition: all .25s ease;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 24px -12px rgba(26,54,54,.5); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--brand-dark); border-color: var(--brand); }
.btn-ghost:hover { background: var(--brand-soft); }
.btn-whatsapp { background: var(--brand); color: #fff; box-shadow: 0 12px 24px -14px rgba(26,54,54,.55); }
.btn-whatsapp::before {
  content: ""; width: 17px; height: 17px; margin-right: 1px; background: currentColor;
  -webkit-mask: var(--wa-icon) center/contain no-repeat; mask: var(--wa-icon) center/contain no-repeat;
}
.btn-whatsapp:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 251, 247, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { background: rgba(253,251,247,.9); border-color: var(--line); box-shadow: 0 10px 30px -22px rgba(26,54,54,.5); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { font-family: "Fraunces", serif; font-size: 1.5rem; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; letter-spacing: -0.01em; }
.brand-logo {
  width: 40px; height: 40px; flex: none; display: block; border-radius: 12px;
  box-shadow: 0 8px 18px -10px rgba(26,54,54,.6);
}
.brand-text { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.nav-cta) { position: relative; font-size: 0.94rem; color: var(--ink-soft); font-weight: 500; padding: 4px 0; transition: color .2s; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--accent); border-radius: 2px; transition: width .25s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--brand); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { padding: 10px 20px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero { padding: 72px 0 40px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,54,54,.08), transparent 68%);
  z-index: 0;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 20px; }
.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 30px; }
.lede strong { color: var(--brand-dark); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-quote { border-left: 3px solid var(--accent); padding-left: 18px; max-width: 440px; }
.hero-quote p { font-style: italic; color: var(--ink); }
.hero-quote span { font-size: 0.88rem; color: var(--ink-soft); }

/* Hero image */
.hero-visual { display: flex; justify-content: center; }
.hero-photo {
  position: relative; width: 100%; max-width: 460px;
  border-radius: 24px; overflow: visible;
}
.hero-photo img {
  width: 100%; border-radius: 24px; display: block;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.hero-badge {
  position: absolute; left: -18px; bottom: 26px;
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 12px 16px; box-shadow: 0 18px 40px -18px rgba(26,54,54,.4);
}
.hero-badge-icon {
  width: 38px; height: 38px; flex: none; display: grid; place-items: center;
  border-radius: 12px; background: var(--brand-soft); color: var(--brand); font-size: 1.05rem;
}
.hero-badge strong { display: block; font-family: "Fraunces", serif; font-size: 0.98rem; color: var(--ink); }
.hero-badge span { font-size: 0.78rem; color: var(--ink-soft); }

/* Hero card (legacy) */
.hero-card {
  width: 100%; max-width: 380px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden;
}
.hero-card-head { display: flex; align-items: center; gap: 10px; padding: 16px 20px; background: var(--brand); color: #fff; font-weight: 600; font-size: 0.9rem; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: #7dffcf; box-shadow: 0 0 0 0 rgba(125,255,207,.7); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(125,255,207,.7);} 70%{box-shadow:0 0 0 12px rgba(125,255,207,0);} 100%{box-shadow:0 0 0 0 rgba(125,255,207,0);} }
.hero-timeline { list-style: none; padding: 18px 20px; }
.hero-timeline li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--ink-soft); padding: 9px 0; border-bottom: 1px dashed var(--line); }
.hero-timeline li:last-child { border-bottom: none; }
.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot.green { background: #4c7a5f; } .dot.blue { background: var(--ink-soft); } .dot.amber { background: var(--accent); }
.hero-card-foot { display: flex; gap: 10px; padding: 0 20px 20px; }
.mini-btn { flex: 1; padding: 10px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--bg-alt); font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: .2s; }
.mini-btn:hover { background: var(--brand-soft); }
.mini-btn.danger { background: var(--danger); color: #fff; border-color: var(--danger); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line); }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: -10px; top: 12%; height: 76%; width: 1px; background: var(--line); }
.stat strong { display: block; font-family: "Fraunces", serif; font-size: 2.6rem; color: var(--brand-dark); line-height: 1; margin-bottom: 8px; }
.stat strong.stat-accent { color: var(--accent); }
.stat span { font-size: 0.86rem; color: var(--ink-soft); }

/* ===== Services ===== */
.services { background: var(--bg); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; transition: transform .3s, box-shadow .3s, border-color .3s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: var(--brand-soft); color: var(--brand); font-size: 1.4rem; margin-bottom: 20px; }
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); margin-bottom: 16px; }
.card ul { list-style: none; }
.card ul li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 8px; }
.card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

/* ===== Instant Care ===== */
.instant { background: linear-gradient(150deg, var(--brand-dark), var(--brand)); color: #fff; }
.instant-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.instant-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.instant-copy > p { color: rgba(255,255,255,.85); max-width: 480px; margin-bottom: 28px; }
.instant-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 30px; }
.instant-item { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-sm); padding: 16px; }
.instant-item strong { display: block; font-family: "Fraunces", serif; font-size: 1.15rem; margin-bottom: 6px; }
.instant-item p { font-size: 0.85rem; color: rgba(255,255,255,.78); }
.instant .btn-primary { background: #fff; color: var(--brand-dark); }
.instant .btn-primary:hover { background: var(--bg-alt); }
/* On the dark section, use a clean cream WhatsApp button so it doesn't clash */
.instant .btn-whatsapp { background: #fff; color: var(--brand-dark); box-shadow: 0 12px 24px -14px rgba(0,0,0,.5); }
.instant .btn-whatsapp:hover { background: var(--bg-alt); }

.instant-visual { display: flex; justify-content: center; }
.dispatch-card { width: 100%; max-width: 380px; background: #fff; color: var(--ink); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.dispatch-head { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.92rem; margin-bottom: 16px; color: var(--brand-dark); }
.instant-list { list-style: none; }
.instant-list li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--ink-soft); font-size: 0.95rem; }
.instant-list li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.dispatch-map { position: relative; height: 180px; border-radius: var(--radius-sm); background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 12px, #ece4d6 12px, #ece4d6 24px); overflow: hidden; }
.ping { position: absolute; top: 40px; left: 44px; width: 14px; height: 14px; border-radius: 50%; background: var(--danger); box-shadow: 0 0 0 0 rgba(201,80,58,.6); animation: pulse2 1.6s infinite; }
@keyframes pulse2 { 0%{box-shadow:0 0 0 0 rgba(201,80,58,.6);} 70%{box-shadow:0 0 0 18px rgba(201,80,58,0);} 100%{box-shadow:0 0 0 0 rgba(201,80,58,0);} }
.home-pin { position: absolute; bottom: 26px; right: 40px; font-size: 1.6rem; }
.route { position: absolute; top: 52px; left: 56px; width: 200px; height: 90px; border-top: 3px dashed var(--brand); border-right: 3px dashed var(--brand); border-radius: 0 40px 0 0; }
.dispatch-eta { margin-top: 16px; }
.dispatch-eta strong { display: block; font-family: "Fraunces", serif; font-size: 1.3rem; color: var(--brand-dark); }
.dispatch-eta span { font-size: 0.85rem; color: var(--ink-soft); }

/* ===== How It Works ===== */
.how { background: var(--bg-alt); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); }
.step-num { font-family: "Fraunces", serif; font-size: 2.4rem; color: var(--accent); display: block; margin-bottom: 12px; }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); }

/* ===== Pricing ===== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plans-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
.plan-sub { color: var(--ink-soft); font-size: 0.95rem; margin: -6px 0 18px; }
.tag-open { background: #2f7a5f; color: #fff; display: inline-flex; align-items: center; gap: 7px; }
.tag-open::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #a9f0cf; box-shadow: 0 0 0 0 rgba(169,240,207,.8); animation: pulse 1.8s infinite; }
.tag-waitlist { background: var(--accent); color: #3d2f12; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column; position: relative; transition: transform .3s, box-shadow .3s; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan.featured { border-color: var(--brand); box-shadow: var(--shadow); }
.plan .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 5px 14px; border-radius: 999px; letter-spacing: .04em; }
.plan h3 { font-size: 1.4rem; margin-bottom: 8px; }
.price { font-family: "Fraunces", serif; font-size: 2.2rem; color: var(--brand-dark); margin-bottom: 20px; }
.price span { font-size: 0.95rem; color: var(--ink-soft); font-family: "Inter", sans-serif; }
.plan ul { list-style: none; margin-bottom: 26px; flex: 1; }
.plan ul li { position: relative; padding-left: 24px; margin-bottom: 10px; color: var(--ink-soft); font-size: 0.94rem; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

/* ===== Trust & Safety ===== */
.trust { background: var(--bg-alt); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: transform .3s, box-shadow .3s, border-color .3s; }
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.trust-card h3 { font-size: 1.15rem; margin: 14px 0 8px; }
.trust-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* ===== Testimonials ===== */
.testimonials { background: var(--bg-alt); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
blockquote { background: #fff; border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); }
blockquote p { font-family: "Fraunces", serif; font-size: 1.12rem; margin-bottom: 16px; }
blockquote cite { font-style: normal; font-size: 0.86rem; color: var(--ink-soft); font-weight: 500; }

/* ===== CTA ===== */
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 48px; box-shadow: var(--shadow); }
.cta-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.cta-copy p { color: var(--ink-soft); }
.cta-note { margin-top: 14px; font-size: 0.9rem; color: var(--brand); font-weight: 600; }
.cta-form .field { margin-bottom: 16px; }
.cta-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.cta-form input, .cta-form textarea, .cta-form select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: inherit; font-size: 0.95rem; background: var(--bg); color: var(--ink); transition: border-color .2s; }
.cta-form input:focus, .cta-form textarea:focus, .cta-form select:focus { outline: none; border-color: var(--brand); }
.cta-copy .btn-whatsapp { margin-top: 8px; }
.perks-list { list-style: none; margin-top: 20px; }
.perks-list li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--ink-soft); font-size: 0.95rem; }
.perks-list li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.form-status { margin-top: 12px; font-size: 0.9rem; font-weight: 600; min-height: 20px; }
.form-status.ok { color: var(--brand); }
.form-status.err { color: var(--danger); }

/* ===== FAQ ===== */
.accordion { max-width: 760px; margin: 0 auto; }
.acc-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; margin-bottom: 14px; overflow: hidden; }
.acc-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 22px; font-size: 1.05rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: "Fraunces", serif; color: var(--ink); }
.acc-q span { color: var(--brand); font-size: 1.4rem; transition: transform .3s; }
.acc-item.open .acc-q span { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc-a p { padding: 0 22px 20px; color: var(--ink-soft); }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #cfd6d2; padding: 64px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-logo { box-shadow: 0 0 0 1px rgba(255,255,255,.14); }
.footer-brand p { margin-top: 14px; font-size: 0.92rem; max-width: 340px; }
.footer-cities { color: #8b968f; }
.footer-col h4 { color: #fff; font-family: "Inter", sans-serif; font-size: 0.85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 0.92rem; margin-bottom: 10px; color: #cfd6d2; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 0.82rem; color: #8b968f; flex-wrap: wrap; gap: 8px; }
.footer-legal a { color: #8b968f; margin-left: 18px; transition: color .2s; }
.footer-legal a:first-child { margin-left: 0; }
.footer-legal a:hover { color: #fff; }

/* ===== Floating CTA ===== */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--brand); color: #fff; font-weight: 600; font-size: 0.9rem;
  padding: 14px 22px; border-radius: 999px; box-shadow: 0 16px 34px -14px rgba(26,54,54,.65);
  transform: translateY(120px); transition: transform .4s ease, background .2s;
}
.floating-cta::before {
  content: ""; width: 18px; height: 18px; background: currentColor;
  -webkit-mask: var(--wa-icon) center/contain no-repeat; mask: var(--wa-icon) center/contain no-repeat;
}
.floating-cta.show { transform: translateY(0); }
.floating-cta:hover { background: var(--brand-dark); }
/* The fixed CTA occupies ~72px at the viewport bottom, so pages carrying it
   need footer room to scroll clear of the copyright and legal links. */
body.has-floating-cta .site-footer { padding-bottom: 96px; }

/* ===== Legal / Policy pages ===== */
.legal-hero { padding: 60px 0 24px; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.legal-hero .eyebrow { margin-bottom: 10px; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.legal-hero p { color: var(--ink-soft); margin-top: 10px; }
.legal { max-width: 800px; margin: 0 auto; padding: 56px 24px 80px; }
.legal .updated { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 36px; }
.legal h2 { font-size: 1.5rem; margin: 40px 0 12px; scroll-margin-top: 96px; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--brand); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }
.legal .note { background: var(--brand-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 0.9rem; color: var(--brand-dark); }
.legal-toc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 22px; margin-bottom: 36px; }
.legal-toc strong { display: block; font-family: "Fraunces", serif; margin-bottom: 8px; }
.legal-toc a { display: inline-block; margin-right: 16px; font-size: 0.9rem; }
.back-link { font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }
.back-link:hover { color: var(--brand); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner, .instant-inner, .cta-inner { grid-template-columns: 1fr; }
  .cta-inner { padding: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cards, .steps, .plans, .quotes, .instant-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .instant-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--bg); padding: 20px 24px; gap: 4px; border-bottom: 1px solid var(--line);
    transform: translateY(-140%); transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 0; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .section { padding: 68px 0; }
}
@media (max-width: 540px) {
  .stats, .instant-grid, .footer-inner, .trust-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
