/* turkeyrepresentative.com — shared design system
   Palette: deep slate ink ground, garnet accent (legal wax seal), brass for recognition marks.
   Type: Georgia serif headlines over a system sans body. Light + dark themes. */

:root {
  --paper: #f5f3ee;
  --surface: #ffffff;
  --surface-2: #efece4;
  --ink: #1a2433;
  --ink-strong: #101824;
  --muted: #5a6473;
  --line: #e1dccf;
  --garnet: #8a1f2b;
  --garnet-bright: #a12a37;
  --brass: #9c7838;
  --brass-soft: #b89253;
  --hero-bg: #141d2a;
  --hero-fg: #eef1f5;
  --hero-muted: #9fabbb;
  --hero-line: #2a3543;
  --good: #2f6b46;
  --bad: #9a2a2a;
  --shadow: 0 1px 2px rgba(16,24,36,.06), 0 8px 30px rgba(16,24,36,.06);
  --radius: 6px;
  --maxw: 1080px;
  --measure: 68ch;
  --serif: Georgia, "Times New Roman", "Iowan Old Style", serif;
  --sans: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #10161e; --surface: #171f29; --surface-2: #1d2732; --ink: #e7ebf1; --ink-strong: #f4f6f9;
    --muted: #9aa6b5; --line: #29333f; --garnet: #cd5762; --garnet-bright: #db6773; --brass: #c6a267;
    --brass-soft: #d4b57f; --hero-bg: #0b1119; --hero-fg: #eef1f5; --hero-muted: #93a0b1; --hero-line: #232e3b;
    --good: #6bbf8a; --bad: #e07b7b; --shadow: 0 1px 2px rgba(0,0,0,.3), 0 10px 30px rgba(0,0,0,.35);
  }
}
:root[data-theme="light"] {
  --paper: #f5f3ee; --surface: #ffffff; --surface-2: #efece4; --ink: #1a2433; --ink-strong: #101824;
  --muted: #5a6473; --line: #e1dccf; --garnet: #8a1f2b; --garnet-bright: #a12a37; --brass: #9c7838;
  --brass-soft: #b89253; --hero-bg: #141d2a; --hero-fg: #eef1f5; --hero-muted: #9fabbb; --hero-line: #2a3543;
  --good: #2f6b46; --bad: #9a2a2a; --shadow: 0 1px 2px rgba(16,24,36,.06), 0 8px 30px rgba(16,24,36,.06);
}
:root[data-theme="dark"] {
  --paper: #10161e; --surface: #171f29; --surface-2: #1d2732; --ink: #e7ebf1; --ink-strong: #f4f6f9;
  --muted: #9aa6b5; --line: #29333f; --garnet: #cd5762; --garnet-bright: #db6773; --brass: #c6a267;
  --brass-soft: #d4b57f; --hero-bg: #0b1119; --hero-fg: #eef1f5; --hero-muted: #93a0b1; --hero-line: #232e3b;
  --good: #6bbf8a; --bad: #e07b7b; --shadow: 0 1px 2px rgba(0,0,0,.3), 0 10px 30px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; color: var(--ink-strong); text-wrap: balance; line-height: 1.15; letter-spacing: -0.01em; }
a { color: var(--garnet); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--garnet); margin: 0 0 14px; }
:focus-visible { outline: 2px solid var(--garnet); outline-offset: 3px; border-radius: 3px; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--garnet); color: #fff; padding: 10px 16px; z-index: 100; }
.skip:focus { left: 12px; top: 12px; }

/* nav */
header.nav { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--paper) 88%, transparent); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; gap: 28px; height: 66px; }
.brand { display: flex; flex-direction: column; line-height: 1.05; margin-right: auto; }
.brand b { font-family: var(--serif); font-size: 18px; color: var(--ink-strong); letter-spacing: -0.01em; }
.brand .dot { color: var(--garnet); }
.brand span { font-family: var(--sans); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.nav-links { display: flex; gap: 22px; }
.nav-links a { color: var(--muted); font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--ink-strong); text-decoration: none; }
@media (max-width: 900px) { .nav-links { display: none; } }

