/* =========================================================
   Wonder Lives Care 
 
   ========================================================= */

:root {
  --font-sans: "Figtree", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Figtree", ui-sans-serif, system-ui, sans-serif;

  /* css*/
  --background: #fefdff;
  --foreground: #110841;
  --card: #ffffff;
  --primary: #800097;
  --primary-foreground: #fefcf4;
  --secondary: #f8edff;
  --secondary-foreground: #300078;
  --muted: #f7f3fe;
  --muted-foreground: #423d60;
  --accent: #f7dcff;
  --accent-foreground: #510063;
  --border: #e4deec;
  --sun: #ffc921;
  --sun-foreground: #1b174f;
  --lilac: #d1b6f3;
  --cream: #f6eace;
  --indigo: #1f157b;
  --indigo-foreground: #fefcf4;
  --popover: #ffffff;
  --destructive: #df2225;

  --radius: 1rem;
  --container: 80rem; /* max-w-7xl */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --shadow-sm: 0 1px 2px #0000000d;
  --shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
  --shadow-lg: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000000f;
  --shadow-xl: 0 20px 25px -5px #0000001a, 0 8px 10px -6px #0000000f;
  --shadow-2xl: 0 25px 50px -12px #00000040;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; }
svg { display: block; flex-shrink: 0; }
main { flex: 1; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem; /* px-5 */
}
@media (min-width: 1024px) {
  .container { padding-inline: 2rem; /* lg:px-8 */ }
}
.container-narrow { max-width: 64rem; } /* max-w-5xl */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Typography ---------- */
.font-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
}
.eyebrow-sun {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--sun);
  color: var(--sun-foreground);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.eyebrow-sun .dot {
  width: 0.375rem; height: 0.375rem; border-radius: 9999px; background: var(--indigo);
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem, 3.5vw, 2.25rem); /* text-3xl lg:text-4xl */
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--foreground);
  margin-top: 0.75rem;
}
.section-heading.lg { font-size: clamp(1.875rem, 4vw, 3rem); } /* lg:text-5xl */
.lead {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
}
.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}
.section-head.left { text-align: left; margin-left: 0; max-width: 36rem; }
.section-block { margin-top: 6rem; } /* mt-24 */

