/* Mayah Care — Option D design system (teal + coral) */
:root {
  --teal: oklch(0.55 0.085 200);
  --teal-deep: oklch(0.40 0.072 206);
  --teal-soft: oklch(0.955 0.022 200);
  --teal-line: oklch(0.88 0.03 200);
  --coral: oklch(0.68 0.13 42);
  --coral-deep: oklch(0.57 0.12 40);
  --coral-soft: oklch(0.96 0.025 50);
  --paper: oklch(0.99 0.004 200);
  --panel: oklch(0.972 0.012 200);
  --ink: oklch(0.27 0.02 220);
  --ink-soft: oklch(0.47 0.018 218);
  --line: oklch(0.905 0.012 210);
  --shadow: 0 22px 50px -28px oklch(0.40 0.072 206 / 0.42);
  --shadow-sm: 0 10px 26px -18px oklch(0.40 0.072 206 / 0.4);
  --radius: 22px;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.08; }
p { margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 16px; border-radius: 999px; padding: 16px 30px; cursor: pointer; border: 1.6px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--teal-deep); }
.btn-coral { background: var(--coral); color: #fff; box-shadow: var(--shadow-sm); }
.btn-coral:hover { background: var(--coral-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-deep); }
.btn-ghost-light { background: transparent; color: #fff; border-color: oklch(0.98 0.004 200 / 0.4); }
.btn-ghost-light:hover { background: oklch(0.98 0.004 200 / 0.12); }

/* ---------- section heads ---------- */
.kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--coral-deep); font-weight: 800; font-size: 13.5px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--coral); border-radius: 2px; }
.sechead { max-width: 62ch; margin: 0 auto 56px; text-align: center; }
.sechead .kicker { justify-content: center; }
.sechead h2 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 16px; text-wrap: balance; }
.sechead p { font-size: 18px; color: var(--ink-soft); margin: 0 auto; max-width: 56ch; }