.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 650; font-size: 15px; padding: 11px 20px; border-radius: var(--radius); border: 1px solid transparent; cursor: pointer; transition: background .15s, transform .05s, color .15s, border-color .15s; white-space: nowrap; }
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--garnet); color: #fff; }
.btn-primary:hover { background: var(--garnet-bright); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink-strong); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--muted); }
.btn-onhero { background: transparent; color: var(--hero-fg); border-color: var(--hero-line); }
.btn-onhero:hover { border-color: var(--hero-fg); }
.btn-lg { padding: 14px 26px; font-size: 16px; }

/* hero */
.hero { background: var(--hero-bg); color: var(--hero-fg); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(120% 90% at 85% -10%, rgba(156,120,56,.16), transparent 55%),
  radial-gradient(90% 80% at 8% 110%, rgba(138,31,43,.20), transparent 55%); pointer-events: none; }
.hero-in { position: relative; padding: 78px 0 66px; max-width: 800px; }
.hero .eyebrow { color: var(--brass-soft); }
.hero h1 { color: #fff; font-size: clamp(38px, 6vw, 62px); margin: 0 0 22px; }
.hero h1 em { font-style: italic; color: var(--brass-soft); }
.hero p.lead { color: var(--hero-muted); font-size: clamp(17px, 2.2vw, 20px); margin: 0 0 32px; max-width: 62ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust { border-top: 1px solid var(--hero-line); margin-top: 52px; padding-top: 26px; }
.trust-label { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--hero-muted); margin-bottom: 14px; }
.ranks { display: flex; flex-wrap: wrap; gap: 12px; }
.rank { font-family: var(--serif); font-size: 15px; border: 1px solid var(--brass); color: var(--brass-soft); padding: 7px 15px; border-radius: 3px; letter-spacing: .02em; }

/* client roster */
.clients { padding: 40px 0; border-bottom: 1px solid var(--line); background: var(--surface); }
.clients-label { text-align: center; font-size: 13px; letter-spacing: .04em; color: var(--muted); max-width: 62ch; margin: 0 auto 24px; text-transform: uppercase; font-weight: 600; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 36px; }
.logos span { font-family: var(--serif); font-size: 21px; color: var(--ink-strong); opacity: .82; letter-spacing: .01em; }
.clients-foot { text-align: center; font-size: 12.5px; color: var(--muted); margin: 24px 0 0; font-style: italic; }

/* sections */
section { padding: 74px 0; border-bottom: 1px solid var(--line); }
.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head h2 { font-size: clamp(27px, 4vw, 38px); margin: 0 0 14px; }
.sec-head p { color: var(--muted); font-size: 18px; margin: 0; }

.oblig { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
@media (max-width: 820px) { .oblig { grid-template-columns: 1fr; gap: 28px; } }
.oblig p { margin: 0 0 16px; }
.oblig .keypoint { font-family: var(--serif); font-size: 21px; color: var(--ink-strong); line-height: 1.4; }
.oblig .keypoint b { color: var(--garnet); font-style: italic; font-weight: 700; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.checkcard { padding: 30px 30px 28px; }
.checkcard h3 { font-size: 19px; margin: 0 0 18px; }
.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.5; }
.checklist li svg { flex: none; margin-top: 3px; }
.checkcard .foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 15px; color: var(--muted); }

.svc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .svc { grid-template-columns: 1fr; } }
.svc .card { padding: 26px 24px; }
.svc .num { font-family: var(--serif); font-size: 14px; color: var(--brass); border: 1px solid var(--brass); width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 16px; }
.svc h3 { font-size: 18px; margin: 0 0 8px; }
.svc p { margin: 0; color: var(--muted); font-size: 15px; }