/* ---------- Buttons (exact reference patterns) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 150ms var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
  line-height: 1.25;
}
.btn svg { width: 1rem; height: 1rem; }
.btn:hover .arrow { transform: translateX(3px); }
.btn .arrow { transition: transform 150ms var(--ease); }

/* Header CTAs */
.btn-header-sun {
  background: var(--sun);
  color: var(--indigo);
  font-size: 14px;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  min-height: 2.75rem;
  gap: 0.5rem;
}
.btn-header-sun svg {
  width: 1rem;
  height: 1rem;
  transition: transform 150ms var(--ease);
}
.btn-header-sun:hover svg { transform: scale(1.1); }
.btn-header-sun:hover {
  background: color-mix(in srgb, var(--sun) 90%, #000);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.btn-header-indigo {
  background: var(--indigo);
  color: var(--indigo-foreground);
  font-size: 14px;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  min-height: 2.75rem;
}
.btn-header-indigo:hover {
  background: color-mix(in srgb, var(--indigo) 90%, #fff);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Page CTAs */
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.875rem 1.75rem;
  font-weight: 600;
}
.btn-primary:hover { background: color-mix(in srgb, var(--primary) 90%, #000); }
.btn-sun {
  background: var(--sun);
  color: var(--sun-foreground);
  padding: 0.875rem 1.75rem;
  font-weight: 600;
}
.btn-sun:hover { filter: brightness(1.05); }
.btn-outline-light {
  background: transparent;
  border-color: color-mix(in srgb, var(--primary-foreground) 40%, transparent);
  color: var(--primary-foreground);
  padding: 0.875rem 1.75rem;
}
.btn-outline-light:hover {
  background: color-mix(in srgb, var(--primary-foreground) 10%, transparent);
}
.btn-outline-dark {
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 0.875rem 1.75rem;
}
.btn-outline-dark:hover { background: var(--cream); }
.btn-on-primary {
  background: var(--background);
  color: var(--primary);
  padding: 0.875rem 1.75rem;
}
.btn-on-primary:hover { background: color-mix(in srgb, var(--background) 90%, #000); }

/* ---------- Top bar ---------- */
.topbar {
  display: none;
  background: var(--indigo);
  color: var(--indigo-foreground);
  font-size: 13px;
}
@media (min-width: 768px) {
  .topbar { display: block; }
}
.topbar .inner {
  display: flex;
  height: 2.25rem; /* h-9 */
  align-items: center;
  justify-content: space-between;
}
.topbar-tagline { font-weight: 500; letter-spacing: 0.025em; }
.topbar-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 150ms var(--ease);
}
.topbar-links a:hover { color: var(--sun); }
.topbar-links svg { width: 0.875rem; height: 0.875rem; }
@media (max-width: 1023px) {
  .topbar-links .email-link { display: none; }
}

/* ---------- Header (cream + gold border) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-bar {
  background: color-mix(in srgb, var(--cream) 95%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 4px solid var(--sun);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 5.5rem;
  padding-block: 0.75rem;
}
@media (min-width: 768px) {
  .header-inner { height: 6rem; }
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .brand { gap: 1rem; }
}
.brand-logo {
  height: 4rem;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .brand-logo { height: 4.5rem; }
}
.brand-divider {
  display: none;
  width: 1px;
  height: 2.75rem;
  background: color-mix(in srgb, var(--indigo) 20%, transparent);
}
@media (min-width: 640px) {
  .brand-divider { display: block; height: 3rem; }
  @media (min-width: 768px) { .brand-divider { height: 3.5rem; } }
}
.brand-ndis {
  display: none;
  height: 2.75rem;
  width: auto;
  object-fit: contain;
}
@media (min-width: 640px) {
  .brand-ndis { display: block; }
}
@media (min-width: 768px) {
  .brand-ndis { height: 3.5rem; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 15px;
  font-weight: 600;
  color: color-mix(in srgb, var(--indigo) 75%, transparent);
  transition: color 150ms var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: -0.125rem;
  height: 3px;
  border-radius: 9999px;
  background: var(--sun);
  transform: scaleX(0);
  transition: transform 150ms var(--ease);
}
.nav-link:hover,
.nav-link.is-active { color: var(--indigo); }
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link.has-chev { display: inline-flex; align-items: center; gap: 0.25rem; }
.nav-link.has-chev::after { right: 1.75rem; }
.nav-link .chev {
  width: 1rem; height: 1rem;
  transition: transform 150ms var(--ease);
}
.nav-item { position: relative; }
.nav-item:hover .chev,
.nav-item:focus-within .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  width: 760px;
  max-width: min(760px, 92vw);
  transform: translateX(-50%) translateY(4px);
  background: var(--popover);
  border: 1px solid color-mix(in srgb, var(--indigo) 10%, transparent);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 180ms var(--ease);
  z-index: 60;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 1rem;
  transition: background 150ms var(--ease);
}
.dropdown-item:hover { background: var(--cream); }
.dropdown-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--indigo);
  color: var(--sun);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.dropdown-item .dropdown-icon,
.dropdown-item .dropdown-icon svg {
  color: var(--sun);
  stroke: currentColor;
}
.dropdown-icon svg { width: 1.25rem; height: 1.25rem; }
.dropdown-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--foreground);
}
.dropdown-copy { min-width: 0; }
.dropdown-copy span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-top: 0.1rem;
}
.dropdown-footer {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}
.dropdown-footer a {
  color: var(--primary);
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.header-ctas {
  display: none;
  align-items: center;
  gap: 0.6rem;
}
@media (min-width: 1024px) {
  .header-ctas { display: flex; }
}
.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--indigo);
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}
.menu-toggle svg { width: 1.25rem; height: 1.25rem; }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mobile-nav.is-open { pointer-events: auto; }
.mobile-nav-backdrop {
  position: absolute; inset: 0;
  background: #11084199;
  opacity: 0;
  transition: opacity 200ms var(--ease);
}
.mobile-nav.is-open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(22rem, 92vw);
  height: 100%;
  background: var(--background);
  box-shadow: var(--shadow-2xl);
  transform: translateX(100%);
  transition: transform 220ms var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.is-open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.mobile-nav-body {
  padding: 1rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mobile-nav-body > a {
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.975rem;
  color: var(--indigo);
}
.mobile-nav-body > a:hover,
.mobile-nav-body > a.is-active { background: var(--cream); }
.mobile-nav-sub {
  padding-left: 0.5rem;
  margin: 0.15rem 0 0.5rem;
  display: flex;
  flex-direction: column;
}
.mobile-nav-sub a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
}
.mobile-nav-sub a:hover { background: var(--secondary); color: var(--primary); }
.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--sun);
  color: var(--cream);
}
.hero-sun-line {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 0.5rem;
  background: var(--sun);
  z-index: 20;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
    color-mix(in srgb, var(--indigo) 85%, transparent),
    color-mix(in srgb, var(--indigo) 60%, transparent),
    color-mix(in srgb, var(--indigo) 20%, transparent));
}
@media (min-width: 1024px) {
  .hero-overlay {
    background: linear-gradient(to right,
      color-mix(in srgb, var(--indigo) 40%, transparent),
      color-mix(in srgb, var(--indigo) 50%, transparent),
      color-mix(in srgb, var(--indigo) 90%, transparent));
  }
}
.hero-inner {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
}
@media (min-width: 1024px) {
  .hero-inner { padding: 8rem 0; }
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}
.hero-spacer { display: none; }
@media (min-width: 1024px) {
  .hero-spacer { display: block; }
}
.hero-lotus {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
  opacity: 0.7;
  pointer-events: none;
}
.hero-content { color: var(--cream); max-width: 36rem; }
.hero-content h1 {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--cream);
  text-shadow: 0 4px 4px #00000026;
}
.hero-content .lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: color-mix(in srgb, var(--cream) 95%, transparent);
  text-shadow: 0 2px 4px #00000033;
  max-width: 36rem;
}
.hero-prompt {
  margin-top: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sun);
}
.hero-ctas {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--muted) 50%, color-mix(in srgb, var(--cream) 70%, var(--secondary)) 100%);
  border-bottom: 4px solid var(--sun);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -3rem; top: -3rem;
  width: 16rem; height: 16rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--lilac) 30%, transparent);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-top: 0.75rem;
  max-width: 40rem;
}
.page-hero .lead { margin-top: 0.85rem; max-width: 40rem; }

/* ---------- Beliefs ---------- */
.beliefs-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .beliefs-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .beliefs-grid { grid-template-columns: repeat(5, 1fr); }
}
.belief-card {
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 150ms var(--ease);
  height: 100%;
}
.belief-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.belief-card.is-sun {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--sun-foreground);
}
.belief-card.is-sun .belief-icon {
  background: color-mix(in srgb, var(--indigo) 15%, transparent);
  color: var(--indigo);
}
.belief-card.is-sun p { color: color-mix(in srgb, var(--sun-foreground) 85%, transparent); }
.belief-icon {
  width: 3rem; height: 3rem;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.belief-icon svg { width: 1.35rem; height: 1.35rem; }
.belief-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.belief-card p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* ---------- Journey ---------- */
.journey-split {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .journey-split { grid-template-columns: 1fr 1fr; }
}
.journey-frame { position: relative; }
.journey-accent {
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  width: 6rem;
  height: 6rem;
  border-radius: 1.5rem;
  background: var(--sun);
  transform: rotate(-6deg);
  z-index: 0;
}
.journey-image {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  aspect-ratio: 5/4;
  background: var(--muted);
  box-shadow: var(--shadow-xl);
  z-index: 1;
}
.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journey-aside {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
}
.journey-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .journey-points { grid-template-columns: 1fr 1fr; }
}
.journey-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  background: var(--cream);
  border: 1px solid color-mix(in srgb, var(--sun) 40%, transparent);
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--foreground);
}
.journey-points .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--primary);
  flex-shrink: 0;
}
.check-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .check-list.cols-2 { grid-template-columns: 1fr 1fr; }
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.check-list .check {
  width: 1.35rem; height: 1.35rem;
  border-radius: 9999px;
  background: var(--sun);
  color: var(--sun-foreground);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.check-list .check svg { width: 0.85rem; height: 0.85rem; }

/* ---------- Services (3-col like reference) ---------- */
.services-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.services-head .text { max-width: 36rem; }
.services-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 150ms var(--ease);
}
.services-all:hover { gap: 0.75rem; }
.services-all svg { width: 1rem; height: 1rem; }
.services-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem;
  transition: all 150ms var(--ease);
  height: 100%;
}
.service-card:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, transparent);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.service-card .icon-wrap {
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  transition: all 150ms var(--ease);
}
.service-card:hover .icon-wrap {
  background: var(--primary);
  color: var(--primary-foreground);
}
.service-card .icon-wrap svg { width: 1.35rem; height: 1.35rem; }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.1rem;
}
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 650;
  font-size: 0.9rem;
  color: var(--primary);
}
.service-card:hover .learn-more { gap: 0.55rem; }
.service-card .learn-more svg { width: 1rem; height: 1rem; }

