/* ─── RESET & VARIABLES ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #fafaf8; --off: #f2f0ec; --off2: #ede9e1; --white: #fff;
  --ink: #0f0f0f; --mid: #666; --soft: #aaa; --line: #e5e2db;
  --purple: #8b7bb8; --purple-dark: #6b5b9e; --purple-pale: #f0ecfa;
  --charcoal: #1e1b2e; --charcoal2: #2d2840;
  --serif: 'Cormorant Garamond', serif; --sans: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); background: var(--bg); color: var(--ink);
  font-size: 15px; line-height: 1.7; font-weight: 300; overflow-x: hidden;
}

/* ─── CUSTOM CURSOR (desktop only) ─────────────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }
  #cur-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1px solid rgba(139,123,184,0.6); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .2s, height .2s;
    mix-blend-mode: multiply;
  }
  #cur-dot {
    position: fixed; width: 6px; height: 6px;
    background: var(--purple); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
  }
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────────────────── */
.r { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.r.v { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }

/* ─── LABELS ─────────────────────────────────────────────────────────────── */
.sec-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--soft); margin-bottom: 18px; font-weight: 500;
}
.sec-label::before { content: ''; width: 28px; height: 1px; background: var(--purple); flex-shrink: 0; }
.sec-label.lgt { color: rgba(255,255,255,0.4); }

/* ─── NAV ─────────────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 400;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 60px;
  background: #f2eeff; 
/*  background: var(--charcoal); */
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo {
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  letter-spacing: 0.06em; color: #fff; text-decoration: none; flex-shrink: 0;
}
.nav-logo i { font-style: italic; color: var(--purple); }
.nav-links { display: flex; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); text-decoration: none; padding: 0 14px;
  height: 60px; display: flex; align-items: center; transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-pill {
  background: var(--purple); color: #fff; font-size: 11px; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase; padding: 9px 22px;
  border: none; transition: background .22s; text-decoration: none;
  display: inline-block; white-space: nowrap; flex-shrink: 0;
}
.nav-pill:hover { background: var(--purple-dark); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.7); transition: all .25s;
}
.nav-mobile {
  display: none; position: fixed; inset: 60px 0 0 0;
  background: var(--charcoal); z-index: 399; flex-direction: column;
  padding: 32px 24px; gap: 0; border-top: 1px solid rgba(255,255,255,0.08);
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); text-decoration: none;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color .2s;
}
.nav-mobile a:hover { color: #fff; }
.nav-mobile .nav-pill { margin-top: 24px; text-align: center; border: none; }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--charcoal);
}
.hero-video-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1c1a28 0%, #0d0c14 100%); z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,12,25,0.88) 0%, rgba(15,12,25,0.5) 60%, transparent 100%);
  z-index: 1;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,123,184,0.18) 0%, transparent 65%);
  top: -200px; right: -150px; z-index: 1; pointer-events: none;
}
.hero-line { position: absolute; pointer-events: none; z-index: 1; }
.hlv {
  width: 1px; top: 0; bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.05) 30%, rgba(255,255,255,0.05) 70%, transparent);
}
.hlh {
  height: 1px; left: 0; right: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.04) 70%, transparent);
}
.hero-dot-accent { position: absolute; border-radius: 50%; pointer-events: none; z-index: 2; }
.hero-content { position: relative; z-index: 5; padding: 80px 64px; max-width: 800px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 28px; padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 40px;
  background: rgba(255,255,255,0.04);
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,123,184,0.3);
}
.hero h1 {
  font-family: var(--serif); font-size: clamp(52px, 9vw, 112px);
  line-height: 0.96; font-weight: 600; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--purple); }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.5); max-width: 500px;
  line-height: 1.85; font-weight: 300; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-w {
  background: var(--white); color: var(--ink); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 15px 34px;
  border: none; transition: all .22s; text-decoration: none; display: inline-block;
}
.btn-w:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }
.btn-ghost-l {
  background: transparent; color: rgba(255,255,255,0.6); font-size: 11px;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 0; border: none; border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: all .22s; text-decoration: none; display: inline-block;
}
.btn-ghost-l:hover { color: #fff; border-color: #fff; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 64px;
  display: flex; align-items: center; gap: 12px; z-index: 5;
}
.hero-scroll span { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.scroll-ln {
  width: 52px; height: 1px;
  background: linear-gradient(to right, rgba(139,123,184,0.6), transparent);
  animation: hs 2s ease-in-out infinite;
}
@keyframes hs { 0%,100%{opacity:.4;transform:scaleX(.4)} 50%{opacity:1;transform:scaleX(1)} }

/* ─── STATS ──────────────────────────────────────────────────────────────── */
.stats {
  display: flex; gap: 20px; padding: 48px 40px;
  background: var(--charcoal); border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.stat-b {
  flex: 1; min-width: 140px; padding: 36px 28px; border-radius: 24px;
  background: var(--white);
  transition: transform .35s cubic-bezier(0.22,1,0.36,1), box-shadow .35s;
}
.stat-b:hover { transform: translateY(-7px) scale(1.02); box-shadow: 0 24px 48px rgba(0,0,0,0.5); }
.sb-big { font-family: var(--serif); font-size: 44px; font-weight: 600; line-height: 1; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 5px; }
.sb-big span { color: var(--purple); font-weight: 300; font-size: 28px; }
.sb-lbl { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.about-img {
  position: relative; min-height: 480px; overflow: hidden;
  background: linear-gradient(135deg, #b0aca4, #7a7872);
  display: flex; align-items: center; justify-content: center;
}
.about-img svg { stroke: rgba(255,255,255,0.3); width: 48px; height: 48px; }
.about-img::after {
  content: 'YOUR PHOTO HERE'; position: absolute; bottom: 20px; left: 20px;
  font-size: 9px; letter-spacing: .14em; color: rgba(255,255,255,.4); text-transform: uppercase;
}
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--white));
  pointer-events: none;
}
.about-txt {
  padding: 88px 64px; background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.about-txt h2 { font-family: var(--serif); font-size: clamp(36px, 4.5vw, 56px); font-weight: 600; line-height: 1.06; letter-spacing: -0.01em; margin-bottom: 22px; }
.about-txt h2 em { font-style: italic; font-weight: 300; color: var(--purple); }
.about-txt p { font-size: 15px; color: var(--mid); line-height: 1.9; font-weight: 300; margin-bottom: 14px; }
.about-txt p strong { color: var(--ink); font-weight: 600; }
.about-bullets { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.about-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--ink); }
.ab-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); flex-shrink: 0; margin-top: 7px; box-shadow: 0 0 0 3px rgba(139,123,184,0.18); }