.why { background: var(--surface-2); }
.cmp { overflow-x: auto; }
.cmp table { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cmp th, .cmp td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); font-size: 15.5px; vertical-align: top; }
.cmp thead th { font-family: var(--sans); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; background: var(--surface-2); }
.cmp thead th.us { color: var(--garnet); }
.cmp tbody td:first-child { font-weight: 600; color: var(--ink-strong); width: 30%; }
.cmp .us { background: color-mix(in srgb, var(--garnet) 5%, var(--surface)); }
.cmp tr:last-child td { border-bottom: none; }
.yn { display: inline-flex; align-items: center; gap: 9px; }
.yn.y { color: var(--good); font-weight: 600; }
.yn.n { color: var(--bad); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; gap: 24px 0; } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 0 26px; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 15px; right: 0; width: 1px; height: calc(100% - 6px); background: var(--line); }
.step:first-child { padding-left: 0; }
.step .mk { font-family: var(--serif); font-size: 13px; color: #fff; background: var(--garnet); width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { font-size: 17px; margin: 0 0 7px; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* pricing */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 820px) { .tiers { grid-template-columns: 1fr; } }
.tier { padding: 30px 28px; display: flex; flex-direction: column; }
.tier.feat { border-color: var(--garnet); box-shadow: 0 0 0 1px var(--garnet), var(--shadow); position: relative; }
.tier .tag { position: absolute; top: -12px; left: 28px; background: var(--garnet); color: #fff; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.tier h3 { font-size: 21px; margin: 0 0 4px; }
.tier .who { color: var(--muted); font-size: 14px; margin: 0 0 20px; min-height: 20px; }
.tier .amt { font-family: var(--serif); font-size: 40px; color: var(--ink-strong); line-height: 1; font-variant-numeric: tabular-nums; }
.tier .amt small { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--muted); }
.tier .setup { color: var(--muted); font-size: 13.5px; margin: 8px 0 22px; }
.tier ul { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.tier li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.45; }
.tier li svg { flex: none; margin-top: 3px; color: var(--garnet); }
.tier .btn { margin-top: auto; justify-content: center; }
.reg-line { margin-top: 20px; display: flex; align-items: center; gap: 24px; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--brass); border-radius: var(--radius); padding: 22px 26px; box-shadow: var(--shadow); }
@media (max-width: 720px) { .reg-line { flex-direction: column; align-items: flex-start; gap: 16px; } }
.reg-line b { font-family: var(--serif); font-size: 18px; color: var(--ink-strong); }
.reg-line p { margin: 6px 0 0; color: var(--muted); font-size: 14.5px; max-width: 72ch; }
.reg-line .btn { flex: none; }
.price-disc { margin-top: 22px; font-size: 13.5px; color: var(--muted); text-align: center; }

/* credentials */
.creds { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 820px) { .creds { grid-template-columns: 1fr; gap: 28px; } }
.creds blockquote { font-family: var(--serif); font-size: 23px; line-height: 1.45; color: var(--ink-strong); margin: 0 0 22px; border-left: 3px solid var(--garnet); padding-left: 22px; }
.person { display: flex; gap: 16px; align-items: center; }
.person .av { width: 52px; height: 52px; border-radius: 50%; background: var(--hero-bg); color: var(--brass-soft); font-family: var(--serif); font-size: 20px; display: grid; place-items: center; flex: none; }
.person b { display: block; color: var(--ink-strong); }
.person span { color: var(--muted); font-size: 14px; }
.cred-list { display: flex; flex-direction: column; gap: 14px; }
.cred-list .card { padding: 18px 20px; display: flex; gap: 14px; align-items: baseline; }
.cred-list .card b { font-family: var(--serif); color: var(--brass); font-size: 15px; letter-spacing: .02em; flex: none; }
.cred-list .card span { font-size: 14.5px; color: var(--muted); }
.kh-link { margin-top: 8px; font-size: 15px; }