/* ---------- Rights accent panel ---------- */
.rights-panel {
  border-radius: 2.5rem;
  background: var(--accent);
  padding: 2.5rem;
}
@media (min-width: 1024px) {
  .rights-panel { padding: 3.5rem; }
}
.rights-panel-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .rights-panel-grid { grid-template-columns: 1fr 1fr; }
}
.rights-panel .section-heading { color: var(--foreground); }
.rights-panel .lead { color: color-mix(in srgb, var(--foreground) 75%, transparent); }
.rights-list {
  display: grid;
  gap: 0.75rem;
}
.rights-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--background) 80%, transparent);
  border: 1px solid color-mix(in srgb, var(--background) 50%, transparent);
  padding: 1rem;
  font-weight: 500;
}
.rights-list .check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: var(--sun);
  color: var(--sun-foreground);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.rights-list .check svg { width: 0.75rem; height: 0.75rem; }

/* ---------- Referral audience ---------- */
.audience-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .audience-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
}
.audience-card {
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 150ms var(--ease);
}
.audience-card:hover {
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border));
  background: var(--cream);
}
.audience-card .icon-wrap {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.audience-card .icon-wrap svg { width: 1.15rem; height: 1.15rem; }

/* ---------- Quote ---------- */
.quote-band {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 0;
}
.quote-band blockquote {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.quote-band cite {
  font-style: normal;
  font-weight: 650;
  color: var(--primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-card .stars {
  display: flex;
  gap: 0.15rem;
  color: var(--sun);
  margin-bottom: 1rem;
}
.testimonial-card .stars svg { width: 1rem; height: 1rem; fill: currentColor; }
.testimonial-card .quote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
  flex: 1;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-author img {
  width: 3rem; height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--muted-foreground); }

/* ---------- Final CTA panel ---------- */
.final-cta-wrap { margin-top: 6rem; }
.final-cta {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
  padding: 2.5rem 1.5rem;
}
@media (min-width: 1024px) {
  .final-cta { padding: 4rem; }
}
.final-cta .eyebrow-sun { margin-bottom: 1.25rem; }
.final-cta .section-heading {
  color: var(--cream);
  margin-top: 0;
  font-size: clamp(1.875rem, 4vw, 3rem);
  max-width: 36rem;
  margin-inline: auto;
}
.final-cta .lead {
  color: color-mix(in srgb, var(--primary-foreground) 85%, transparent);
  max-width: 42rem;
  margin: 1.5rem auto 0;
}
.final-cta .hero-ctas {
  justify-content: center;
  margin-top: 1.75rem;
}

/* ---------- Trust bar (gold, above footer) ---------- */
.trust-bar {
  margin-top: 6rem;
  background: var(--sun);
  color: var(--indigo);
  text-align: center;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 1rem;
}

/* ---------- Footer (primary purple) ---------- */
.site-footer {
  margin-top: 0;
  border-top: 1px solid var(--border);
}
.footer-main {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0;
}
.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
}
.footer-brand-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  background: var(--background);
  padding: 1rem;
  margin-bottom: 1.25rem;
}
.footer-brand-card .brand-logo {
  height: 5rem;
  filter: none;
}
.footer-brand-card .brand-divider {
  display: block;
  height: 4rem;
  background: color-mix(in srgb, var(--indigo) 20%, transparent);
}
.footer-brand-card .brand-ndis {
  display: block;
  height: 3.5rem;
}
.footer-brand p {
  color: color-mix(in srgb, var(--primary-foreground) 85%, transparent);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 28rem;
}
.footer-badge {
  display: inline-flex;
  margin-top: 1.25rem;
  background: var(--sun);
  color: var(--sun-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}
.footer-col h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sun);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 15px;
  color: color-mix(in srgb, var(--primary-foreground) 90%, transparent);
  transition: color 150ms var(--ease);
}
.footer-col a:hover { color: var(--sun); }
.footer-col svg { width: 1rem; height: 1rem; margin-top: 0.25rem; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--primary-foreground) 15%, transparent);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--primary-foreground) 70%, transparent);
}
.footer-bottom a { color: var(--sun); }
.footer-motto {
  text-align: center;
  padding: 0.85rem 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--cream) 90%, transparent);
  background: var(--primary);
}