/* ─── SERVICES GRID ──────────────────────────────────────────────────────── */
.svc { background: var(--charcoal); border-bottom: 1px solid rgba(255,255,255,0.07); }
.svc-header {
  padding: 72px 56px 52px; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end;
}
.svc-header h2 { font-family: var(--serif); font-size: clamp(36px, 4vw, 54px); font-weight: 600; line-height: 1.06; letter-spacing: -0.01em; color: #fff; }
.svc-header h2 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.3); }
.svc-header p { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.85; font-weight: 300; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 32px 40px 48px; }
.svc-card {
  padding: 40px 32px; border-radius: 20px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
  transition: transform .4s cubic-bezier(0.22,1,0.36,1), box-shadow .4s, background .3s;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.svc-card:hover { background: var(--purple); transform: translateY(-8px) scale(1.02); box-shadow: 0 28px 56px rgba(0,0,0,0.5); }
.svc-card:hover .sc-icon { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.svc-card:hover .sc-icon svg { stroke: #fff; }
.svc-card:hover .sc-tag { color: rgba(255,255,255,0.6); }
.svc-card:hover .sc-title { color: #fff; }
.svc-card:hover .sc-body { color: rgba(255,255,255,0.7); }
.svc-card:hover .sc-arr { color: #fff; transform: translateX(4px); }
.sc-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(139,123,184,0.2); border: 1.5px solid rgba(139,123,184,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: all .3s;
}
.sc-icon svg { width: 18px; height: 18px; stroke: var(--purple); fill: none; stroke-width: 1.5; transition: stroke .25s; }
.sc-tag { font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--purple); font-weight: 600; margin-bottom: 8px; transition: color .2s; }
.sc-title { font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1.1; color: #fff; margin-bottom: 8px; letter-spacing: -0.01em; flex: 1; }
.sc-body { font-size: 13px; color: rgba(255,255,255,0.42); line-height: 1.75; font-weight: 300; margin-bottom: 20px; transition: color .2s; }
.sc-arr { font-size: 14px; color: rgba(255,255,255,0.3); transition: transform .22s, color .22s; align-self: flex-start; margin-top: auto; }

/* ─── NDIS ───────────────────────────────────────────────────────────────── */
.ndis-split { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.ndis-l {
  padding: 80px 56px; background: var(--off);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.ndis-bg-n {
  position: absolute; font-family: var(--serif); font-size: 200px; font-weight: 600;
  color: rgba(139,123,184,0.06); bottom: -20px; left: -10px; line-height: 1;
  pointer-events: none; letter-spacing: -0.04em; user-select: none;
}
.ndis-l h2 { font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); font-weight: 600; line-height: 1.07; letter-spacing: -0.01em; margin-bottom: 18px; position: relative; z-index: 1; }
.ndis-l h2 em { font-style: italic; font-weight: 300; color: var(--purple); }
.ndis-l p { font-size: 15px; color: var(--mid); line-height: 1.9; font-weight: 300; max-width: 380px; position: relative; z-index: 1; margin-bottom: 14px; }
.ndis-bullets { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.ndis-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--ink); }
.ndis-r { padding: 80px 56px; background: var(--white); display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.ndis-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ndis-pill {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--purple); border-radius: 40px; padding: 16px 20px; text-align: center;
  box-shadow: 0 4px 20px rgba(139,123,184,0.3);
}
.ndis-pill .pn { font-family: var(--serif); font-size: 22px; font-weight: 600; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.ndis-pill .pl { font-size: 8px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 3px; font-weight: 500; }
.btn-dark {
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase; padding: 14px 32px;
  border: none; transition: all .22s; text-decoration: none; display: inline-block;
}
.btn-dark:hover { background: var(--purple); }

/* ─── QUOTE ──────────────────────────────────────────────────────────────── */
.quote {
  background: var(--charcoal); padding: 80px 64px;
  display: flex; align-items: flex-start; gap: 48px;
  position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.q-glow {
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,123,184,0.14) 0%, transparent 65%);
  top: -200px; right: -80px; pointer-events: none;
}
.q-bar { width: 3px; background: var(--purple); flex-shrink: 0; align-self: stretch; opacity: 0.5; border-radius: 2px; }
.quote blockquote { font-family: var(--serif); font-size: clamp(24px, 3vw, 42px); font-weight: 300; color: #fff; line-height: 1.3; font-style: italic; position: relative; z-index: 1; }
.quote blockquote strong { font-weight: 600; font-style: normal; color: #c4b8e0; }
.q-sub { margin-top: 18px; font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: .14em; text-transform: uppercase; position: relative; z-index: 1; }

/* ─── HOW IT WORKS ───────────────────────────────────────────────────────── */
.how { border-bottom: 1px solid var(--line); background: var(--bg); }
.how-header {
  padding: 72px 56px 52px; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end;
}
.how-header h2 { font-family: var(--serif); font-size: clamp(36px, 4vw, 54px); font-weight: 600; line-height: 1.06; letter-spacing: -0.01em; }
.how-header h2 em { font-style: italic; font-weight: 300; color: var(--purple); }
.how-header p { font-size: 15px; color: var(--mid); line-height: 1.85; font-weight: 300; }
.how-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; padding: 32px 40px 48px;
}
.step-arrow { display: flex; align-items: center; justify-content: center; padding: 0 8px; color: rgba(139,123,184,0.4); font-size: 22px; flex-shrink: 0; margin-top: -20px; }
.step {
  padding: 34px 28px; border-radius: 20px; background: var(--white);
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform .4s cubic-bezier(0.22,1,0.36,1), box-shadow .4s, background .3s;
}
.step:hover { background: var(--purple-pale); transform: translateY(-8px) scale(1.02); box-shadow: 0 24px 48px rgba(139,123,184,0.18), 0 0 0 1.5px rgba(139,123,184,0.35); }
.step-num { font-family: var(--serif); font-size: 48px; font-weight: 600; color: rgba(139,123,184,0.18); line-height: 1; margin-bottom: 10px; letter-spacing: -0.02em; transition: color .3s; }
.step:hover .step-num { color: rgba(139,123,184,0.45); }
.step-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.step-body { font-size: 12px; color: var(--mid); line-height: 1.75; font-weight: 300; }

/* ─── MEDICOLEGAL ────────────────────────────────────────────────────────── */
.medico { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,0.07); }
.medico-l {
  background: var(--charcoal); padding: 80px 56px;
  display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden;
}
.medico-l-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,123,184,0.14) 0%, transparent 65%);
  bottom: -100px; left: -80px; pointer-events: none;
}
.medico-l h2 { font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); font-weight: 600; line-height: 1.07; letter-spacing: -0.01em; color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.medico-l h2 em { font-style: italic; font-weight: 300; color: var(--purple); }
.medico-l p { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.9; font-weight: 300; max-width: 380px; position: relative; z-index: 1; margin-bottom: 14px; }
.medico-r { background: var(--charcoal2); padding: 80px 56px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.med-item {
  border-bottom: 1px solid rgba(255,255,255,0.07); padding: 20px 0;
  display: flex; align-items: center; gap: 16px; text-decoration: none; color: inherit;
  transition: padding-left .2s; position: relative; z-index: 1;
}
.med-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.med-item:hover { padding-left: 8px; }
.med-item:hover .med-name { color: var(--purple); }
.med-item:hover .med-arr { transform: translateX(4px); color: var(--purple); }
.med-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); flex-shrink: 0; box-shadow: 0 0 0 3px rgba(139,123,184,0.2); }
.med-name { font-family: var(--serif); font-size: 20px; font-weight: 400; color: #fff; transition: color .2s; flex: 1; }
.med-sub { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 300; }
.med-arr { font-size: 16px; color: rgba(255,255,255,0.25); transition: transform .22s, color .22s; }

/* ─── SERVICES STRIP ─────────────────────────────────────────────────────── */
.svc-strip { border-bottom: 1px solid var(--line); background: var(--white); overflow: hidden; }
.strip-header {
  padding: 48px 56px 32px; display: flex;
  align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.strip-header h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); font-weight: 600; line-height: 1.07; letter-spacing: -0.01em; color: var(--ink); }
.strip-header h2 em { font-style: italic; font-weight: 300; color: var(--purple); }
.strip-header-r { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--soft); }
.strip-grid { display: flex; gap: 20px; padding: 0 40px 48px; flex-wrap: wrap; }
.strip-chip {
  flex: 1; min-width: 150px; padding: 36px 28px 32px; border-radius: 24px;
  background: var(--white); border: 1.5px solid var(--line);
  text-decoration: none; color: inherit;
  transition: background .28s, transform .4s cubic-bezier(0.22,1,0.36,1), box-shadow .4s;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.strip-chip:hover { background: var(--purple); transform: translateY(-8px) scale(1.03); box-shadow: 0 24px 48px rgba(139,123,184,0.28), 0 0 0 1.5px rgba(139,123,184,0.4); z-index: 2; }
.strip-chip::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--purple); transform: scaleX(0); transform-origin: left; transition: transform .32s; border-radius: 24px 24px 0 0; }
.strip-chip:hover::before { transform: scaleX(1); }
.strip-chip:hover .chip-tag { color: rgba(255,255,255,0.55); }
.strip-chip:hover .chip-title { color: #fff; }
.strip-chip:hover .chip-body { color: rgba(255,255,255,0.6); }
.strip-chip:hover .chip-arr { color: #fff; transform: translateX(3px); }
.strip-chip:hover .chip-icon { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.strip-chip:hover .chip-icon svg { stroke: #fff; }
.chip-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--purple-pale); border: 1.5px solid rgba(139,123,184,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: all .25s; flex-shrink: 0;
}
.chip-icon svg { width: 14px; height: 14px; stroke: var(--purple); fill: none; stroke-width: 1.5; transition: stroke .2s; }
.chip-tag { font-size: 8px; letter-spacing: .16em; text-transform: uppercase; color: var(--purple); font-weight: 600; margin-bottom: 5px; transition: color .2s; }
.chip-title { font-family: var(--serif); font-size: 19px; font-weight: 600; line-height: 1.15; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.01em; transition: color .2s; }
.chip-body { font-size: 11px; color: var(--mid); line-height: 1.65; font-weight: 300; flex: 1; transition: color .2s; }
.chip-arr { font-size: 12px; color: var(--soft); transition: transform .22s, color .22s; margin-top: 14px; align-self: flex-start; }

/* ─── CTA ────────────────────────────────────────────────────────────────── */
.cta {
  position: relative; padding: 100px 56px; overflow: hidden;
  background: var(--charcoal); border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cta-wash { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(139,123,184,0.12) 0%, transparent 70%); }
.cta-inner { position: relative; z-index: 3; max-width: 560px; }
.cta-inner h2 { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); font-weight: 600; line-height: 1; letter-spacing: -0.02em; color: #fff; margin-bottom: 18px; }
.cta-inner h2 em { font-style: italic; font-weight: 300; color: var(--purple); }
.cta-inner p { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.85; font-weight: 300; max-width: 440px; margin-bottom: 36px; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
footer {
  padding: 28px 48px; display: flex; align-items: center; justify-content: space-between;
  background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.07); flex-wrap: wrap; gap: 16px;
}
.f-logo { font-family: var(--serif); font-size: 14px; color: rgba(255,255,255,0.4); }
.f-logo i { font-style: italic; color: var(--purple); }
.f-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.f-links a { font-size: 10px; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,0.3); text-decoration: none; transition: color .2s; }
.f-links a:hover { color: var(--purple); }
.f-copy { font-size: 10px; color: rgba(255,255,255,0.2); }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr 1fr; gap: 16px; padding: 32px 24px 40px; }
  .step-arrow { display: none; }
  .strip-grid { padding: 0 24px 40px; }
  .strip-chip { min-width: 180px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-pill.desktop-only { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 80px 24px 60px; }
  .hero h1 { font-size: clamp(44px, 12vw, 72px); }
  .hero-sub { font-size: 15px; }
  .hero-scroll { left: 24px; }

  .stats { padding: 24px 16px; gap: 12px; }
  .stat-b { min-width: calc(50% - 6px); padding: 24px 20px; }

  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 260px; }
  .about-img-overlay { background: linear-gradient(to bottom, transparent 60%, var(--white)); }
  .about-txt { padding: 48px 24px; }

  .svc-header { grid-template-columns: 1fr; gap: 16px; padding: 48px 24px 32px; }
  .svc-grid { grid-template-columns: 1fr; padding: 20px 16px 32px; gap: 14px; }

  .ndis-split { grid-template-columns: 1fr; }
  .ndis-l, .ndis-r { padding: 56px 24px; }
  .ndis-pills { grid-template-columns: repeat(3, 1fr); }

  .quote { padding: 56px 24px; gap: 24px; }

  .how-header { grid-template-columns: 1fr; gap: 16px; padding: 48px 24px 32px; }
  .how-steps { grid-template-columns: 1fr; padding: 20px 16px 32px; }

  .medico { grid-template-columns: 1fr; }
  .medico-l, .medico-r { padding: 56px 24px; }

  .strip-header { padding: 40px 24px 24px; }
  .strip-grid { padding: 0 16px 32px; gap: 14px; }
  .strip-chip { min-width: calc(50% - 7px); }

  .cta { padding: 72px 24px; }

  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .f-links { gap: 16px; }
}

@media (max-width: 480px) {
  .stats { flex-direction: column; }
  .stat-b { min-width: 100%; }
  .ndis-pills { grid-template-columns: 1fr 1fr; }
  .ndis-pills .ndis-pill:last-child { grid-column: span 2; }
  .strip-chip { min-width: 100%; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-w, .btn-ghost-l { text-align: center; }
}