/* faq / details */
.faq { max-width: 800px; }
details { border-bottom: 1px solid var(--line); }
details summary { cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative; font-family: var(--serif); font-size: 19px; color: var(--ink-strong); }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; position: absolute; right: 6px; top: 17px; font-family: var(--sans); font-size: 24px; color: var(--garnet); transition: transform .2s; }
details[open] summary::after { content: "\2013"; }
details .ans { padding: 0 40px 22px 0; color: var(--muted); font-size: 16px; margin: 0; }
details .ans p { margin: 0 0 12px; }
details .ans p:last-child { margin-bottom: 0; }

/* final cta */
.close { background: var(--hero-bg); color: var(--hero-fg); border-bottom: none; }
.close h2 { color: #fff; }
.close .eyebrow { color: var(--brass-soft); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 820px) { .cta-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-side p { color: var(--hero-muted); }
.contact-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.chip { display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--hero-line); border-radius: var(--radius); padding: 11px 16px; color: var(--hero-fg); font-size: 14.5px; }
.chip:hover { border-color: var(--hero-fg); text-decoration: none; }
form.quote { background: var(--surface); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
form.quote .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { form.quote .frow { grid-template-columns: 1fr; } }
form.quote label { display: block; font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin: 14px 0 6px; }
form.quote input, form.quote select, form.quote textarea { width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 11px 13px; }
form.quote textarea { resize: vertical; min-height: 84px; }
form.quote .btn { width: 100%; justify-content: center; margin-top: 22px; }
form.quote .fine { font-size: 12.5px; color: var(--muted); text-align: center; margin: 14px 0 0; }

/* ===== Article / content pages ===== */
.subhero { background: var(--hero-bg); color: var(--hero-fg); position: relative; overflow: hidden; }
.subhero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 90% at 90% -20%, rgba(156,120,56,.14), transparent 55%); pointer-events: none; }
.subhero-in { position: relative; padding: 56px 0 48px; max-width: 800px; }
.subhero h1 { color: #fff; font-size: clamp(30px, 4.6vw, 46px); margin: 10px 0 16px; }
.subhero p { color: var(--hero-muted); font-size: 19px; margin: 0; max-width: 60ch; }
.crumbs { font-size: 13px; color: var(--hero-muted); letter-spacing: .02em; }
.crumbs a { color: var(--hero-muted); }
.crumbs a:hover { color: var(--hero-fg); }

.article { padding: 60px 0 20px; }
.article-in { max-width: 760px; margin: 0 auto; }
.article-in > p { margin: 0 0 20px; max-width: var(--measure); }
.article-in h2 { font-size: 28px; margin: 44px 0 14px; }
.article-in h3 { font-size: 21px; margin: 32px 0 10px; }
.article-in ul, .article-in ol { max-width: var(--measure); padding-left: 22px; margin: 0 0 20px; }
.article-in li { margin-bottom: 10px; line-height: 1.6; }
.article-in strong { color: var(--ink-strong); }
.lede { font-size: 21px; line-height: 1.55; color: var(--ink-strong); }
.callout { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--garnet); border-radius: var(--radius); padding: 22px 26px; margin: 28px 0; box-shadow: var(--shadow); }
.callout p { margin: 0; }
.callout b { color: var(--garnet); }
.factbox { background: var(--surface-2); border-radius: var(--radius); padding: 24px 26px; margin: 28px 0; }
.factbox h3 { margin: 0 0 12px; font-size: 18px; }
.factbox ul { margin: 0; }
.data-table { overflow-x: auto; margin: 26px 0; }
.data-table table { width: 100%; border-collapse: collapse; min-width: 520px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.data-table th, .data-table td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); font-size: 15px; }
.data-table thead th { background: var(--surface-2); font-family: var(--sans); font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; }
.data-table tr:last-child td { border-bottom: none; }
.inline-cta { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 30px; margin: 44px auto 0; max-width: 760px; display: flex; align-items: center; justify-content: space-between; gap: 22px; box-shadow: var(--shadow); }
@media (max-width: 640px) { .inline-cta { flex-direction: column; align-items: flex-start; } }
.inline-cta h3 { margin: 0 0 6px; font-size: 20px; }
.inline-cta p { margin: 0; color: var(--muted); font-size: 15px; }
.inline-cta .btn { flex: none; }
.related { padding: 56px 0; border-top: 1px solid var(--line); }
.related h2 { font-size: 22px; margin: 0 0 22px; }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .rel-grid { grid-template-columns: 1fr; } }
.rel-grid a { display: block; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); color: var(--ink); }
.rel-grid a:hover { border-color: var(--garnet); text-decoration: none; }
.rel-grid a b { font-family: var(--serif); color: var(--ink-strong); font-size: 17px; display: block; margin-bottom: 6px; }
.rel-grid a span { color: var(--muted); font-size: 14px; }