/* ---------- Support pages ---------- */
.support-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .support-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
  }
}
.support-image {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  background: var(--muted);
}
.support-image img { width: 100%; height: 100%; object-fit: cover; }

.feature-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.35rem;
  height: 100%;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.feature-card h3 .dot {
  width: 0.55rem; height: 0.55rem;
  border-radius: 50%;
  background: var(--sun);
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.outcomes-panel {
  border-radius: 2.5rem;
  background: var(--cream);
  border: 1px solid color-mix(in srgb, var(--sun) 40%, transparent);
  padding: 2.5rem 1.5rem;
}
@media (min-width: 1024px) {
  .outcomes-panel { padding: 3.5rem; }
}
.outcomes-panel-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}
.outcomes-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .outcomes-grid { grid-template-columns: repeat(3, 1fr); }
}
.outcome-card {
  background: var(--background);
  border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  border-radius: 1rem;
  padding: 1.5rem;
}
.outcome-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1rem;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
}
.outcome-icon svg { width: 1.25rem; height: 1.25rem; }
.outcome-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}
.outcome-card p {
  font-size: 0.90625rem;
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
  line-height: 1.55;
}
.outcomes-personal {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 1rem;
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
  font-style: italic;
}
.outcomes-personal em {
  font-style: italic;
  font-weight: 600;
  color: var(--foreground);
}

