/* ==========================================================================
   Astar Health Service — Design System & Stylesheet
   Brand: confident, warm, trustworthy NDIS support
   Palette: Astar blue + four-colour star accents (red/yellow/green/blue)
   Type: Plus Jakarta Sans
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --ink:      #0E2C52;   /* headings / navy */
  --blue-900: #0E2C52;
  --blue-800: #123B6B;
  --blue-700: #173F7C;   /* wordmark navy */
  --blue-600: #14538F;   /* primary brand */
  --blue-500: #1C75BC;   /* bright brand */
  --blue-400: #2E8BD6;
  --blue-100: #d8e6f6;
  --blue-50:  #eef4fb;
  --tint:     #f3f7fc;   /* section tint */

  /* Star accent colours */
  --red:    #E8312A;
  --yellow: #F6B500;
  --green:  #2FA84F;
  --star:   #1C75BC;

  --muted:   #495a6b;    /* body secondary — ~7:1 on white */
  --muted-2: #5d6e7e;    /* tertiary — ~5:1 on white */
  --surface: #ffffff;
  --line:    #e4ebf2;
  --line-strong: #d3deea;

  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(14,44,82,.06);
  --shadow:    0 14px 36px rgba(14,44,82,.10);
  --shadow-lg: 0 30px 70px rgba(14,44,82,.16);

  --ease: cubic-bezier(.2,.7,.2,1);
  --maxw: 1200px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-500); }