/* footer */
footer.ft { background: var(--paper); padding: 46px 0 40px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
@media (max-width: 720px) { .ft-grid { grid-template-columns: 1fr; gap: 22px; } }
.ft-grid h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.ft-grid a { color: var(--ink); font-size: 14.5px; display: block; margin-bottom: 8px; }
.ft-grid p { color: var(--muted); font-size: 14px; margin: 0 0 8px; }
.ft-legal { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* theme toggle */
.theme-btn { background: transparent; border: 1px solid var(--line); color: var(--muted); border-radius: var(--radius); width: 38px; height: 38px; display: grid; place-items: center; cursor: pointer; flex: none; }
.theme-btn:hover { color: var(--ink-strong); border-color: var(--muted); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ===== Mobile optimisation ===== */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  section { padding: 46px 0; }
  .sec-head { margin-bottom: 28px; }
  .sec-head p { font-size: 16px; }

  /* nav — brand + CTA only; subtitle hidden to save room */
  .nav-in { height: 58px; gap: 10px; }
  .brand b { font-size: 15px; }
  .brand span { display: none; }
  header.nav .btn-primary { padding: 9px 14px; font-size: 14px; }
  .theme-btn { width: 34px; height: 34px; }

  /* hero */
  .hero-in { padding: 50px 0 42px; }
  .hero h1 { font-size: 31px; }
  .hero p.lead { font-size: 16px; margin-bottom: 26px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .trust { margin-top: 34px; padding-top: 20px; }
  .ranks { gap: 8px; }
  .rank { font-size: 13px; padding: 6px 11px; }

  /* subhero (content pages) */
  .subhero-in { padding: 38px 0 32px; }
  .subhero h1 { font-size: 27px; }
  .subhero p { font-size: 16px; }

  /* clients */
  .clients { padding: 32px 0; }
  .clients-label { font-size: 12px; }
  .logos { gap: 10px 20px; }
  .logos span { font-size: 17px; }

  /* content blocks */
  .oblig { gap: 22px; }
  .oblig .keypoint { font-size: 18px; }
  .checkcard { padding: 24px 22px; }
  .creds blockquote { font-size: 19px; }

  /* article */
  .article { padding: 38px 0 8px; }
  .article-in h2 { font-size: 23px; margin-top: 34px; }
  .article-in h3 { font-size: 19px; }
  .lede { font-size: 18px; }
  .callout, .factbox { padding: 20px; }
  .inline-cta { padding: 24px 22px; }

  /* pricing */
  .tier { padding: 26px 22px; }
  .tier .amt { font-size: 36px; }
  .reg-line { padding: 20px 22px; }

  /* faq */
  details summary { font-size: 17px; padding-right: 34px; }
  details .ans { padding-right: 0; }

  /* cta + footer */
  .related { padding: 40px 0; }
  .contact-row { gap: 10px; }
  .chip { font-size: 13.5px; padding: 10px 13px; }
  .ft-legal { flex-direction: column; gap: 8px; }
}

/* Very small screens: free space in the nav */
@media (max-width: 430px) {
  .theme-btn { display: none; }
  .brand b { font-size: 14px; }
  .hero h1 { font-size: 27px; }
  .subhero h1 { font-size: 24px; }
}