.control-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .control-grid { grid-template-columns: 1fr 1fr; }
}
.control-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
}
.control-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.45rem; }
.control-card p { font-size: 0.925rem; color: var(--muted-foreground); line-height: 1.55; }

.support-list { display: flex; flex-direction: column; gap: 1.25rem; }
.support-row {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.75rem;
  display: grid;
  gap: 1.25rem;
  transition: all 150ms var(--ease);
}
.support-row:hover {
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border));
}
@media (min-width: 768px) {
  .support-row {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.support-row h2 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.4rem; }
.support-row > div > p { color: var(--muted-foreground); margin-bottom: 0.85rem; }
.outcomes-inline { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.outcomes-inline span {
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
}
.outcomes-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

/* ---------- Forms & content ---------- */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-label .req { color: var(--destructive); }
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--background);
  transition: border-color 150ms, box-shadow 150ms;
  font-size: 1rem;
}
.form-hint {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 20%, transparent);
}
.form-control.is-invalid { border-color: var(--destructive); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23423d60' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 6l3.5 3.5L11.5 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
.form-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.45;
}
.form-check input {
  margin-top: 0.25rem;
  width: 1.05rem; height: 1.05rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.form-grid { display: grid; gap: 0 1.25rem; }
@media (min-width: 640px) {
  .form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
}
.form-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
@media (min-width: 768px) {
  .form-panel { padding: 2.25rem; }
}
.form-panel h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.35rem; }
.form-panel > .lead { margin-top: 0.35rem; margin-bottom: 1.5rem; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.contact-cards {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
}
.contact-card .icon-wrap {
  width: 3rem; height: 3rem;
  margin: 0 auto 0.85rem;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
}
.contact-card .icon-wrap svg { width: 1.25rem; height: 1.25rem; }
.contact-card h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  margin-bottom: 0.4rem;
}
.contact-card a, .contact-card p {
  font-weight: 650;
  font-size: 1.05rem;
}
.contact-card a:hover { color: var(--primary); }

.two-col { display: grid; gap: 2rem; }
@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1.1fr; align-items: start; }
}
.steps { display: grid; gap: 1rem; }
@media (min-width: 768px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.35rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.step-num {
  width: 2.25rem; height: 2.25rem;
  border-radius: 9999px;
  background: var(--sun);
  color: var(--sun-foreground);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.step p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
}

.prose { max-width: 48rem; }
.prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 0.85rem;
}
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 1.5rem 0 0.55rem; }
.prose p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
}
.prose ul { margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.prose ul li {
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.55;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 0.45rem; height: 0.45rem;
  border-radius: 50%;
  background: var(--sun);
}

.rights-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .rights-grid { grid-template-columns: 1fr 1fr; }
}
.right-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: all 150ms var(--ease);
}
.right-card:hover {
  border-color: color-mix(in srgb, var(--primary) 35%, var(--border));
  box-shadow: var(--shadow);
}
.right-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--primary);
}
.right-card p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

