/* ===========================================================
   Noble Hands NDIS Support Services — Site Stylesheet v2
   Brand: purple (logo) + teal secondary. Poppins headings / Inter body.
   Includes: utility bar, dropdown nav, sticky mobile bar,
   accessibility toolbar, trust strips, SVG icon system.
   =========================================================== */

:root {
  --purple-deep: #6024a0;
  --purple: #7e2f9c;
  --purple-light: #c45fd8;
  --magenta: #c558d4;
  --teal: #0f8a8a;
  --teal-deep: #0b6b6b;
  --grad: linear-gradient(135deg, #c45fd8 0%, #7e2f9c 100%);
  --grad-soft: linear-gradient(135deg, #f6ecfb 0%, #eef7f7 100%);

  --ink: #241d2e;
  --body: #46414f;
  --muted: #6f6a79;
  --line: #e8e1ef;
  --bg: #ffffff;
  --bg-alt: #faf7fc;
  --bg-card: #ffffff;

  --gold: #e0a82e;
  --success: #1f7a5c;
  --success-bg: #eafaf3;
  --danger: #c0392b;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 14px rgba(96, 36, 160, 0.07);
  --shadow: 0 10px 30px rgba(96, 36, 160, 0.10);
  --shadow-hover: 0 16px 44px rgba(96, 36, 160, 0.17);
  --maxw: 1160px;

  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  --fs: 1; /* accessibility font scale multiplier */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: calc(17px * var(--fs));
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: calc(clamp(2.1rem, 4.6vw, 3.3rem) * var(--fs)); }
h2 { font-size: calc(clamp(1.7rem, 3.3vw, 2.5rem) * var(--fs)); }
h3 { font-size: calc(1.3rem * var(--fs)); }
h4 { font-size: calc(1.05rem * var(--fs)); }
p { font-size: calc(1rem * var(--fs)); }

/* ---------- Accessibility ---------- */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 2000; background: var(--purple-deep); color: #fff; padding: 12px 20px; border-radius: 0 0 10px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* High-contrast mode (toolbar) */
body.a11y-contrast { --body: #1a1622; --muted: #2a2533; --line: #b9b2c4; }
body.a11y-contrast .card, body.a11y-contrast .info-card { border-color: #6024a0; }
body.a11y-contrast a { text-decoration: underline; }
/* Highlight links mode */
body.a11y-links a:not(.btn) { text-decoration: underline; background: #fff4cc; padding: 0 2px; border-radius: 3px; color: var(--purple-deep); }
/* Readable font mode */
body.a11y-readable, body.a11y-readable h1, body.a11y-readable h2, body.a11y-readable h3, body.a11y-readable h4 { font-family: Verdana, Tahoma, sans-serif; letter-spacing: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 52px 0; }
.center { text-align: center; }
.lead { font-size: calc(1.18rem * var(--fs)); color: var(--body); }
.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; font-size: calc(0.76rem * var(--fs)); color: var(--purple); background: var(--grad-soft); padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.section-head { max-width: 740px; margin: 0 auto 48px; }
.section-head.center { text-align: center; }
.section-head p { margin-top: 14px; color: var(--muted); }
.text-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.maxw-820 { max-width: 820px; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* ---------- Icons (SVG, inherits color via stroke) ---------- */
.ic { width: 1.4em; height: 1.4em; display: inline-block; vertical-align: middle; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.icon-box { width: 56px; height: 56px; border-radius: 14px; background: var(--grad-soft); color: var(--purple); display: grid; place-items: center; margin-bottom: 18px; }
.icon-box .ic { width: 28px; height: 28px; }
.icon-box.teal { color: var(--teal-deep); background: #e6f5f5; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: calc(1rem * var(--fs)); line-height: 1; padding: 15px 28px; border-radius: 50px; border: 2px solid transparent; transition: transform .16s, box-shadow .16s, background .16s; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn .ic { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(126,47,156,.32); }
.btn-primary:hover { box-shadow: 0 12px 30px rgba(126,47,156,.42); color: #fff; }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 8px 22px rgba(15,138,138,.30); }
.btn-teal:hover { background: var(--teal-deep); color: #fff; }
.btn-outline { background: #fff; color: var(--purple-deep); border-color: var(--line); }
.btn-outline:hover { border-color: var(--purple-light); color: var(--purple-deep); }
.btn-ghost { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.26); color: #fff; }
.btn-lg { padding: 17px 36px; font-size: calc(1.06rem * var(--fs)); }
.btn-sm { padding: 11px 20px; font-size: calc(.9rem * var(--fs)); }

/* ---------- Utility bar ---------- */
.util-bar { background: var(--purple-deep); color: #efe6f6; font-size: calc(.84rem * var(--fs)); }
.util-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.util-bar a { color: #fff; font-weight: 500; }
.util-bar .util-left { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.util-bar .util-left span, .util-bar .util-left a { display: inline-flex; align-items: center; gap: 7px; }
.util-bar .ic { width: 15px; height: 15px; stroke: #d9c6ec; }
.util-bar .util-right { display: flex; gap: 16px; align-items: center; }

/* ---------- Header / Nav ---------- */
.site-header { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand:hover { text-decoration: none; }
.brand img { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.04; }
.brand-text strong { font-family: var(--font-head); color: var(--purple-deep); font-size: calc(1.1rem * var(--fs)); letter-spacing: .3px; }
.brand-text span { color: var(--muted); font-size: calc(.6rem * var(--fs)); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button { font-family: var(--font-head); color: var(--ink); font-weight: 500; font-size: calc(.95rem * var(--fs)); padding: 9px 13px; border-radius: 9px; background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; }
.nav-links > li > a:hover, .nav-links > li > button:hover { color: var(--purple-deep); background: var(--bg-alt); text-decoration: none; }
.nav-links a.active { color: var(--purple-deep); font-weight: 600; }
.nav-links .caret { width: 13px; height: 13px; transition: transform .2s; }
.has-drop[aria-expanded="true"] .caret { transform: rotate(180deg); }
/* Dropdown */
.dropdown { position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 8px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .18s; z-index: 50; }
.has-drop[aria-expanded="true"] + .dropdown, .dropdown:hover { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 13px; border-radius: 9px; color: var(--ink); font-size: calc(.92rem * var(--fs)); font-weight: 500; }
.dropdown a:hover { background: var(--bg-alt); color: var(--purple-deep); text-decoration: none; }
.dropdown a small { display: block; color: var(--muted); font-weight: 400; font-size: calc(.78rem * var(--fs)); margin-top: 1px; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.nav-call { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; color: var(--purple-deep); font-size: calc(.98rem * var(--fs)); }
.nav-call .ic { width: 17px; height: 17px; stroke: var(--teal); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--purple-deep); border-radius: 3px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--grad-soft); overflow: hidden; }
.hero::before { content: ""; position: absolute; right: -120px; top: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(196,95,216,.20), transparent 70%); border-radius: 50%; }
.hero::after { content: ""; position: absolute; left: -100px; bottom: -160px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(15,138,138,.13), transparent 70%); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 52px; align-items: center; padding: 76px 0 70px; position: relative; }
.hero h1 { color: var(--ink); }
.hero p { margin: 20px 0 28px; font-size: calc(1.2rem * var(--fs)); color: var(--body); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 28px; position: relative; }
.hero-card img { margin: 0 auto 6px; max-width: 220px; display: block; }
.hero-card .hc-tag { text-align: center; color: var(--purple-deep); font-weight: 600; margin-bottom: 16px; font-family: var(--font-head); }
.hero-card .hc-list { list-style: none; display: grid; gap: 11px; }
.hero-card .hc-list li { display: flex; gap: 10px; align-items: flex-start; font-size: calc(.95rem * var(--fs)); color: var(--ink); }
.hero-card .hc-list .ic { width: 20px; height: 20px; stroke: var(--teal); flex: none; margin-top: 2px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; padding: 20px 24px; }
.trust-strip .ts-item { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink); font-size: calc(.95rem * var(--fs)); font-family: var(--font-head); }
.trust-strip .ic { width: 22px; height: 22px; stroke: var(--teal); flex: none; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: transparent; }
.card h3 { margin-bottom: 9px; font-size: calc(1.2rem * var(--fs)); }
.card p { color: var(--body); font-size: calc(.97rem * var(--fs)); }
.card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 15px; font-family: var(--font-head); font-weight: 600; font-size: calc(.92rem * var(--fs)); }
.card .more .ic { width: 16px; height: 16px; }
.service-card { position: relative; overflow: hidden; display: flex; flex-direction: column; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--grad); }
.service-card .more { margin-top: auto; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 26px; position: relative; }
.step .badge { counter-increment: step; width: 48px; height: 48px; border-radius: 50%; background: var(--grad); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; display: grid; place-items: center; margin-bottom: 16px; }
.step .badge::before { content: counter(step); }
.step h3 { margin-bottom: 8px; font-size: calc(1.15rem * var(--fs)); }

/* ---------- Feature list / split ---------- */
.feature-list { list-style: none; display: grid; gap: 16px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; margin-top: 2px; }
.feature-list .tick .ic { width: 14px; height: 14px; stroke: #fff; }
.feature-list strong { display: block; color: var(--ink); font-family: var(--font-head); }
.feature-list span { color: var(--body); font-size: calc(.96rem * var(--fs)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split.top { align-items: flex-start; }
.media-panel { background: var(--grad); border-radius: var(--radius-lg); min-height: 340px; padding: 38px; display: flex; flex-direction: column; justify-content: center; color: #fff; box-shadow: var(--shadow); }
.media-panel.teal { background: linear-gradient(135deg, #16a3a3, #0b6b6b); }
.media-panel h3 { color: #fff; font-size: calc(1.45rem * var(--fs)); }
.media-panel p { color: rgba(255,255,255,.92); margin-top: 11px; }
.media-panel .quote { font-size: calc(1.3rem * var(--fs)); line-height: 1.5; font-weight: 500; font-family: var(--font-head); }
.media-panel .quote-by { margin-top: 18px; font-size: calc(.95rem * var(--fs)); opacity: .92; }

/* ---------- Founder ---------- */
.founder { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center; }
.founder-photo { background: var(--grad); border-radius: var(--radius-lg); aspect-ratio: 1; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.founder-photo .initials { font-family: var(--font-head); font-weight: 700; font-size: 4.5rem; }
.founder-photo .ph-note { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; font-size: .72rem; color: rgba(255,255,255,.85); }
.founder blockquote { font-family: var(--font-head); font-size: calc(1.3rem * var(--fs)); line-height: 1.5; color: var(--ink); font-weight: 500; }
.founder .sig { margin-top: 18px; font-weight: 600; color: var(--purple-deep); }
.founder .sig span { display: block; font-weight: 400; color: var(--muted); font-size: calc(.9rem * var(--fs)); }

/* ---------- Values / team ---------- */
.value { text-align: center; padding: 28px 22px; }
.value .icon-box { margin: 0 auto 16px; }
.team-card { text-align: center; }
.team-card .avatar { width: 92px; height: 92px; border-radius: 50%; background: var(--grad-soft); color: var(--purple); display: grid; place-items: center; margin: 0 auto 16px; }
.team-card .avatar .ic { width: 42px; height: 42px; }
.team-card h3 { font-size: calc(1.1rem * var(--fs)); margin-bottom: 4px; }
.team-card .role { color: var(--teal-deep); font-weight: 600; font-family: var(--font-head); font-size: calc(.88rem * var(--fs)); }

/* ---------- Testimonials / reviews ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; }
.quote-card .stars { color: var(--gold); margin-bottom: 12px; display: flex; gap: 3px; }
.quote-card .stars .ic { width: 18px; height: 18px; stroke: var(--gold); fill: var(--gold); }
.quote-card p { color: var(--body); font-style: italic; }
.quote-card .by { margin-top: 16px; font-weight: 600; color: var(--ink); font-style: normal; font-family: var(--font-head); }
.quote-card .by span { display: block; font-weight: 400; font-size: calc(.85rem * var(--fs)); color: var(--muted); }
.reviews-band { background: var(--grad-soft); border-radius: var(--radius-lg); padding: 44px 40px; text-align: center; }
.reviews-band .gstars { color: var(--gold); display: inline-flex; gap: 4px; margin: 10px 0; }
.reviews-band .gstars .ic { width: 24px; height: 24px; stroke: var(--gold); fill: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad); border-radius: var(--radius-lg); padding: 56px 44px; text-align: center; color: #fff; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.93); max-width: 620px; margin: 14px auto 26px; font-size: calc(1.1rem * var(--fs)); }
.cta-actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }
.cta-phone { margin-top: 18px; font-family: var(--font-head); font-weight: 600; color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.cta-phone .ic { width: 20px; height: 20px; stroke: #fff; }

/* ---------- Page banner / breadcrumb ---------- */
.page-banner { background: var(--grad-soft); padding: 56px 0; position: relative; overflow: hidden; }
.page-banner::before { content: ""; position: absolute; right: -80px; bottom: -120px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(196,95,216,.16), transparent 70%); border-radius: 50%; }
.page-banner .eyebrow { background: #fff; }
.page-banner h1 { color: var(--ink); }
.page-banner p { margin-top: 13px; max-width: 660px; color: var(--body); font-size: calc(1.12rem * var(--fs)); }
.breadcrumb { font-size: calc(.85rem * var(--fs)); color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--purple); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Forms ---------- */
.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; color: var(--ink); margin-bottom: 6px; font-size: calc(.92rem * var(--fs)); }
.field .req { color: var(--danger); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: calc(1rem * var(--fs)); color: var(--ink); padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px; background: #fff; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--purple-light); box-shadow: 0 0 0 4px rgba(196,95,216,.15); }
.field textarea { resize: vertical; min-height: 124px; }
.field .hint { font-size: calc(.82rem * var(--fs)); color: var(--muted); margin-top: 5px; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--danger); }
.field .err-msg { display: none; color: var(--danger); font-size: calc(.82rem * var(--fs)); margin-top: 5px; }
.field.error .err-msg { display: block; }
.form-note { font-size: calc(.84rem * var(--fs)); color: var(--muted); margin-top: 8px; }
.form-promise { display: flex; align-items: center; gap: 9px; background: var(--success-bg); color: var(--success); border-radius: 11px; padding: 11px 14px; font-size: calc(.9rem * var(--fs)); font-weight: 500; margin-bottom: 18px; }
.form-promise .ic { width: 19px; height: 19px; stroke: var(--success); flex: none; }
.form-success { display: none; background: var(--success-bg); border: 1.5px solid #bfe9d7; color: var(--success); padding: 20px 22px; border-radius: 14px; font-weight: 500; }
.form-success.show { display: block; }
.consent { display: flex; gap: 10px; align-items: flex-start; }
.consent input { width: auto; margin-top: 5px; flex: none; }
.consent label { font-family: var(--font-body); font-weight: 400; font-size: calc(.9rem * var(--fs)); color: var(--body); }

/* ---------- Info cards ---------- */
.info-card { display: flex; gap: 15px; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.info-card .icon-box { width: 46px; height: 46px; margin: 0; flex: none; }
.info-card .icon-box .ic { width: 22px; height: 22px; }
.info-card strong { display: block; color: var(--ink); font-family: var(--font-head); }
.info-card a, .info-card span { color: var(--body); font-size: calc(.96rem * var(--fs)); }

/* ---------- Service-area map ---------- */
.area-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.area-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 320px; }
.area-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.area-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.area-list a { background: var(--grad-soft); color: var(--purple-deep); padding: 9px 16px; border-radius: 50px; font-size: calc(.9rem * var(--fs)); font-weight: 600; font-family: var(--font-head); }
.area-list a:hover { background: var(--purple); color: #fff; text-decoration: none; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: var(--font-head); font-size: calc(1.04rem * var(--fs)); font-weight: 600; color: var(--ink); padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc-q:hover { color: var(--purple-deep); }
.acc-q .chev { transition: transform .25s; flex: none; }
.acc-q .chev .ic { width: 20px; height: 20px; stroke: var(--purple); }
.acc-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-a div { padding: 0 22px 22px; color: var(--body); }

/* ---------- Pills / tags ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; }
.pill { background: var(--grad-soft); color: var(--purple-deep); padding: 7px 15px; border-radius: 50px; font-size: calc(.86rem * var(--fs)); font-weight: 600; font-family: var(--font-head); }

/* ---------- Prose (policy pages) ---------- */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { margin: 34px 0 12px; font-size: calc(1.5rem * var(--fs)); }
.prose h3 { margin: 24px 0 8px; }
.prose p, .prose li { color: var(--body); margin-bottom: 12px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 14px; }
.prose li { margin-bottom: 6px; }
.callout { background: var(--grad-soft); border-left: 4px solid var(--purple); border-radius: 0 12px 12px 0; padding: 18px 22px; margin: 20px 0; }
.callout strong { color: var(--purple-deep); }

/* ---------- Sticky mobile bar ---------- */
.sticky-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(96,36,160,.12); padding: 9px 12px; gap: 10px; }
.sticky-bar a { flex: 1; justify-content: center; }

/* ---------- Accessibility toolbar ---------- */
.a11y-fab { position: fixed; right: 16px; bottom: 16px; z-index: 350; width: 52px; height: 52px; border-radius: 50%; background: var(--purple-deep); color: #fff; border: 0; cursor: pointer; box-shadow: var(--shadow); display: grid; place-items: center; }
.a11y-fab .ic { width: 26px; height: 26px; stroke: #fff; }
.a11y-panel { position: fixed; right: 16px; bottom: 80px; z-index: 350; width: 280px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 18px; display: none; }
.a11y-panel.open { display: block; }
.a11y-panel h4 { font-size: calc(1rem * var(--fs)); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.a11y-panel h4 .ic { width: 20px; height: 20px; stroke: var(--purple); }
.a11y-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 0; border-top: 1px solid var(--line); }
.a11y-row:first-of-type { border-top: 0; }
.a11y-row span { font-size: calc(.9rem * var(--fs)); color: var(--ink); font-weight: 500; }
.a11y-btns { display: flex; gap: 6px; }
.a11y-btns button, .a11y-toggle { font-family: var(--font-head); border: 1.5px solid var(--line); background: #fff; color: var(--purple-deep); border-radius: 8px; padding: 6px 11px; cursor: pointer; font-weight: 600; font-size: calc(.85rem * var(--fs)); }
.a11y-btns button:hover, .a11y-toggle:hover { border-color: var(--purple-light); }
.a11y-toggle[aria-pressed="true"] { background: var(--purple); color: #fff; border-color: var(--purple); }
.a11y-reset { width: 100%; margin-top: 12px; background: var(--bg-alt); border: 1px solid var(--line); color: var(--body); border-radius: 9px; padding: 9px; cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: calc(.85rem * var(--fs)); }

/* ---------- Footer ---------- */
.site-footer { background: #241d2e; color: #cfc6d8; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 38px; }
.site-footer h4 { color: #fff; font-size: calc(1rem * var(--fs)); margin-bottom: 16px; font-family: var(--font-head); }
.site-footer a { color: #cfc6d8; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 50px; margin-bottom: 14px; }
.footer-brand p { font-size: calc(.93rem * var(--fs)); color: #a99fb6; max-width: 320px; margin-bottom: 16px; }
.footer-brand .f-contact { display: grid; gap: 8px; font-size: calc(.92rem * var(--fs)); }
.footer-brand .f-contact a, .footer-brand .f-contact span { display: inline-flex; align-items: center; gap: 9px; }
.footer-brand .f-contact .ic { width: 16px; height: 16px; stroke: var(--purple-light); flex: none; }
.footer-list { list-style: none; display: grid; gap: 10px; font-size: calc(.94rem * var(--fs)); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: calc(.84rem * var(--fs)); color: #9b91a8; }
.footer-bottom a { color: #cfc6d8; }
.footer-legal { max-width: 760px; font-size: calc(.8rem * var(--fs)); color: #8a8096; margin-top: 14px; line-height: 1.6; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 52px 0 56px; }
  .hero-card { max-width: 460px; }
  .split, .area-wrap, .founder { grid-template-columns: 1fr; gap: 32px; }
  .founder-photo { max-width: 240px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav-call span.num { display: none; }
}
@media (max-width: 800px) {
  .util-bar .util-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-referral { display: none; }
  .nav-links { position: fixed; inset: 116px 0 auto 0; flex-direction: column; align-items: stretch; background: #fff; padding: 14px 24px 26px; gap: 2px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-150%); transition: transform .3s; max-height: calc(100vh - 116px); overflow-y: auto; }
  .nav-links.open { transform: translateY(0); }
  .nav-links > li > a, .nav-links > li > button { padding: 13px 12px; width: 100%; justify-content: space-between; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--line); border-radius: 0; margin: 2px 0 6px 12px; padding: 0; max-height: 0; overflow: hidden; transition: max-height .25s; }
  .has-drop[aria-expanded="true"] + .dropdown { max-height: 600px; }
  .grid-3, .grid-2, .grid-4, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .cta-band { padding: 42px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-bar { display: flex; }
  .a11y-fab { bottom: 76px; }
  .a11y-panel { bottom: 138px; }
  body { padding-bottom: 64px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
