  :root {
    --ink:        #14202b;
    --ink-soft:   #3a4a59;
    --muted:      #6a7785;
    --line:       #e3e6ea;
    --bg:         #fbfaf7;
    --panel:      #ffffff;
    --accent:     #1f4d3f;     /* deep green — trustworthy, financial */
    --accent-2:   #b4906a;     /* warm sand for highlights */
    --accent-soft:#eaf1ed;
    --maxw:       1120px;
    --radius:     12px;
    --shadow:     0 1px 2px rgba(20,32,43,.04), 0 8px 24px rgba(20,32,43,.06);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3 {
    font-family: 'Fraunces', Georgia, serif;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0 0 .4em 0;
  }
  h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.1; }
  h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); line-height: 1.2; margin-top: 0; }
  h3 { font-size: 1.15rem; line-height: 1.3; }
  p  { color: var(--ink-soft); }
  a  { color: var(--accent); text-decoration: none; }
  a:hover { text-decoration: underline; }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

  /* ── Header ──────────────────────────────────────────────────── */
  header {
    position: sticky; top: 0; z-index: 20;
    background: rgba(251,250,247,0.85);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0;
  }
  .brand {
    display: flex; align-items: center; gap: 14px;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600; font-size: 1.55rem; color: var(--ink);
    letter-spacing: -0.01em;
  }
  .brand-mark {
    min-width: 46px; height: 40px; padding: 0 10px; border-radius: 9px;
    background: var(--accent); color: #fff;
    display: grid; place-items: center;
    font-weight: 600; font-family: 'Fraunces', serif;
    font-size: 1rem; letter-spacing: .04em;
  }
  @media (max-width: 720px) {
    .brand { font-size: 1.3rem; gap: 10px; }
    .brand-mark { min-width: 40px; height: 34px; font-size: .9rem; }
  }
  .nav-links { display: flex; gap: 28px; }
  .nav-links a { color: var(--ink-soft); font-size: .95rem; font-weight: 500; }
  .nav-links a:hover { color: var(--accent); text-decoration: none; }
  .nav-cta {
    background: var(--accent); color: #fff;
    padding: 10px 18px; border-radius: 8px; font-weight: 500; font-size: .92rem;
  }
  .nav-cta:hover { background: #163a30; text-decoration: none; }
  @media (max-width: 720px) { .nav-links { display: none; } }

  /* ── Hero ────────────────────────────────────────────────────── */
  .hero { padding: 88px 0 72px; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px; align-items: center;
  }
  @media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
  .eyebrow {
    display: inline-block; font-size: .78rem; letter-spacing: .12em;
    text-transform: uppercase; color: var(--accent);
    background: var(--accent-soft); padding: 6px 12px; border-radius: 999px;
    font-weight: 600; margin-bottom: 20px;
  }
  .hero p.lede {
    font-size: 1.12rem; max-width: 540px; margin: 18px 0 28px;
  }
  .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--accent); color: #fff;
    padding: 14px 22px; border-radius: 10px; font-weight: 500;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: #163a30; text-decoration: none; }
  .btn-secondary {
    background: transparent; color: var(--ink);
    padding: 14px 22px; border-radius: 10px; font-weight: 500;
    border: 1px solid var(--line);
  }
  .btn-secondary:hover { border-color: var(--ink-soft); text-decoration: none; }

  .hero-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
    overflow: hidden;
  }
  .hero-card h3 { margin-top: 0; }
  .hero-illustration {
    margin: -8px -8px 18px;
    padding: 16px 8px 10px;
    background: linear-gradient(180deg, var(--accent-soft) 0%, transparent 100%);
    border-radius: 8px;
    color: var(--accent);
    display: grid; place-items: center;
  }
  .hero-illustration svg { width: 100%; max-width: 280px; height: auto; }
  .stat-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px; margin-top: 18px; padding-top: 18px;
    border-top: 1px solid var(--line);
  }
  .stat-num {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.6rem; color: var(--accent); font-weight: 600;
  }
  .stat-label { font-size: .82rem; color: var(--muted); line-height: 1.35; }

  /* ── Sections ────────────────────────────────────────────────── */
  section { padding: 72px 0; border-top: 1px solid var(--line); }
  .section-head { max-width: 720px; margin-bottom: 40px; }
  .section-head .eyebrow { margin-bottom: 16px; }

  /* ── Problem ─────────────────────────────────────────────────── */
  .problem-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  @media (max-width: 820px) { .problem-grid { grid-template-columns: 1fr; } }
  .problem-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
  }
  .problem-card .num {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem; color: var(--accent-2);
    font-weight: 600; margin-bottom: 12px;
  }
  .problem-card h3 { margin-bottom: 8px; }
  .problem-card p { margin: 0; font-size: .96rem; }

  /* ── Services ────────────────────────────────────────────────── */
  .services { background: linear-gradient(180deg, var(--bg) 0%, #f5f2eb 100%); }
  .service-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  }
  @media (max-width: 820px) { .service-grid { grid-template-columns: 1fr; } }
  .service {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
    display: flex; flex-direction: column;
  }
  .service-icon {
    width: 48px; height: 48px;
    background: var(--accent-soft);
    border-radius: 10px;
    display: grid; place-items: center;
    color: var(--accent);
    margin-bottom: 20px;
  }
  .service-icon svg { width: 26px; height: 26px; }
  .service-tag {
    font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--accent-2); font-weight: 600; margin-bottom: 14px;
  }
  .service h3 {
    font-size: 1.4rem; margin-bottom: 14px;
  }
  .service ul {
    list-style: none; padding: 0; margin: 18px 0 24px;
  }
  .service li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--ink-soft); font-size: .96rem;
    border-bottom: 1px solid var(--line);
  }
  .service li:last-child { border-bottom: 0; }
  .service li::before {
    content: ""; position: absolute; left: 0; top: 14px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent-soft);
    border: 3px solid var(--accent);
  }
  .service .ideal {
    margin-top: auto; padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: .9rem; color: var(--muted);
  }
  .service .ideal strong { color: var(--ink); }

  /* ── Process ─────────────────────────────────────────────────── */
  .process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  }
  @media (max-width: 880px) { .process-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }
  .step {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
  }
  .step .num {
    font-family: 'Fraunces', serif; font-size: 1.4rem;
    color: var(--accent); font-weight: 600; margin-bottom: 10px;
  }
  .step h3 { font-size: 1.05rem; margin-bottom: 6px; }
  .step p  { font-size: .92rem; margin: 0; }

  /* ── Developers: OMC set-up (new) ───────────────────────────── */
  .dev-grid {
    display: grid; grid-template-columns: 1.05fr .95fr;
    gap: 40px; align-items: start;
  }
  @media (max-width: 880px) { .dev-grid { grid-template-columns: 1fr; } }
  .dev-cards { display: grid; gap: 20px; }
  .sched {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px;
  }
  .sched h3 { margin-bottom: 2px; }
  .sched-sub { font-size: .88rem; color: var(--muted); margin: 0 0 22px; }
  .sched-row { margin-bottom: 18px; }
  .sched-row:last-of-type { margin-bottom: 0; }
  .sched-label {
    display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
    font-size: .86rem; font-weight: 500; color: var(--ink); margin-bottom: 6px;
  }
  .sched-label span { color: var(--muted); font-weight: 400; font-size: .8rem; text-align: right; }
  .sched-bar { height: 28px; border-radius: 6px; overflow: hidden; display: flex; }
  .sched-bar .seg { height: 100%; }
  .seg-all  { background: var(--accent); }
  .seg-some { background: #5d8273; }
  .seg-no   { background: #ece9e1; }
  .sched-legend {
    display: flex; gap: 18px; margin-top: 16px; padding-top: 14px;
    border-top: 1px solid var(--line); font-size: .8rem; color: var(--muted);
  }
  .sched-legend i {
    display: inline-block; width: 11px; height: 11px; border-radius: 3px;
    margin-right: 6px; vertical-align: -1px;
  }
  .sched-note {
    margin-top: 16px; font-size: .88rem; color: var(--ink-soft);
    background: var(--accent-soft); border-radius: 8px; padding: 12px 14px;
  }
  .bridge {
    margin-top: 28px;
    background: var(--panel);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  }
  @media (max-width: 820px) { .bridge { grid-template-columns: 1fr; } }
  .bridge h3 { margin: 0 0 6px; }
  .bridge p { margin: 0; font-size: .96rem; }
  .section-note { font-size: .9rem; color: var(--muted); margin-top: 16px; max-width: 72ch; }

  /* ── Overseas investors roadmap (new) ────────────────────────── */
  .road { position: relative; max-width: 780px; margin-bottom: 48px; }
  .road::before {
    content: ""; position: absolute; left: 21px; top: 8px; bottom: 8px;
    width: 2px; background: var(--line);
  }
  .stop { position: relative; padding: 0 0 32px 68px; }
  .stop:last-child { padding-bottom: 0; }
  .stop .num {
    position: absolute; left: 0; top: 0;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--panel); border: 2px solid var(--accent);
    color: var(--accent);
    font-family: 'Fraunces', Georgia, serif; font-weight: 600; font-size: 1rem;
    display: grid; place-items: center;
  }
  .stop h3 { margin-bottom: 6px; }
  .stop p { margin: 0; font-size: .96rem; max-width: 64ch; }
  .stop .ask {
    margin-top: 10px; font-size: .88rem; color: var(--ink-soft);
    background: var(--accent-soft); border-radius: 8px; padding: 11px 14px;
    max-width: 64ch;
  }
  .stop .ask strong { color: var(--accent); }

  /* ── Case studies (new) ──────────────────────────────────────── */
  .case-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  @media (max-width: 880px) { .case-grid { grid-template-columns: 1fr; } }
  .case {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    display: flex; flex-direction: column;
  }
  .case .case-metric {
    padding-bottom: 16px; margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .case-num {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2rem; line-height: 1.1;
    color: var(--accent); font-weight: 600;
  }
  .case-num-label { font-size: .85rem; color: var(--muted); margin-top: 4px; }
  .case .phase { margin-bottom: 14px; }
  .case .phase:last-of-type { margin-bottom: 0; }
  .ph-label {
    font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--accent-2); font-weight: 600; margin-bottom: 4px;
  }
  .case .phase p { margin: 0; font-size: .92rem; }
  .case-foot {
    margin-top: auto; padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: .85rem; color: var(--muted);
  }
  .case-method {
    margin-top: 32px;
    background: var(--accent-soft);
    border-radius: var(--radius);
    padding: 22px 28px;
    font-size: .92rem; color: var(--ink-soft);
  }
  .case-method strong { color: var(--ink); }

  /* ── OMC Status Report preview (new) ─────────────────────────── */
  .report-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; align-items: center;
  }
  @media (max-width: 880px) { .report-grid { grid-template-columns: 1fr; } }
  .report-points { list-style: none; padding: 0; margin: 18px 0 28px; }
  .report-points li {
    padding: 8px 0 8px 28px; position: relative;
    color: var(--ink-soft); font-size: .96rem;
    border-bottom: 1px solid var(--line);
  }
  .report-points li:last-child { border-bottom: 0; }
  .report-points li::before {
    content: ""; position: absolute; left: 0; top: 14px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent-soft); border: 3px solid var(--accent);
  }
  .report-doc {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 30px 30px 0;
    max-width: 470px; margin: 0 auto;
    height: 560px;
    overflow: hidden;
    user-select: none; -webkit-user-select: none;
  }
  .report-doc .doc-inner { pointer-events: none; }
  .doc-head {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 14px; margin-bottom: 6px;
    border-bottom: 2px solid var(--accent);
  }
  .doc-mark {
    min-width: 38px; height: 32px; border-radius: 7px;
    background: var(--accent); color: #fff;
    display: grid; place-items: center;
    font-family: 'Fraunces', serif; font-weight: 600; font-size: .82rem;
  }
  .doc-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.05rem; color: var(--ink); }
  .doc-sub { font-size: .74rem; color: var(--muted); }
  .doc-meta {
    display: flex; justify-content: space-between;
    font-size: .76rem; color: var(--muted);
    padding: 10px 0 4px;
  }
  .doc-section {
    font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--accent-2); font-weight: 600;
    margin: 16px 0 2px;
  }
  .report-row {
    display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
    padding: 9px 0; border-bottom: 1px solid var(--line);
    font-size: .84rem; color: var(--ink);
  }
  .report-row .note { color: var(--muted); font-size: .78rem; text-align: right; }
  .rag {
    display: inline-block; width: 10px; height: 10px; border-radius: 50%;
    margin-right: 9px; vertical-align: 0;
  }
  .rag-g { background: #2e7d4f; }
  .rag-a { background: #d99a2b; }
  .rag-r { background: #c0492f; }
  .report-watermark {
    position: absolute; inset: 0; z-index: 3;
    display: grid; place-items: center;
    pointer-events: none;
  }
  .report-watermark span {
    font-family: 'Fraunces', serif; font-weight: 600;
    font-size: 4.4rem; letter-spacing: .18em;
    color: rgba(31, 77, 63, .09);
    transform: rotate(-24deg);
    white-space: nowrap;
  }
  .report-veil {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
    height: 52%;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 72%);
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 28px;
  }
  .report-caption {
    text-align: center; font-size: .8rem; color: var(--muted);
    margin-top: 14px;
  }
  /* dashboard-style preview internals */
  .pd-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 14px 0; }
  .pd-kpi { background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 9px 11px; }
  .pd-kpi .k-label { font-size: .6rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
  .pd-kpi .k-val { font-family: 'Fraunces', serif; font-size: 1.15rem; color: var(--ink); line-height: 1.2; }
  .pd-kpi .k-sub { font-size: .64rem; color: var(--muted); }
  .pd-card { border: 1px solid var(--line); border-radius: 9px; overflow: hidden; margin-bottom: 12px; }
  .pd-card-head { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-bottom: 1px solid var(--line); }
  .pd-light { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; box-shadow: inset 0 0 0 3px rgba(255,255,255,.4); }
  .pd-light.amber { background: #E89826; }
  .pd-name { font-family: 'Fraunces', serif; font-weight: 600; font-size: .92rem; color: var(--ink); line-height: 1.2; }
  .pd-name .pd-sub { font-family: 'Inter', sans-serif; font-weight: 400; font-size: .66rem; color: var(--muted); display: block; }
  .pd-status { margin-left: auto; font-size: .64rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; background: #FCEFDB; color: #8a5a10; }
  .pd-meta { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
  .pd-meta > div { padding: 7px 10px; border-right: 1px solid var(--line); }
  .pd-meta > div:last-child { border-right: 0; }
  .pd-meta .m-label { font-size: .56rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
  .pd-meta .m-val { font-size: .74rem; font-weight: 500; color: var(--ink); }
  .pd-inds { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 10px 12px; }
  .pd-ind { display: flex; align-items: center; gap: 6px; background: var(--bg); border-radius: 6px; padding: 5px 7px; font-size: .64rem; color: var(--ink-soft); }
  .pd-ind i { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
  .pd-issues { border: 1px solid var(--line); border-radius: 9px; padding: 10px 12px; }
  .pd-issues .i-title { font-family: 'Fraunces', serif; font-weight: 600; font-size: .85rem; margin-bottom: 6px; color: var(--ink); }
  .pd-issue { display: flex; gap: 8px; align-items: baseline; padding: 5px 0; border-bottom: 1px solid var(--line); font-size: .7rem; color: var(--ink-soft); }
  .pd-issue:last-child { border-bottom: 0; }
  .pd-issue strong { color: var(--ink); font-weight: 600; white-space: nowrap; }

  /* ── About ───────────────────────────────────────────────────── */
  .about-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 56px; align-items: start;
  }
  @media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
  .credentials {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
  }
  .credentials h3 { margin-top: 0; }
  .credentials ul { list-style: none; padding: 0; margin: 0; }
  .credentials li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: .96rem; color: var(--ink-soft);
  }
  .credentials li:last-child { border-bottom: 0; }
  .credentials li strong { color: var(--ink); display: block; margin-bottom: 2px; }

  /* ── Regulatory record (inline section) ─────────────────────── */
  #regulatory { background: linear-gradient(180deg, var(--bg) 0%, #f5f2eb 100%); }
  .regulatory-wrap { max-width: 760px; }
  .regulatory-meta {
    font-size: .9rem; color: var(--muted); margin: -10px 0 24px;
  }
  .regulatory-body h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.2rem; line-height: 1.3;
    color: var(--ink); font-weight: 500;
    margin: 32px 0 8px;
  }
  .regulatory-body p { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); }
  .regulatory-list { padding-left: 22px; margin: 10px 0 12px; }
  .regulatory-list li { padding: 4px 0; color: var(--ink-soft); }
  .regulatory-footnote { font-size: .92rem; color: var(--muted); margin-top: 4px; }

  /* ── FAQ ─────────────────────────────────────────────────────── */
  details {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 24px;
    margin-bottom: 12px;
  }
  details[open] { box-shadow: var(--shadow); }
  summary {
    cursor: pointer; font-weight: 500; color: var(--ink);
    font-size: 1.02rem; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
  }
  summary::-webkit-details-marker { display: none; }
  summary::after {
    content: "+"; color: var(--accent); font-size: 1.4rem; font-weight: 400;
    transition: transform .2s;
  }
  details[open] summary::after { content: "−"; }
  details p {
    margin: 14px 0 4px;
    font-size: .96rem; color: var(--ink-soft);
  }

  /* ── CTA banner ──────────────────────────────────────────────── */
  .cta-banner {
    background: var(--accent); color: #fff;
    border-radius: var(--radius);
    padding: 48px;
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px;
    align-items: center;
  }
  @media (max-width: 820px) { .cta-banner { grid-template-columns: 1fr; padding: 36px; } }
  .cta-banner h2 { color: #fff; margin: 0 0 8px; }
  .cta-banner p { color: rgba(255,255,255,.85); margin: 0; }
  .cta-banner .btn-light {
    background: #fff; color: var(--accent);
    padding: 14px 22px; border-radius: 10px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 8px;
    justify-self: end;
  }
  @media (max-width: 820px) { .cta-banner .btn-light { justify-self: start; } }
  .cta-banner .btn-light:hover { background: #f5f2eb; text-decoration: none; }

  /* ── Contact ─────────────────────────────────────────────────── */
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  }
  @media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-info p { font-size: 1.05rem; }
  .contact-info .label {
    font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--muted); font-weight: 600; margin-top: 18px; margin-bottom: 4px;
  }
  form {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
  }
  label { display: block; font-size: .88rem; font-weight: 500; margin: 0 0 6px; color: var(--ink); }
  input, select, textarea {
    width: 100%; padding: 12px 14px; font-size: .96rem; font-family: inherit;
    border: 1px solid var(--line); border-radius: 8px; background: var(--bg);
    color: var(--ink); margin-bottom: 16px;
  }
  input:focus, select:focus, textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
  }
  textarea { min-height: 110px; resize: vertical; }
  button[type="submit"] {
    background: var(--accent); color: #fff;
    padding: 13px 22px; border-radius: 10px; font-weight: 500;
    border: 0; cursor: pointer; font-size: .98rem; font-family: inherit;
    width: 100%;
  }
  button[type="submit"]:hover { background: #163a30; }

  /* ── Footer ──────────────────────────────────────────────────── */
  footer {
    border-top: 1px solid var(--line);
    padding: 40px 0;
    margin-top: 32px;
    color: var(--muted); font-size: .9rem;
  }
  .footer-row {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
  }

  /* ── Multi-page helpers ─────────────────────────────────────── */
  .service p { font-size: .98rem; }
  .service .ideal a { font-weight: 600; color: var(--accent); }
  .page-lead { max-width: 760px; }
  .page-lead .eyebrow { margin-bottom: 16px; }
  .back-link { font-size: .9rem; color: var(--muted); display: inline-block; margin-bottom: 28px; }
  .back-link:hover { color: var(--accent); text-decoration: none; }
  main > section:first-of-type { border-top: 0; }