.pill-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.pill {
  background: var(--secondary);
  color: var(--secondary-foreground);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
}
.map-placeholder {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  min-height: 16rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--muted-foreground);
}
.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.section-cta-row.center { justify-content: center; }

.band-muted { background: var(--muted); padding: 4rem 0; margin-top: 6rem; }
.band-secondary { background: var(--secondary); padding: 4rem 0; margin-top: 6rem; }
.band-cream {
  background: linear-gradient(180deg, var(--cream) 0%, color-mix(in srgb, var(--secondary) 50%, var(--cream)) 100%);
  padding: 4rem 0;
  margin-top: 6rem;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}
.error-page h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* Utility */
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.75rem;
}

/* Reveal: never blank content */
[data-reveal] { opacity: 1; transform: none; }
html.js-ready [data-reveal].is-visible {
  animation: wlc-fade-up 0.55s var(--ease) both;
}
@keyframes wlc-fade-up {
  from { opacity: 0.9; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}


/* =========================================================
   SITEWIDE PAGE SYSTEM — matched to lovable reference
   ========================================================= */

/* Layout section shells */
.w-section {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 1024px) {
  .w-section { padding-left: 2rem; padding-right: 2rem; }
}
.w-section--7xl { max-width: 80rem; }
.w-section--6xl { max-width: 72rem; }
.w-section--5xl { max-width: 64rem; }
.w-section--3xl { max-width: 48rem; }
.w-section--mt16 { margin-top: 4rem; }
.w-section--mt20 { margin-top: 5rem; }
.w-section--mt24 { margin-top: 6rem; }
.w-section--mb { margin-bottom: 1rem; }
.w-section--center { text-align: center; }

/* ---- Cream page hero (all inner pages) ---- */
.page-hero-cream {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border-bottom: 4px solid var(--sun);
}
.page-hero-sunline {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 0.5rem;
  background: var(--sun);
  z-index: 2;
}
.page-lotus {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.page-lotus--bl {
  left: 1rem; bottom: 1rem; opacity: 0.9; display: none;
}
.page-lotus--tr {
  right: 1rem; top: 1.5rem; opacity: 0.8; display: none;
}
.page-lotus--final-tl { left: 1rem; top: 1rem; opacity: 0.6; }
.page-lotus--final-br { right: 1rem; bottom: 1rem; opacity: 0.7; }
@media (min-width: 768px) {
  .page-lotus--bl, .page-lotus--tr { display: block; }
}
.page-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1.25rem 3.5rem;
}
@media (min-width: 1024px) {
  .page-hero-inner { padding: 7rem 2rem 5rem; }
}
.page-hero-badge {
  display: inline-block;
  border-radius: 9999px;
  background: var(--indigo);
  color: var(--indigo-foreground);
  padding: 0.375rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.5rem;
}
.page-hero-inner h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--indigo);
  margin: 0 auto;
}
@media (min-width: 640px) {
  .page-hero-inner h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .page-hero-inner h1 { font-size: 3.75rem; }
}
.page-hero-lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: color-mix(in srgb, var(--indigo) 80%, transparent);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .page-hero-lead { font-size: 1.25rem; }
}
.page-hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.btn-md {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

/* Intro text band */
.intro-band {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.intro-band p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--foreground) 75%, transparent);
}

/* Section title */
.sec-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--foreground);
  margin: 0;
}
@media (min-width: 1024px) {
  .sec-title { font-size: 2.25rem; }
}
.sec-title.center { text-align: center; }
.sec-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin: 0 0 0.75rem;
}
.sec-kicker.center { text-align: center; }
.sec-lead {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: color-mix(in srgb, var(--foreground) 75%, transparent);
}