h1, h2, h3, h4 { font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
p { color: var(--muted); }
.lede { font-size: clamp(1.06rem, 1.5vw, 1.22rem); color: var(--muted); line-height: 1.7; }

:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  background: var(--blue-600); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 10px;
  font-weight: 700; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.bg-tint { background: var(--tint); }
.bg-navy { background: var(--blue-900); color: #cfe0f3; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.06rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-600); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 12px; height: 12px; flex: none;
  background:
    conic-gradient(from 0deg, var(--red) 0 25%, var(--yellow) 0 50%, var(--green) 0 75%, var(--star) 0 100%);
  clip-path: polygon(50% 0,62% 38%,100% 50%,62% 62%,50% 100%,38% 62%,0 50%,38% 38%);
}
.eyebrow.on-dark { color: #8fc0ee; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 700; font-size: .98rem; line-height: 1;
  padding: 14px 24px; border-radius: var(--r-pill); border: 2px solid transparent;
  cursor: pointer; transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 17px 30px; font-size: 1.04rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--blue-600); color: #fff; box-shadow: 0 10px 22px rgba(20,83,143,.28); }
.btn-primary:hover { background: var(--blue-700); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(20,83,143,.34); }
.btn-accent { background: var(--yellow); color: #3d2c00; box-shadow: 0 10px 22px rgba(246,181,0,.30); }
.btn-accent:hover { background: #ffc625; color: #3d2c00; transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--blue-700); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--blue-400); color: var(--blue-600); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: #fff; color: var(--blue-700); }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--blue-900); color: #bcd2ec; font-size: .86rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 9px; }
.topbar a { color: #dce8f7; font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; color: var(--yellow); }
.topbar .tb-right { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); transition: box-shadow .2s var(--ease); }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 14px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .logo-mark { width: 44px; height: 44px; }
.brand .logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name { font-weight: 800; font-size: 1.16rem; color: var(--blue-700); letter-spacing: -.01em; }
.logo-sub { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue-500); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: .98rem; padding: 9px 14px; border-radius: var(--r-pill); transition: background .15s var(--ease), color .15s var(--ease); }
.nav-links a:hover { background: var(--blue-50); color: var(--blue-600); }
.nav-links a.active { color: var(--blue-600); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue-700); }
.nav-phone svg { width: 18px; height: 18px; color: var(--blue-500); }
.nav-phone:hover { color: var(--blue-500); }

.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line-strong); background: #fff; border-radius: 12px; cursor: pointer; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2.4px; background: var(--ink); border-radius: 2px; transform: translate(-50%,-50%); transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav-toggle span::before { transform: translate(-50%,-50%) translateY(-6px); }
.nav-toggle span::after  { transform: translate(-50%,-50%) translateY(6px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translate(-50%,-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translate(-50%,-50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--blue-50), #fff 70%); }
.hero::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(40% 50% at 88% 8%, rgba(46,139,214,.14), transparent 70%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(32px, 5vw, 70px); align-items: center; padding-block: clamp(44px, 6vw, 84px); }
.hero-copy { min-width: 0; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line-strong); color: var(--blue-700); font-weight: 600; font-size: .85rem; padding: 8px 15px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.pill svg { width: 16px; height: 16px; color: var(--green); }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent { color: var(--blue-600); }
.hero-lede { max-width: 54ch; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-trust { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .95rem; font-weight: 600; }
.hero-trust .ic { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-50); color: var(--blue-600); flex: none; }
.hero-trust .ic svg { width: 17px; height: 17px; }

.hero-media { position: relative; }
.hero-media .shot { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--blue-100); }
.hero-media .shot img { width: 100%; height: 100%; object-fit: cover; }
.hero-media .star-accent { position: absolute; width: 76px; height: 76px; top: -22px; left: -22px; filter: drop-shadow(0 8px 16px rgba(14,44,82,.18)); }
.float-card { position: absolute; bottom: 22px; left: -26px; background: #fff; border-radius: var(--r); box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 12px; max-width: 250px; }
.float-card .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--green); color: #fff; flex: none; }
.float-card .ic svg { width: 22px; height: 22px; }
.float-card .t { font-weight: 800; color: var(--ink); font-size: .98rem; line-height: 1.15; }
.float-card .s { font-size: .82rem; color: var(--muted); }

/* ---------- Trust / partner strip ---------- */
.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding-block: 22px; }
.trust-badge img { height: 56px; width: auto; }
.trust-items { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 700; font-size: .96rem; }
.trust-item svg { width: 22px; height: 22px; color: var(--green); flex: none; }

/* ---------- Cards / services with photos ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.service-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--blue-100); color: inherit; }
.service-card .thumb { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--blue-100); }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.service-card:hover .thumb img { transform: scale(1.05); }
.service-card .thumb .tag { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.94); color: var(--blue-700); font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 6px 11px; border-radius: var(--r-pill); }
.service-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: .97rem; margin-bottom: 16px; }
.service-card .more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--blue-600); font-size: .95rem; }
.service-card .more svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.service-card:hover .more svg { transform: translateX(4px); }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1; letter-spacing: -.02em; }
.bg-navy .stat .label { color: #aac6e6; font-weight: 600; margin-top: 8px; font-size: .96rem; }
.stat .num .plus { color: var(--yellow); }

/* ---------- Split (image + copy) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split-copy { min-width: 0; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .shot { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; background: var(--blue-100); }
.split-media .shot img { width: 100%; height: 100%; object-fit: cover; }
.split-media .star-accent { position: absolute; width: 64px; height: 64px; bottom: -18px; right: -18px; filter: drop-shadow(0 8px 16px rgba(14,44,82,.18)); }

/* benefit list with coloured check badges */
.benefits { display: grid; gap: 18px; margin-top: 8px; }
.benefit { display: flex; gap: 14px; align-items: flex-start; }
.benefit .bx { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; flex: none; color: #fff; }
.benefit .bx svg { width: 20px; height: 20px; }
.benefit:nth-child(4n+1) .bx { background: var(--star); }
.benefit:nth-child(4n+2) .bx { background: var(--green); }
.benefit:nth-child(4n+3) .bx { background: var(--yellow); color: #3d2c00; }
.benefit:nth-child(4n+4) .bx { background: var(--red); }
.benefit h4 { font-size: 1.04rem; margin-bottom: 3px; }
.benefit p { font-size: .96rem; margin: 0; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 26px 28px; }
.step .num { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: 16px; }
.step:nth-child(3n+1) .num { background: var(--star); }
.step:nth-child(3n+2) .num { background: var(--green); }
.step:nth-child(3n+3) .num { background: var(--red); }
.step h3 { margin-bottom: 8px; }
.step p { font-size: .97rem; }

/* ---------- Why-choose badge grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .fx { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; color: #fff; }
.feature .fx svg { width: 25px; height: 25px; }
.feature:nth-child(6n+1) .fx { background: var(--star); }
.feature:nth-child(6n+2) .fx { background: var(--green); }
.feature:nth-child(6n+3) .fx { background: var(--yellow); color: #3d2c00; }
.feature:nth-child(6n+4) .fx { background: var(--red); }
.feature:nth-child(6n+5) .fx { background: var(--blue-600); }
.feature:nth-child(6n+6) .fx { background: var(--green); }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { font-size: .96rem; }

/* ---------- Suburb grid ---------- */
.suburb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.suburb { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 11px 18px; font-weight: 600; color: var(--ink); font-size: .95rem; }
.suburb svg { width: 9px; height: 9px; color: var(--blue-500); flex: none; }

/* ---------- Testimonials ---------- */
.t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 30px; position: relative; box-shadow: var(--shadow-sm); }
.testimonial .stars { color: var(--yellow); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 14px; }
.testimonial blockquote { font-size: 1.08rem; color: var(--ink); line-height: 1.6; }
.testimonial .who { display: flex; align-items: center; gap: 13px; margin-top: 20px; }
.testimonial .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--blue-600); color: #fff; display: grid; place-items: center; font-weight: 800; }
.testimonial .who .n { font-weight: 700; color: var(--ink); }
.testimonial .who .r { color: var(--muted-2); font-size: .9rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(40px, 6vw, 70px); text-align: center; color: #fff; isolation: isolate; }
.cta-band img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(14,44,82,.92), rgba(20,83,143,.82)); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d6e4f5; max-width: 60ch; margin: 14px auto 0; }
.cta-band .hero-cta { justify-content: center; margin-top: 28px; margin-bottom: 0; }