/* ---------- header ---------- */
.topbar { background: var(--teal-deep); color: oklch(0.94 0.02 200); font-size: 13.5px; }
.topbar .container { display: flex; align-items: center; gap: 22px; padding-top: 9px; padding-bottom: 9px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.topbar .spacer { margin-left: auto; }
.topbar svg { width: 15px; height: 15px; }

.header { position: sticky; top: 0; z-index: 60; background: oklch(0.99 0.004 200 / 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.header .container { display: flex; align-items: center; gap: 22px; padding-top: 16px; padding-bottom: 16px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; flex-shrink: 0; }
.brand .mark { width: 42px; height: 42px; border-radius: 13px; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 20px; }
.brand b { font-size: 21px; font-weight: 800; }
.brand small { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin-top: -2px; }
.nav { display: flex; gap: 18px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); align-items: center; }
.nav > a, .navitem > a { white-space: nowrap; }
.nav .feedback { color: var(--coral-deep); }
.nav a:hover { color: var(--teal-deep); }
.header .btn { padding: 12px 22px; font-size: 14.5px; }
.navtoggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.navtoggle svg { width: 26px; height: 26px; }
.logo-img { height: 54px; width: auto; display: block; }

/* nav dropdown */
.navitem { position: relative; display: inline-flex; align-items: center; }
.navitem > a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.navitem > a .chev { width: 15px; height: 15px; transition: transform .2s; }
.navitem:hover > a .chev, .navitem:focus-within > a .chev { transform: rotate(180deg); }
.dropdown-wrap { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 14px; opacity: 0; visibility: hidden; transition: opacity .16s ease, visibility .16s; z-index: 80; }
.navitem:hover .dropdown-wrap, .navitem:focus-within .dropdown-wrap { opacity: 1; visibility: visible; }
.dropdown { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 10px; min-width: 360px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dropdown a { padding: 10px 13px; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; }
.dropdown a:hover { background: var(--teal-soft); color: var(--teal-deep); }
.dropdown .allserv { grid-column: 1 / -1; margin-top: 4px; border-top: 1px solid var(--line); padding-top: 12px; color: var(--coral-deep); font-weight: 700; }

/* ---------- hero ---------- */
.hero { background: linear-gradient(180deg, var(--teal-soft), var(--paper)); overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 60px; align-items: center; padding-top: 84px; padding-bottom: 84px; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--teal-line); color: var(--teal-deep); font-weight: 700; font-size: 13.5px; letter-spacing: 0.03em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; margin-bottom: 24px; }
.hero h1 { font-size: clamp(40px, 5.4vw, 66px); margin-bottom: 22px; text-wrap: balance; }
.hero h1 span { color: var(--teal); }
.hero .lede { font-size: 20px; color: var(--ink-soft); max-width: 42ch; margin-bottom: 34px; }
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media > img { width: 100%; height: 520px; object-fit: cover; border-radius: 30px; }
.ndis-badge { --ndis-purple: #7a2d8f; --ndis-green: #8dc63f; position: absolute; right: -18px; top: 34px; width: 122px; height: 122px; border-radius: 50%; background: var(--ndis-purple); box-shadow: var(--shadow); display: grid; place-items: center; text-align: center; color: #fff; }
.ndis-badge .row1 { display: flex; align-items: center; justify-content: center; gap: 6px; font-weight: 800; font-size: 30px; line-height: 1; }
.ndis-badge .row1 .hrt { color: var(--ndis-green); font-size: 27px; line-height: 1; }
.ndis-badge .nd { font-weight: 800; font-size: 31px; line-height: 1; letter-spacing: -0.01em; margin-top: 3px; }
.hero-stats { position: absolute; left: -18px; bottom: 30px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px 24px; display: flex; gap: 28px; box-shadow: var(--shadow); }
.hero-stats .n { font-size: 27px; font-weight: 800; color: var(--teal-deep); }
.hero-stats .l { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; }

/* ---------- marquee strip ---------- */
.trust { background: var(--teal-deep); color: oklch(0.93 0.03 200); }
.trust .container { display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center; justify-content: center; padding-top: 22px; padding-bottom: 22px; font-weight: 600; font-size: 15px; }
.trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius); }
.about-media .float { position: absolute; right: -20px; bottom: -20px; background: var(--coral); color: #fff; border-radius: 20px; padding: 22px 26px; max-width: 220px; box-shadow: var(--shadow); }
.about-media .float b { display: block; font-size: 19px; }
.about-media .float span { font-size: 13.5px; opacity: 0.92; }
.about h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 18px; }
.about h2 em { font-style: normal; color: var(--teal); }
.about > div > p { font-size: 18px; color: var(--ink-soft); margin-bottom: 28px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 30px; }
.feature { display: flex; gap: 14px; }
.feature .ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; background: var(--teal-soft); color: var(--teal-deep); display: grid; place-items: center; }
.feature .ico svg { width: 24px; height: 24px; }
.feature b { display: block; font-size: 16.5px; margin-bottom: 3px; }
.feature p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { display: block; color: inherit; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s ease, box-shadow .25s ease, border-color .2s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal-line); }
.card > img { width: 100%; height: 184px; object-fit: cover; }
.card .body { padding: 24px 24px 26px; }
.card h3 { font-size: 20px; margin-bottom: 9px; }
.card .body p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; }
.card .more { color: var(--teal); font-weight: 700; font-size: 14.5px; display: inline-flex; gap: 6px; align-items: center; }
.card:hover .more { gap: 10px; }
.card-cta { grid-column: span 2; background: linear-gradient(135deg, var(--teal-deep), var(--teal)); color: #fff; border: none; display: flex; align-items: center; }
.card-cta .cta-inner { padding: 38px 42px; }
.card-cta h3 { color: #fff; font-size: 24px; margin-bottom: 10px; }
.card-cta p { color: oklch(0.97 0.01 200 / 0.86); font-size: 15.5px; margin-bottom: 22px; max-width: 48ch; }
.card-cta .btn-cta { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--teal-deep); font-weight: 700; font-size: 15px; border-radius: 999px; padding: 13px 24px; }
.card-cta:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
@media (max-width: 640px) { .card-cta { grid-column: span 1; } .card-cta .cta-inner { padding: 30px 26px; } }

/* ---------- nursing band ---------- */
.nursing { background: var(--panel); }
.nursing .lead { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 44px; }
.nursing .lead h2 { font-size: clamp(30px, 3.6vw, 42px); }
.nursing .lead p { font-size: 17px; color: var(--ink-soft); }
.nurse-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.nurse { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px 22px; }
.nurse .ico { width: 54px; height: 54px; border-radius: 14px; background: var(--coral-soft); color: var(--coral-deep); display: grid; place-items: center; margin-bottom: 16px; }
.nurse .ico svg { width: 28px; height: 28px; }
.nurse b { display: block; font-size: 16.5px; margin-bottom: 7px; }
.nurse p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- audiences ---------- */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.aud { border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; background: #fff; }
.aud .ico { width: 56px; height: 56px; border-radius: 16px; background: var(--teal-soft); color: var(--teal-deep); display: grid; place-items: center; margin-bottom: 20px; }
.aud .ico svg { width: 28px; height: 28px; }
.aud h3 { font-size: 22px; margin-bottom: 12px; }
.aud p { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; }
.aud .more { color: var(--coral-deep); font-weight: 700; font-size: 15px; }

/* ---------- participant groups ---------- */
.groups { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.group { display: block; position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 3/4; }
.group img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.group:hover img { transform: scale(1.06); }
.group span { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 16px; color: #fff; font-weight: 700; font-size: 15.5px; background: linear-gradient(transparent, oklch(0.25 0.03 220 / 0.82)); }

/* ---------- why choose ---------- */
.why { background: var(--teal-deep); color: #fff; }
.why .sechead h2, .why .sechead .kicker { color: #fff; }
.why .sechead .kicker { color: oklch(0.86 0.07 200); }
.why .sechead .kicker::before { background: oklch(0.86 0.07 200); }
.why .sechead p { color: oklch(0.88 0.03 200); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-item { background: oklch(0.98 0.004 200 / 0.06); border: 1px solid oklch(0.98 0.004 200 / 0.14); border-radius: 20px; padding: 30px 28px; }
.why-item .circ { width: 60px; height: 60px; border-radius: 16px; background: oklch(0.98 0.004 200 / 0.1); border: 1.5px solid oklch(0.86 0.07 200 / 0.5); display: grid; place-items: center; margin-bottom: 18px; color: oklch(0.9 0.07 200); }
.why-item .circ svg { width: 28px; height: 28px; }
.why-item h3 { font-size: 19px; margin-bottom: 10px; }
.why-item p { font-size: 14.5px; color: oklch(0.88 0.03 200); }
.why-item .tick { margin-top: 14px; color: oklch(0.86 0.1 150); font-weight: 700; font-size: 13.5px; }

/* ---------- commitments / rights ---------- */
.rights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.right { border: 1px solid var(--line); border-left: 3px solid var(--coral); border-radius: 0 18px 18px 0; padding: 26px 26px; background: #fff; }
.right h3 { font-size: 18px; margin-bottom: 9px; }
.right p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- steps ---------- */
.steps { background: var(--coral-soft); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding-top: 8px; }
.step .num { width: 52px; height: 52px; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 22px; margin-bottom: 18px; }
.step h3 { font-size: 19px; margin-bottom: 9px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- testimonials ---------- */
.tests { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.test .stars { color: var(--coral); letter-spacing: 2px; margin-bottom: 16px; font-size: 16px; }
.test blockquote { margin: 0 0 22px; font-size: 16px; line-height: 1.6; }
.test .who { display: flex; align-items: center; gap: 13px; }
.test .av { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 800; }
.test .who b { display: block; font-size: 15px; }
.test .who span { font-size: 13px; color: var(--ink-soft); }

/* ---------- suburbs ---------- */
.subs { background: var(--panel); }
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 920px; margin: 0 auto; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 8px; transition: border-color .2s, color .2s, transform .2s; color: var(--ink); text-decoration: none; cursor: pointer; }
a.chip:hover { transform: translateY(-2px); }
.chip:hover { border-color: var(--teal); color: var(--teal-deep); }
.chip .pin { color: var(--coral); display: inline-flex; }
.chip .pin svg { width: 14px; height: 14px; }
.chip--special { background: var(--teal-soft); border-color: var(--teal-line); color: var(--teal-deep); }
.chip--special:hover { border-color: var(--teal); color: var(--teal-deep); }
.chip--special svg { width: 15px; height: 15px; }
.chip--special .ext { font-weight: 800; margin-left: 1px; }
.sub-note { text-align: center; color: var(--ink-soft); font-size: 16px; margin-top: 32px; }
.sub-note a { color: var(--teal-deep); font-weight: 700; }

/* ---------- faq ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.qa { border: 1px solid var(--line); border-radius: 16px; margin-bottom: 14px; background: #fff; overflow: hidden; }
.qa summary { list-style: none; cursor: pointer; padding: 22px 26px; font-weight: 700; font-size: 17.5px; display: flex; align-items: center; gap: 16px; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .plus { margin-left: auto; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--teal-soft); color: var(--teal-deep); display: grid; place-items: center; font-size: 18px; transition: transform .2s; }
.qa[open] summary .plus { transform: rotate(45deg); background: var(--coral); color: #fff; }
.qa .ans { padding: 0 26px 24px; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- contact ---------- */
.contact { background: var(--teal-deep); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.contact h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 16px; }
.contact .clede { font-size: 17px; color: oklch(0.9 0.03 200); margin-bottom: 32px; max-width: 42ch; }
.cinfo { display: flex; flex-direction: column; gap: 18px; }
.cinfo a, .cinfo div { display: flex; gap: 14px; align-items: center; font-size: 16px; }
.cinfo .ico { width: 46px; height: 46px; border-radius: 13px; background: oklch(0.98 0.004 200 / 0.1); display: grid; place-items: center; flex-shrink: 0; color: oklch(0.88 0.08 200); }
.cinfo .ico svg { width: 22px; height: 22px; }
.cinfo small { display: block; font-size: 12.5px; color: oklch(0.82 0.03 200); text-transform: uppercase; letter-spacing: 0.08em; }
.cform { background: #fff; border-radius: 26px; padding: 36px; color: var(--ink); }
.cform h3 { font-size: 22px; margin-bottom: 6px; }
.cform .sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 24px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 15px; font: inherit; font-size: 15px; background: var(--paper); transition: border-color .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); }
.field textarea { resize: vertical; min-height: 110px; }
.cform .btn { width: 100%; justify-content: center; margin-top: 4px; }
.cform .ok { display: none; background: var(--teal-soft); color: var(--teal-deep); border-radius: 12px; padding: 16px; font-weight: 700; text-align: center; margin-top: 16px; }

/* ---------- acknowledgement ---------- */
.ack { background: var(--ink); color: oklch(0.9 0.008 220); }
.ack .container { display: flex; gap: 24px; align-items: center; padding-top: 40px; padding-bottom: 40px; }
.ack .flags { display: flex; gap: 8px; flex-shrink: 0; }
.ack .flag { width: 52px; height: 34px; border-radius: 5px; overflow: hidden; }
.ack p { font-size: 14.5px; line-height: 1.65; max-width: 92ch; }
.ack p b { color: #fff; }

/* ---------- footer ---------- */
.footer { background: oklch(0.22 0.02 222); color: oklch(0.78 0.012 220); font-size: 14.5px; }
.footer .container { padding-top: 64px; padding-bottom: 32px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid oklch(0.98 0.004 200 / 0.1); }
.footer .brand b, .footer .brand small { color: #fff; }
.footer .fblurb { margin-top: 18px; max-width: 36ch; line-height: 1.6; }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a:hover { color: #fff; }
.foot-bottom { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; padding-top: 26px; font-size: 13px; color: oklch(0.66 0.012 220); }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 38px; height: 38px; border-radius: 10px; background: oklch(0.98 0.004 200 / 0.08); display: grid; place-items: center; }
.foot-social svg { width: 18px; height: 18px; }

/* ---------- floating CTA ---------- */
.float-cta { position: fixed; right: 22px; bottom: 22px; z-index: 70; display: flex; flex-direction: column; gap: 10px; }
.float-cta a { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); color: #fff; }
.float-cta .call { background: var(--teal); }
.float-cta .wa { background: #25d366; }
.float-cta svg { width: 26px; height: 26px; }

/* ---------- funding explainer ---------- */
.funding { background: var(--panel); }
.fund-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.fund-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.fund-card .ftag { align-self: flex-start; font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--teal-deep); background: var(--teal-soft); border: 1px solid var(--teal-line); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.fund-card h3 { font-size: 19px; margin-bottom: 8px; }
.fund-card p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.fund-card .fnote { margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--coral-deep); }
.fund-reassure { margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; background: var(--teal-deep); border-radius: var(--radius); padding: 30px 34px; }
.fund-reassure .ritem { display: flex; gap: 14px; align-items: flex-start; }
.fund-reassure .ric { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 10px; background: oklch(0.98 0.01 200 / 0.14); color: #fff; display: grid; place-items: center; }
.fund-reassure .ric svg { width: 20px; height: 20px; }
.fund-reassure b { display: block; color: #fff; font-size: 15.5px; margin-bottom: 3px; }
.fund-reassure p { margin: 0; font-size: 13.5px; color: oklch(0.97 0.01 200 / 0.78); line-height: 1.5; }

/* ---------- responsive ---------- */
@media (max-width: 1040px) {
  .hero .container, .about, .contact-grid, .nursing .lead { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .aud-grid, .rights-grid, .why-grid, .tests { grid-template-columns: 1fr 1fr; }
  .nurse-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .groups { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero-media > img { height: 420px; }
  .nav, .topbar, .header .btn-coral { display: none; }
  .navtoggle { display: block; }
  .header.open .nav { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start; background: #fff; padding: 20px 24px; border-bottom: 1px solid var(--line); gap: 16px; max-height: 80vh; overflow-y: auto; }
  .header.open .navitem { flex-direction: column; align-items: flex-start; width: 100%; }
  .header.open .dropdown-wrap { position: static; transform: none; padding-top: 10px; opacity: 1; visibility: visible; }
  .header.open .dropdown { grid-template-columns: 1fr; box-shadow: none; border: 0; padding: 0 0 0 14px; min-width: 0; gap: 0; }
  .header.open .navitem > a .chev { display: none; }
  .logo-img { height: 42px; }
}
@media (max-width: 660px) {
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .logo-img { height: 40px; }
  .grid-3, .aud-grid, .rights-grid, .why-grid, .tests, .nurse-grid, .steps-grid, .feature-grid, .frow, .fund-grid, .fund-reassure { grid-template-columns: 1fr; }
  .groups { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 38px; }
  .about-media .float { position: static; margin-top: 16px; max-width: none; }
  .ack .container { flex-direction: column; align-items: flex-start; }
}