/* Support listing cards (ndis-supports) */
.support-cards {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .support-cards { grid-template-columns: 1fr 1fr; }
}
.support-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem;
  transition: all 150ms var(--ease);
  height: 100%;
}
.support-card:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, transparent);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.support-card-icon {
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  transition: all 150ms var(--ease);
}
.support-card:hover .support-card-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}
.support-card-icon svg { width: 1.5rem; height: 1.5rem; }
.support-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--foreground);
}
.support-card > p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
  margin: 0;
}
.support-card-outcomes-label {
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
}
.support-card-outcomes-label svg {
  width: 1rem; height: 1rem;
  color: var(--sun);
  margin-top: 0.125rem;
}
.support-card-outcomes {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.support-card-outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 15px;
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
  line-height: 1.45;
}
.support-card-outcomes .dot {
  width: 0.375rem; height: 0.375rem;
  border-radius: 9999px;
  background: var(--primary);
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.support-card-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  align-self: flex-start;
  transition: background 150ms var(--ease);
}
.support-card:hover .support-card-cta {
  background: color-mix(in srgb, var(--primary) 90%, #000);
}
.support-card-cta svg { width: 1rem; height: 1rem; }

/* Rights / feature icon cards */
.icon-cards {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .icon-cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .icon-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .icon-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
}
.icon-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem;
  transition: all 150ms var(--ease);
  height: 100%;
}
.icon-card:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, transparent);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.icon-card-icon {
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  transition: all 150ms var(--ease);
}
.icon-card:hover .icon-card-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}
.icon-card-icon svg { width: 1.5rem; height: 1.5rem; }
.icon-card h2, .icon-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--foreground);
}
.icon-card p {
  font-size: 15px;
  line-height: 1.625;
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
  margin: 0;
}

/* Soft panel */
.soft-panel {
  border-radius: 2.5rem;
  background: var(--accent);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .soft-panel { padding: 3.5rem; }
}
.soft-panel h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--foreground);
  margin: 0;
}
@media (min-width: 1024px) {
  .soft-panel h2 { font-size: 2.25rem; }
}
.soft-panel p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Final CTA panel — matched to reference rounded primary block */
.final-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
  padding: 2.5rem;
}
@media (min-width: 1024px) {
  .final-panel { padding: 4rem; }
}
.final-panel-badge {
  position: relative;
  z-index: 2;
  display: inline-block;
  border-radius: 9999px;
  background: var(--sun);
  color: var(--sun-foreground);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.25rem;
}
.final-panel-heading {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0 auto;
  max-width: none;
}
@media (min-width: 640px) {
  .final-panel-heading { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .final-panel-heading { font-size: 3rem; }
}
.final-panel-break { display: none; }
@media (min-width: 640px) {
  .final-panel-break { display: block; }
}
.final-panel-lead {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: color-mix(in srgb, var(--primary-foreground) 85%, transparent);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.final-panel-actions {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.final-panel-contacts {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--primary-foreground) 70%, transparent);
}

/* Support detail content */
.sd-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .sd-split { grid-template-columns: 1fr 1fr; }
}
.sd-split-media { position: relative; }
.sd-split-accent {
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  width: 6rem;
  height: 6rem;
  border-radius: 1.5rem;
  background: var(--indigo);
  transform: rotate(6deg);
  z-index: 0;
}
.sd-split-image {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  aspect-ratio: 5 / 4;
  background: var(--muted);
  box-shadow: var(--shadow-xl);
  z-index: 1;
}
.sd-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sd-image {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-xl);
  background: var(--muted);
  margin: 0 auto;
  max-width: 56rem;
}
.sd-image img { width: 100%; height: 100%; object-fit: cover; }
.sd-prose {
  max-width: 48rem;
  margin: 0 auto;
}
.sd-prose p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--foreground) 75%, transparent);
  margin-top: 1rem;
}
.sd-prose p:first-child { margin-top: 1.25rem; }
.sd-prose--flush {
  max-width: none;
  margin: 0;
}
.sd-prose--flush p:first-child { margin-top: 1.25rem; }
.sd-kicker {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  margin: 0 0 0.75rem;
}
.sd-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  letter-spacing: -0.025em;
  margin: 0;
}
@media (min-width: 1024px) {
  .sd-title { font-size: 2.25rem; }
}
.sd-kicker--left,
.sd-title--left { text-align: left; }
.sd-kicker--left {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.sd-subtitle {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 1.125rem;
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
}

/* Contact layout */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    align-items: start;
  }
}
.contact-side { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
}
.contact-info-card .ic {
  width: 2.75rem; height: 2.75rem;
  border-radius: 1rem;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-card .ic svg { width: 1.25rem; height: 1.25rem; }
.contact-info-card .lbl {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
}
.contact-info-card a,
.contact-info-card .val {
  display: block;
  margin-top: 0.15rem;
  font-weight: 650;
  color: var(--foreground);
  word-break: break-all;
}
.contact-info-card a:hover { color: var(--primary); }
.contact-sun-card {
  border-radius: 1.5rem;
  background: var(--sun);
  color: var(--sun-foreground);
  padding: 1.5rem;
}
.contact-sun-card strong {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  display: block;
}
.contact-sun-card p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--sun-foreground) 85%, transparent);
}
.contact-form-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.75rem;
}
@media (min-width: 1024px) {
  .contact-form-card { padding: 2.5rem; }
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

/* Referral two-column (steps + form) */
.referral-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .referral-layout {
    grid-template-columns: 1fr 1.35fr;
    align-items: start;
  }
}
.referral-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.next-card {
  border-radius: 1.5rem;
  background: var(--accent);
  padding: 1.75rem;
}
.next-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--foreground);
}
.next-list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.next-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
}
.next-list .num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.next-list li > span:last-child { padding-top: 0.125rem; }
.motto-card {
  border-radius: 1.5rem;
  background: var(--cream);
  border: 1px solid color-mix(in srgb, var(--sun) 40%, transparent);
  padding: 1.75rem;
}
.motto-card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}
.motto-card p + p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
}
.form-block {
  border-radius: 1rem;
  background: color-mix(in srgb, var(--muted) 40%, transparent);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-block-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin: 0 0 1.25rem;
}
.form-block .form-group:last-child { margin-bottom: 0; }