/* ---------- Page hero ---------- */
.page-hero { background: linear-gradient(180deg, var(--blue-50), #fff); padding-block: clamp(40px, 6vw, 72px); border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: .9rem; font-weight: 600; margin-bottom: 14px; }
.breadcrumb span { color: var(--muted-2); }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lede { max-width: 64ch; }

/* ---------- Service detail blocks ---------- */
.svc-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.svc-nav a { background: #fff; border: 1px solid var(--line-strong); border-radius: var(--r-pill); padding: 9px 16px; font-weight: 600; font-size: .92rem; color: var(--blue-700); }
.svc-nav a:hover { border-color: var(--blue-400); color: var(--blue-600); }
.svc-tag { display: inline-block; background: var(--blue-50); color: var(--blue-600); font-weight: 700; font-size: .82rem; letter-spacing: .03em; padding: 7px 14px; border-radius: var(--r-pill); margin-bottom: 4px; }
.svc-list { list-style: none; padding: 0; display: grid; gap: 12px; margin-top: 20px; }
.svc-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--muted); font-size: .98rem; }
.svc-list svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 1px; }

/* ---------- Mission / value cards ---------- */
.mission-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 30px; }
.mission-card h3 { margin-bottom: 10px; }
.mission-card p { font-size: 1rem; }
.value-row { display: flex; gap: 16px; align-items: flex-start; }
.value-row .ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: #fff; flex: none; }
.value-row .ic svg { width: 25px; height: 25px; }
.value-row:nth-child(4n+1) .ic { background: var(--star); }
.value-row:nth-child(4n+2) .ic { background: var(--green); }
.value-row:nth-child(4n+3) .ic { background: var(--yellow); color: #3d2c00; }
.value-row:nth-child(4n+4) .ic { background: var(--red); }
.value-row h4 { font-size: 1.1rem; margin-bottom: 5px; }
.value-row p { font-size: .96rem; }

/* ---------- Forms ---------- */
.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .92rem; color: var(--ink); }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff;
  border: 1.5px solid var(--line-strong); border-radius: 12px; padding: 13px 15px; width: 100%; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-400); box-shadow: 0 0 0 4px rgba(46,139,214,.16); }