/* Map */
.map-block {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--muted);
  min-height: 16rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--muted-foreground);
}
.map-card {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}
.map-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .map-card-head { padding: 2rem; }
}
.map-card-head .ic {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 1rem;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.map-card-head .ic svg { width: 1.25rem; height: 1.25rem; }
.map-card-head h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0;
}
.map-card-head p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--foreground) 70%, transparent);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* Steps */
.steps-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .steps-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .steps-row { grid-template-columns: repeat(4, 1fr); }
}
.step-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.35rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.step-card .num {
  width: 2.25rem; height: 2.25rem;
  border-radius: 9999px;
  background: var(--sun);
  color: var(--sun-foreground);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.step-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
  margin: 0;
}

/* Pills */
.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.topic-pill {
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Prose legal */
.prose-page {
  max-width: 48rem;
  margin: 0 auto;
}
.prose-page h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 0.85rem;
  color: var(--foreground);
}
.prose-page h2:first-child { margin-top: 0; }
.prose-page p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
}
.prose-page ul {
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.prose-page li {
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.55;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
}
.prose-page li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 0.45rem; height: 0.45rem;
  border-radius: 50%;
  background: var(--sun);
}
.prose-page a { color: var(--primary); font-weight: 600; }

/* Keep about aliases working */
.about-hero { /* fallback if old class used */ }


/* About who / mission-vision (shared site styles) */
.about-who-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-who-grid { grid-template-columns: 1fr 1fr; }
}
.about-photo { position: relative; }
.about-photo-deco {
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  width: 6rem;
  height: 6rem;
  border-radius: 1.5rem;
  background: var(--lilac);
  transform: rotate(-6deg);
  z-index: 0;
}
.about-photo-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 2rem;
  aspect-ratio: 5/4;
  background: var(--muted);
  box-shadow: var(--shadow-xl);
}
.about-photo-frame img { width:100%; height:100%; object-fit:cover; }
.about-mv {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .about-mv { grid-template-columns: 1fr 1fr; }
}
.about-mv-card {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  padding: 2.5rem;
}
@media (min-width: 1024px) {
  .about-mv-card { padding: 3rem; }
}
.about-mv-card--mission {
  background: var(--cream);
  border: 2px solid var(--sun);
}
.about-mv-card--vision { background: var(--indigo); }
.about-mv-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.about-mv-kicker--mission { color: color-mix(in srgb, var(--indigo) 60%, transparent); }
.about-mv-kicker--vision { color: var(--sun); }
.about-mv-card h2 {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
@media (min-width: 1024px) {
  .about-mv-card h2 { font-size: 2.25rem; }
}
.about-mv-card--mission h2 { color: var(--indigo); }
.about-mv-card--vision h2 { color: var(--cream); }
.about-mv-card p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.625;
}
.about-mv-card p + p { margin-top: 1rem; }
.about-mv-card--mission p { color: color-mix(in srgb, var(--indigo) 80%, transparent); }
.about-mv-card--vision p { color: color-mix(in srgb, var(--cream) 90%, transparent); }
.about-beliefs-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