.field [aria-invalid="true"] { border-color: var(--red); box-shadow: 0 0 0 4px rgba(232,49,42,.12); }
.field .hint { font-size: .82rem; color: var(--muted-2); }
.field .error-msg { font-size: .82rem; color: var(--red); font-weight: 600; min-height: 0; }
.field .error-msg:empty { display: none; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 8px; }
.form-status { margin-top: 16px; padding: 0; border-radius: 12px; font-weight: 600; }
.form-status.show { padding: 14px 16px; }
.form-status.success { background: #e8f6ee; color: #1c7a43; border: 1px solid #bfe6cf; }

/* contact cards */
.contact-cards { display: grid; gap: 14px; }
.contact-card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; }
.contact-card .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex: none; }
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card .l { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); font-weight: 700; }
.contact-card .v { font-weight: 700; color: var(--ink); }
.contact-card .v a { color: var(--ink); }
.contact-card .v a:hover { color: var(--blue-600); }
.contact-card .s { color: var(--muted); font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 1.04rem; color: var(--ink); padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-q .chev { width: 22px; height: 22px; color: var(--blue-500); transition: transform .25s var(--ease); flex: none; }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 22px 20px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-900); color: #aec6e2; padding-top: clamp(48px, 6vw, 76px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer-brand { min-width: 0; }
.site-footer .brand .logo-name { color: #fff; }
.site-footer .brand .logo-sub { color: var(--yellow); }
.footer-about { margin-top: 18px; color: #9fbada; max-width: 34ch; font-size: .96rem; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #cfe0f3; transition: background .18s var(--ease), transform .18s var(--ease); }
.footer-social a:hover { background: var(--blue-500); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: #9fbada; font-size: .96rem; }
.footer-col a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; color: #bcd2ec; font-size: .95rem; }
.footer-contact-item svg { width: 18px; height: 18px; color: var(--yellow); flex: none; margin-top: 3px; }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: #fff; }
.acknowledgement { border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; color: #8fabcc; font-size: .9rem; line-height: 1.6; }
.acknowledgement strong { color: #dce8f7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; color: #7e9cbe; font-size: .88rem; }
.footer-bottom a { color: #7e9cbe; } .footer-bottom a:hover { color: #fff; }
.footer-bottom .legal { display: flex; gap: 18px; flex-wrap: wrap; }

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

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .center { text-align: center; }
.text-muted { color: var(--muted); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: clamp(40px,6vw,72px); }

/* ==========================================================================
   Dense / "Ambition-feel" components
   ========================================================================== */

/* ---- Services dropdown mega-menu ---- */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.has-dropdown > a .caret { width: 15px; height: 15px; transition: transform .2s var(--ease); }
.has-dropdown:hover > a .caret, .has-dropdown:focus-within > a .caret { transform: rotate(180deg); }
.mega { position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px); width: 580px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 14px; opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease); z-index: 120; }
.has-dropdown:hover .mega, .has-dropdown:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega a { display: flex; gap: 12px; align-items: center; padding: 11px 12px; border-radius: 12px; color: var(--ink); font-weight: 600; font-size: .92rem; }
.mega a:hover { background: var(--blue-50); color: var(--blue-600); }
.mega .mi { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: #fff; flex: none; }
.mega a:nth-child(7n+1) .mi { background: var(--star); }
.mega a:nth-child(7n+2) .mi { background: var(--green); }
.mega a:nth-child(7n+3) .mi { background: var(--yellow); color: #3d2c00; }
.mega a:nth-child(7n+4) .mi { background: var(--red); }
.mega a:nth-child(7n+5) .mi { background: var(--blue-600); }
.mega a:nth-child(7n+6) .mi { background: var(--green); }
.mega a:nth-child(7n+7) .mi { background: var(--star); }
.mega .mi svg { width: 19px; height: 19px; }
.mega-foot { margin-top: 8px; padding: 13px 14px; border-radius: 12px; background: var(--blue-900); color: #cfe0f3; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: .9rem; }
.mega-foot a { color: #fff; font-weight: 700; }

/* ---- Full-bleed hero ---- */
.hero-xl { position: relative; isolation: isolate; color: #fff; overflow: hidden; padding-block: clamp(72px, 10vw, 132px) clamp(96px, 11vw, 140px); }
.hero-xl .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; z-index: -2; }
.hero-xl::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(102deg, rgba(11,32,64,.95) 0%, rgba(17,59,107,.86) 46%, rgba(20,83,143,.42) 100%); }
.hero-xl .deco { position: absolute; z-index: -1; opacity: .5; filter: drop-shadow(0 10px 30px rgba(0,0,0,.2)); }
.hero-xl .deco.d1 { width: 120px; height: 120px; top: 8%; right: 7%; }
.hero-xl .deco.d2 { width: 64px; height: 64px; bottom: 18%; right: 22%; opacity: .35; }
.hero-xl .inner { max-width: 640px; }
.hero-xl .pill { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.30); color: #fff; }
.hero-xl .pill svg { color: var(--yellow); }
.hero-xl h1 { color: #fff; font-size: clamp(2.4rem, 5.4vw, 4rem); margin-bottom: 18px; }
.hero-xl h1 .accent { color: #ffd34d; }
.hero-xl .lede { color: #dbe7f6; max-width: 56ch; margin-bottom: 28px; }
.hero-xl .hero-cta { margin-bottom: 28px; }
.hero-xl .hero-trust { color: #d3e2f4; gap: 22px; flex-wrap: wrap; }
.hero-xl .hero-trust .ti { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: .95rem; }
.hero-xl .hero-trust .ti svg { width: 20px; height: 20px; color: #6fe09a; flex: none; }

/* ---- Overlapping "who we support" cards ---- */
.support-row { position: relative; z-index: 3; margin-top: clamp(-86px, -8vw, -64px); }
.support-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.support-card { background: #fff; border-radius: var(--r-lg); padding: 26px 22px; box-shadow: var(--shadow); border-top: 4px solid var(--blue-600); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.support-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.support-card:nth-child(4n+1) { border-color: var(--star); }
.support-card:nth-child(4n+2) { border-color: var(--green); }
.support-card:nth-child(4n+3) { border-color: var(--yellow); }
.support-card:nth-child(4n+4) { border-color: var(--red); }
.support-card .si { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 14px; background: var(--blue-50); color: var(--blue-600); }
.support-card .si svg { width: 24px; height: 24px; }
.support-card h3 { font-size: 1.06rem; margin-bottom: 6px; }
.support-card p { font-size: .92rem; margin: 0; }

/* ---- Section flag (small kicker centered) ---- */
.section-flag { text-align: center; }

/* ---- Big 5-step process band ---- */
.process-band { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 68px); background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); color: #fff; }
.process-band .pbg { position: absolute; inset: 0; z-index: -1; opacity: .12; width: 100%; height: 100%; object-fit: cover; }
.process-band .pblob { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(46,139,214,.5), transparent 70%); top: -120px; right: -80px; z-index: -1; }
.process-band .section-head h2, .process-band .section-head p { color: #fff; }
.process-band .section-head p { color: #c4d8f0; }
.proc-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin-top: 40px; }
.proc { position: relative; }
.proc .pn { font-size: 2.4rem; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.55); }
.proc .pt { color: #fff; font-weight: 800; font-size: 1.05rem; margin: 12px 0 6px; }
.proc p { color: #c4d8f0; font-size: .9rem; margin: 0; }
.proc .pdot { position: absolute; top: 6px; right: 0; width: 12px; height: 12px; border-radius: 50%; }
.proc:nth-child(5n+1) .pdot { background: var(--red); }
.proc:nth-child(5n+2) .pdot { background: var(--yellow); }
.proc:nth-child(5n+3) .pdot { background: var(--green); }
.proc:nth-child(5n+4) .pdot { background: #6fe09a; }
.proc:nth-child(5n+5) .pdot { background: #ffd34d; }

/* ---- News / resources cards ---- */
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); color: inherit; }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card .body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card .meta { font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-500); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.blog-card p { font-size: .94rem; margin-bottom: 14px; }
.blog-card .more { margin-top: auto; font-weight: 700; color: var(--blue-600); font-size: .92rem; }

/* ---- CTA split with image ---- */
.cta-split { display: grid; grid-template-columns: 1.1fr .9fr; align-items: stretch; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); }
.cta-split .c-copy { background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); color: #fff; padding: clamp(32px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.cta-split .c-copy h2 { color: #fff; }
.cta-split .c-copy p { color: #cfe0f3; margin: 12px 0 24px; }
.cta-split .c-media { position: relative; min-height: 280px; }
.cta-split .c-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Image fitting overrides — show full photos (no cropping), badge sizing
   ========================================================================== */

/* Service detail photos: show the whole image at its natural ratio */
.split-media .shot { aspect-ratio: auto; background: var(--blue-50); }
.split-media .shot img { height: auto; object-fit: contain; }

/* Service card thumbs: whole image visible on a soft brand tint */
.service-card .thumb { aspect-ratio: 4 / 3; background: var(--blue-50); }
.service-card .thumb img { object-fit: contain; }

/* Lighten the hero overlay so the photograph shows through (translucent) */
.hero-xl::after { background: linear-gradient(102deg, rgba(11,32,64,.86) 0%, rgba(17,59,107,.72) 45%, rgba(20,83,143,.34) 100%); }

/* New NDIS "I love ndis" badge (raster, white background) */
img[src$="ndis-badge.png"] { width: auto; height: 66px; }
.trust-badge img[src$="ndis-badge.png"] { height: 70px; }
.site-footer img[src$="ndis-badge.png"] { background: #fff; padding: 8px 12px; border-radius: 12px; height: 58px; }

/* Registration-group code chip on service blocks */
.svc-code { display: flex; width: fit-content; align-items: center; gap: 7px; background: var(--blue-600); color: #fff; font-weight: 700; font-size: .78rem; letter-spacing: .03em; padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 12px; }
.svc-code::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 520px; margin-inline: auto; width: 100%; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .feature-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-steps { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split .c-media { min-height: 220px; }
}

@media (max-width: 820px) {
  /* Disable header blur on mobile: backdrop-filter creates a containing block
     that would trap the fixed off-canvas menu, shrinking its background. */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); height: 100dvh;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: #fff; padding: 86px 20px 28px; box-shadow: -20px 0 50px rgba(14,44,82,.18);
    transform: translateX(100%); transition: transform .28s var(--ease); z-index: 90;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 13px 16px; font-size: 1.05rem; }
  .nav-toggle { display: block; z-index: 95; }
  .nav-phone { display: none; }
  .topbar .tb-left .tb-item.hide-sm { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .t-grid { grid-template-columns: 1fr; }
  .float-card { left: 12px; }
  .mega { display: none; }
  .has-dropdown > a .caret { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .feature-grid, .steps { grid-template-columns: 1fr; }
  .support-grid, .proc-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .cta-band .btn { width: 100%; }
  .trust-strip .container { justify-content: center; text-align: center; }
  .float-card { display: none; }
  .nav-actions .btn-accent { display: none; }
}
