:root {
  --blue: #123c69;
  --blue-dark: #092642;
  --teal: #148f8b;
  --teal-dark: #0d6663;
  --gold: #f4b942;
  --cream: #f8fbfb;
  --white: #ffffff;
  --charcoal: #24323d;
  --muted: #62717d;
  --line: #dce8ec;
  --shadow: 0 20px 50px rgba(18, 60, 105, 0.12);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

body.high-contrast {
  --blue: #001f3f;
  --teal: #006f6b;
  --gold: #ffd447;
  --cream: #ffffff;
  --muted: #111111;
  --line: #111111;
  color: #000000;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 1rem;
  padding: 0.8rem 1rem;
  background: var(--gold);
  color: #111;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.notice {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem clamp(1rem, 4vw, 4rem);
  background: var(--blue-dark);
  color: white;
  font-size: 0.92rem;
}

.notice p {
  margin: 0;
}

.notice div,
.nav-actions,
.hero-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.notice a {
  color: white;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav {
  min-height: 82px;
  padding: 0.9rem clamp(1rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.5rem);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.brand-mark.logo-mark {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(20, 143, 139, 0.18);
}

.brand-mark.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand strong {
  display: block;
  color: var(--blue);
  font-size: 1.05rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.menu {
  display: flex;
  gap: clamp(0.55rem, 1vw, 0.95rem);
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-weight: 700;
  font-size: clamp(0.86rem, 0.9vw, 0.94rem);
  min-width: 0;
}

.menu a,
.footer a {
  text-decoration: none;
}

.menu a {
  white-space: nowrap;
}

.nav-actions {
  justify-content: flex-end;
  flex-wrap: nowrap;
  min-width: max-content;
}

.menu a:hover,
.footer a:hover {
  color: var(--teal);
}

.menu-button {
  display: none;
}

.phone,
.accessibility-button {
  color: var(--blue);
  background: none;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  color: white;
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(20, 143, 139, 0.22);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--blue);
  background: white;
  border-color: var(--line);
}

.button.small {
  min-height: 40px;
  padding: 0.58rem 0.9rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 90% 0%, rgba(244, 185, 66, 0.22), transparent 34rem),
    linear-gradient(180deg, #f7fcfc, #ffffff);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  color: var(--teal-dark);
  background: rgba(20, 143, 139, 0.1);
  border: 1px solid rgba(20, 143, 139, 0.18);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.3rem, 5.5vw, 5rem);
  max-width: 950px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.hero-copy p {
  margin: 1.2rem 0 1.75rem;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.hero-proof span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(20, 143, 139, 0.18);
  border-radius: 999px;
  background: white;
  color: var(--blue);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(18, 60, 105, 0.06);
}

.hero-card {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(18, 60, 105, 0.1), rgba(20, 143, 139, 0.16)),
    #e9f7f6;
  box-shadow: var(--shadow);
  border: 1px solid white;
}

.hero-card p {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--blue);
  font-weight: 900;
}

.sun {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 22px rgba(244, 185, 66, 0.2);
}

.path {
  position: absolute;
  inset: auto -15% -35% 10%;
  height: 58%;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.76);
  transform: rotate(-8deg);
}

.person {
  position: absolute;
  bottom: 120px;
  width: 82px;
  height: 170px;
  border-radius: 36px 36px 18px 18px;
  background: var(--blue);
}

.person::before {
  content: "";
  position: absolute;
  top: -48px;
  left: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #a56a43;
}

.person::after {
  content: "";
  position: absolute;
  top: 40px;
  width: 80px;
  height: 14px;
  border-radius: 999px;
  background: inherit;
}

.support-worker {
  left: 28%;
  background: var(--teal);
}

.support-worker::after {
  right: -58px;
  transform: rotate(18deg);
}

.participant {
  right: 25%;
  height: 145px;
  background: var(--blue);
}

.participant::before {
  background: #6b3f2a;
}

.participant::after {
  left: -52px;
  transform: rotate(-14deg);
}

.trust-bar {
  margin: -1.5rem clamp(1rem, 4vw, 4rem) 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.trust-bar span {
  text-align: center;
  font-weight: 900;
  color: var(--blue);
  padding: 0.7rem;
  background: var(--cream);
  border-radius: 18px;
}

.conversion-strip {
  margin: 1rem clamp(1rem, 4vw, 4rem) 0;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid rgba(20, 143, 139, 0.22);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(20, 143, 139, 0.1), rgba(244, 185, 66, 0.18));
  box-shadow: var(--shadow);
}

.conversion-strip strong,
.conversion-strip span {
  display: block;
}

.conversion-strip strong {
  color: var(--blue);
  font-size: 1.1rem;
}

.conversion-strip span,
.local-cta {
  color: var(--muted);
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 185, 66, 0.22), transparent 34rem),
    linear-gradient(180deg, #f7fcfc, #ffffff);
}

.page-hero h1 {
  max-width: 1040px;
}

.page-hero p {
  margin-top: 1.2rem;
  max-width: 780px;
  color: var(--muted);
  font-size: 1.16rem;
}

.referral-hero {
  display: grid;
  grid-template-columns: 1fr 170px;
  gap: 2rem;
  align-items: center;
}

.referral-hero img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading h2 {
  margin-top: 0.85rem;
}

.section-heading p {
  margin-top: 1rem;
  color: var(--muted);
}

.tinted {
  background: var(--cream);
}

.tint {
  background: var(--cream);
}

.card-grid,
.service-grid,
.steps,
.resource-grid {
  display: grid;
  gap: 1rem;
}

.card-grid.six {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.mini-card,
.service-card,
.service-detail-grid article,
.steps article,
.resource-grid article,
.contact-panel,
.values-panel,
.quick-form,
.policy-card,
.alert-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 1.35rem;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.07);
}

.card p,
.mini-card p,
.service-card p,
.steps p,
.resource-grid p,
.split p,
.ot-feature p,
.areas p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(244, 185, 66, 0.24);
  color: var(--blue);
  font-weight: 900;
}

.service-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.audience-path {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.split,
.ot-feature,
.final-cta,
.ot-explainer,
.ndis-service-map {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.split h2,
.ot-feature h2,
.areas h2,
.final-cta h2,
.ot-explainer h2,
.ndis-service-map h2 {
  margin-top: 0.85rem;
}

.ot-explainer p,
.ndis-service-map p {
  color: var(--muted);
}

.therapy-graphic,
.support-wheel {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 42%, rgba(20, 143, 139, 0.18), transparent 9rem),
    linear-gradient(145deg, #ffffff, #f0fbfa);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.therapy-graphic::before,
.support-wheel::before {
  content: "";
  position: absolute;
  inset: 2.2rem;
  border: 2px dashed rgba(18, 60, 105, 0.18);
  border-radius: 999px;
}

.therapy-node,
.support-wheel span,
.support-wheel strong {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 999px;
  color: var(--blue);
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(18, 60, 105, 0.12);
}

.therapy-node {
  width: 76px;
  height: 76px;
  background: white;
  border: 1px solid var(--line);
}

.therapy-node.main,
.support-wheel strong {
  left: 50%;
  top: 50%;
  width: 112px;
  height: 112px;
  transform: translate(-50%, -50%);
  background: var(--blue);
  color: white;
  font-size: 1.35rem;
}

.therapy-node:nth-child(2) {
  left: 16%;
  top: 18%;
}

.therapy-node:nth-child(3) {
  right: 16%;
  top: 18%;
}

.therapy-node:nth-child(4) {
  left: 18%;
  bottom: 22%;
}

.therapy-node:nth-child(5) {
  right: 18%;
  bottom: 22%;
}

.therapy-graphic p {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.2rem;
  margin: 0;
  text-align: center;
  color: var(--teal-dark);
  font-weight: 900;
}

.support-wheel span {
  min-width: 116px;
  min-height: 58px;
  padding: 0.6rem 0.8rem;
  background: white;
  border: 1px solid var(--line);
}

.support-wheel span:nth-child(1) {
  left: 50%;
  top: 1.8rem;
  transform: translateX(-50%);
}

.support-wheel span:nth-child(2) {
  right: 1.2rem;
  top: 32%;
}

.support-wheel span:nth-child(3) {
  right: 2.5rem;
  bottom: 2.2rem;
}

.support-wheel span:nth-child(4) {
  left: 2.5rem;
  bottom: 2.2rem;
}

.support-wheel span:nth-child(5) {
  left: 1.2rem;
  top: 32%;
}

.values-panel ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.values-panel li,
.feature-list span {
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: var(--cream);
  font-weight: 900;
  color: var(--blue);
}

.way {
  background: linear-gradient(135deg, var(--blue), #176a77);
}

.way h2,
.way .eyebrow {
  color: white;
}

.way .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.process li {
  color: white;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.process strong,
.process span {
  display: block;
}

.process strong {
  font-size: 1.2rem;
}

.process span {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
}

.ot-feature {
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 185, 66, 0.2), transparent 30rem),
    var(--cream);
}

.ot-feature .button {
  margin-top: 1.4rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-weight: 900;
}

.areas {
  background: linear-gradient(135deg, rgba(20, 143, 139, 0.1), rgba(244, 185, 66, 0.2));
}

.areas div {
  max-width: 900px;
}

.resource-grid {
  grid-template-columns: repeat(3, 1fr);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.seo-grid article {
  min-height: 220px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.07);
}

.seo-grid p {
  margin: 0.7rem 0 1rem;
  color: var(--muted);
}

.seo-grid a,
.service-detail-grid a,
.resource-grid a {
  color: var(--teal-dark);
  font-weight: 900;
}

.local-cta {
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 20px;
  background: var(--cream);
}

.social-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin: 0 clamp(1rem, 4vw, 4rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 185, 66, 0.18), transparent 18rem),
    var(--cream);
}

.social-strip h2 {
  margin-top: 0.65rem;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.social-strip p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: white;
  text-decoration: none;
  font-weight: 900;
}

.social-links a:hover {
  color: white;
  background: var(--teal);
}

.social-card {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 22px;
  background: var(--cream);
}

.social-card p,
.small-note {
  color: var(--muted);
}

.social-links.compact {
  margin: 0.8rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.blog-grid article,
.article-page {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.07);
}

.article-page {
  max-width: 920px;
  margin: clamp(2rem, 5vw, 4rem) auto;
}

.article-page h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.article-page h2 {
  margin-top: 2rem;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.article-page .lead {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.16rem;
}

.article-summary,
.article-note,
.article-source {
  margin-top: 1.4rem;
  padding: 1.15rem;
  border-radius: 22px;
  border: 1px solid rgba(20, 143, 139, 0.18);
  background: rgba(20, 143, 139, 0.08);
}

.article-summary p,
.article-note p,
.article-source p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.article-source {
  border-color: rgba(244, 185, 66, 0.42);
  background: #fff8e8;
}

.article-source a {
  color: var(--teal-dark);
  font-weight: 900;
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.faq-list h2 {
  margin-top: 0;
}

.faq-item {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfefe;
}

.faq-item p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.article-cta {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: var(--cream);
}

.article-cta p {
  margin: 0.5rem 0 1rem;
  color: var(--muted);
}

.readiness-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.roadmap-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.readiness-summary article,
.launch-grid article,
.roadmap-board article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.07);
}

.readiness-summary p,
.roadmap-board p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.roadmap-board h2 {
  margin-top: 0.75rem;
}

.status-pill {
  display: inline-flex;
  margin: 0.7rem 0 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.84rem;
}

.status-pill.ready {
  color: #075d42;
  background: #dff7ec;
}

.status-pill.review {
  color: #6d4b00;
  background: #fff1c7;
}

.status-pill.hold {
  color: #7a1d1d;
  background: #ffe1e1;
}

.launch-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0;
  list-style: none;
  counter-reset: launch-step;
}

.launch-steps li {
  counter-increment: launch-step;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.launch-steps li::before {
  content: counter(launch-step);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-weight: 900;
}

.launch-steps span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
}

.ai-help-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  min-height: 52px;
  padding: 0.85rem 1.1rem;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--teal);
  box-shadow: var(--shadow);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.ai-helper {
  position: fixed;
  right: 1rem;
  bottom: 5rem;
  z-index: 41;
  width: min(420px, calc(100vw - 2rem));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.ai-helper-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  color: white;
  background: var(--blue);
}

.ai-helper-head span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.82;
}

.ai-helper-head button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  background: white;
  font-size: 1.25rem;
  cursor: pointer;
}

.ai-helper-body {
  padding: 1rem;
}

.ai-helper-body p,
.ai-answer {
  color: var(--muted);
}

.ai-helper textarea {
  width: 100%;
  margin: 0.4rem 0 0.85rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  font: inherit;
}

.ai-answer {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: var(--cream);
  font-weight: 700;
}

.policy-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.policy-card h2 {
  font-size: 1.35rem;
}

.policy-card p,
.alert-card p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.alert-card {
  margin-bottom: 1.25rem;
  border-color: rgba(220, 38, 38, 0.22);
  background: #fff7f7;
}

.alert-card.danger strong {
  color: #991b1b;
  font-size: 1.2rem;
}

.check-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  font-weight: 700;
}

.check-consent input {
  margin-top: 0.35rem;
}

.referral-form {
  max-width: 1180px;
  margin: 0 auto;
  gap: 1.25rem;
}

.form-section {
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fbfefe;
  overflow: hidden;
}

.form-section + .form-section,
.referral-form .alert-card {
  margin-top: 1.25rem;
}

.section-heading.compact {
  max-width: none;
  margin: 0 0 1.25rem;
  text-align: left;
}

.section-heading.compact h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  align-items: start;
}

.form-grid .span-2 {
  grid-column: 1 / -1;
}

.form-grid label,
.referral-form > label,
.form-section > label {
  width: 100%;
}

.choice-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.choice-panel legend {
  padding: 0 0.4rem;
  color: var(--blue);
  font-weight: 900;
}

.choice-panel label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
  margin: 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(20, 143, 139, 0.12);
  border-radius: 16px;
  background: var(--cream);
  font-weight: 800;
  line-height: 1.25;
}

.choice-panel input {
  flex: 0 0 auto;
}

.risk-table-wrap {
  margin: 1rem 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
}

.risk-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.risk-table th,
.risk-table td {
  padding: 0.7rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.risk-table th {
  color: var(--blue);
  background: rgba(20, 143, 139, 0.1);
}

.risk-table th:nth-child(2),
.risk-table th:nth-child(3),
.risk-table td:nth-child(2),
.risk-table td:nth-child(3) {
  width: 58px;
  text-align: center;
}

.risk-table input,
.risk-table select {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.risk-table input[type="radio"] {
  width: auto;
  min-height: auto;
}

.clean-referral-hero {
  align-items: stretch;
}

.referral-side-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.75rem;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: white;
  box-shadow: 0 18px 48px rgba(18, 60, 105, 0.1);
  text-align: center;
}

.referral-side-card img {
  width: min(160px, 45vw);
  height: auto;
}

.referral-side-card strong {
  color: var(--blue);
  font-size: 1.25rem;
}

.referral-side-card p {
  max-width: 360px;
  color: var(--muted);
}

.referral-intro {
  padding-bottom: 0;
}

.referral-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 1.5rem auto 0;
}

.referral-steps article {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  min-height: 96px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.06);
  font-weight: 900;
  color: var(--blue);
}

.referral-steps strong {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
}

.referral-click-form {
  background: linear-gradient(180deg, #ffffff, #f7fcfc);
  width: min(100%, 980px);
}

.form-card-highlight {
  position: relative;
  background: white;
  box-shadow: 0 14px 36px rgba(18, 60, 105, 0.08);
}

.form-card-highlight::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  border-radius: 30px 0 0 30px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
}

.referral-click-form input,
.referral-click-form select,
.referral-click-form textarea {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font: inherit;
}

.referral-click-form textarea {
  min-height: 140px;
  resize: vertical;
}

.service-choice-panel {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1rem;
}

.compact-choice-panel {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.referral-submit-panel {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(20, 143, 139, 0.25);
  border-radius: 28px;
  background: rgba(20, 143, 139, 0.08);
}

.referral-submit-panel strong {
  color: var(--blue);
  font-size: 1.15rem;
}

.referral-submit-panel p {
  margin-top: 0.4rem;
  color: var(--muted);
}

.referral-click-form *,
.referral-click-form *::before,
.referral-click-form *::after {
  box-sizing: border-box;
}

.referral-click-form label,
.referral-click-form legend,
.referral-click-form p,
.referral-click-form h2,
.referral-click-form strong {
  overflow-wrap: anywhere;
}

.referral-choice-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}

.referral-choice-copy h1 {
  max-width: 820px;
}

.referral-action-card,
.referral-warning-card,
.referral-form-note {
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 18px 48px rgba(18, 60, 105, 0.1);
}

.referral-action-card {
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: 32px;
  text-align: center;
}

.referral-action-card img {
  width: min(150px, 45vw);
  height: auto;
}

.referral-action-card h2,
.referral-warning-card h2 {
  color: var(--blue);
}

.referral-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
}

.referral-choice-grid article {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.07);
}

.referral-choice-grid strong {
  display: block;
  color: var(--blue);
  font-size: 1.1rem;
}

.referral-choice-grid p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.referral-warning-section {
  padding-top: 0;
}

.referral-warning-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: 30px;
}

.referral-form-hero {
  text-align: center;
}

.referral-form-hero h1,
.referral-form-hero p,
.referral-form-hero .hero-actions {
  margin-left: auto;
  margin-right: auto;
}

.referral-form-hero .hero-actions {
  justify-content: center;
}

.referral-form-page {
  background: linear-gradient(180deg, #ffffff, #f7fcfc);
}

.referral-form-shell {
  width: min(100%, 980px);
}

.referral-form-note {
  margin-bottom: 1.25rem;
  padding: 1.2rem 1.35rem;
  border-radius: 24px;
  border-color: rgba(20, 143, 139, 0.22);
}

.referral-form-note strong {
  color: var(--blue);
  font-size: 1.1rem;
}

.referral-form-note p {
  margin-top: 0.4rem;
  color: var(--muted);
}

.form-message:not(:empty) {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: white;
  color: var(--blue);
  font-weight: 900;
}

.platform-preview {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.platform-preview p {
  margin: 1rem 0 1.4rem;
  color: var(--muted);
}

.platform-map,
.role-grid,
.platform-flow,
.launch-grid,
.metrics {
  display: grid;
  gap: 1rem;
}

.platform-map {
  grid-template-columns: repeat(2, 1fr);
}

.platform-map span,
.role-grid a,
.platform-flow article,
.launch-grid article,
.metrics article {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  color: var(--blue);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.07);
}

.launch-grid {
  grid-template-columns: repeat(4, 1fr);
}

.launch-grid article strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: var(--teal);
  color: white;
}

.launch-grid article p,
.portal-card p,
.status-note {
  color: var(--muted);
}

.portal-card {
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.portal-card p {
  margin: 0.6rem 0 1rem;
}

.status-note {
  max-width: 900px;
  margin: 1.4rem auto 0;
  text-align: center;
  font-weight: 700;
}

.portal-login {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--cream);
}

.portal-login h2 {
  margin-top: 0.8rem;
}

.portal-login p {
  margin-top: 1rem;
  color: var(--muted);
}

.role-grid {
  grid-template-columns: repeat(2, 1fr);
}

.role-grid a {
  min-height: 112px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}

.role-grid a:hover {
  color: white;
  background: var(--teal);
}

.platform-flow {
  grid-template-columns: repeat(6, 1fr);
}

.platform-flow article strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--blue);
}

.portal-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--cream);
}

.portal-sidebar {
  padding: 1.25rem;
  background: var(--blue-dark);
  color: white;
}

.portal-sidebar .brand strong,
.portal-sidebar .brand small {
  color: white;
}

.portal-sidebar nav {
  display: grid;
  gap: 0.6rem;
  margin-top: 2rem;
}

.portal-sidebar nav a {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  color: white;
  text-decoration: none;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
}

.portal-sidebar nav a:hover,
.portal-sidebar nav a[aria-current="page"] {
  background: var(--teal);
}

.portal-main {
  padding: clamp(1rem, 4vw, 3rem);
}

.portal-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.portal-top h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.portal-top p {
  margin-top: 0.8rem;
  color: var(--muted);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dash-card {
  min-height: 190px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.07);
}

.dash-card.large {
  grid-column: span 2;
}

.dash-card p {
  margin: 0.8rem 0 1rem;
  color: var(--muted);
}

.meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.metrics {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 1rem;
}

.metrics strong {
  display: block;
  font-size: 2rem;
}

.metrics span {
  color: var(--muted);
}

.profile-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.profile-banner article,
.team-strip article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.06);
}

.profile-banner strong,
.profile-banner span,
.team-strip strong,
.team-strip span {
  display: block;
}

.profile-banner strong,
.team-strip strong {
  color: var(--blue);
}

.profile-banner span,
.team-strip span,
.team-strip p {
  margin-top: 0.35rem;
  color: var(--muted);
}

.record-grid,
.team-strip {
  display: grid;
  gap: 1rem;
}

.record-grid {
  grid-template-columns: repeat(3, 1fr);
}

.team-strip {
  grid-template-columns: repeat(4, 1fr);
}

.roster-week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.roster-week article {
  min-height: 180px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.06);
}

.roster-week p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.management-section {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
}

.management-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.management-heading h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.ops-board,
.compliance-grid,
.pricing-layout {
  display: grid;
  gap: 1rem;
}

.ops-board {
  grid-template-columns: repeat(3, 1fr);
}

.ops-board article,
.table-card,
.compliance-grid article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.06);
}

.ops-board p,
.compliance-grid p,
.note {
  margin-top: 0.7rem;
  color: var(--muted);
}

.status {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.75rem;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: rgba(18, 60, 105, 0.1);
  color: var(--blue);
  font-weight: 900;
  font-size: 0.84rem;
}

.status.success {
  background: rgba(20, 143, 139, 0.12);
  color: var(--teal-dark);
}

.status.warning {
  background: rgba(244, 185, 66, 0.25);
  color: #725000;
}

.table-card {
  overflow-x: auto;
}

.source-schedules table {
  min-width: 760px;
}

.google-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.seo-copy-panel {
  margin-top: 1.25rem;
  padding: 1.35rem;
  border: 1px solid rgba(20, 143, 139, 0.18);
  border-radius: 26px;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.07);
}

.seo-copy-panel p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.google-area-list {
  margin-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--blue);
  font-size: 0.86rem;
}

.pricing-layout {
  grid-template-columns: 1fr 0.7fr;
}

.mini-steps {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.mini-steps li {
  margin-bottom: 0.55rem;
  color: var(--muted);
}

.compliance-grid {
  grid-template-columns: repeat(3, 1fr);
}

.compliance-grid strong {
  display: block;
  color: var(--blue);
  font-size: 1.05rem;
}

.form-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.form-panel label:has(textarea) {
  grid-column: 1 / -1;
}

.incident-form {
  align-items: start;
}

.incident-form label {
  margin-bottom: 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-launch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.review-card {
  padding: 1.4rem;
  border-radius: 28px;
  border: 1px dashed rgba(20, 143, 139, 0.45);
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 185, 66, 0.18), transparent 8rem),
    white;
  box-shadow: var(--shadow);
}

.review-card strong {
  display: block;
  color: var(--blue);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.review-card p {
  color: var(--muted);
}

.workshop-timeline,
.role-workshop-grid,
.practice-grid {
  display: grid;
  gap: 1rem;
}

.workshop-timeline {
  grid-template-columns: repeat(4, 1fr);
}

.role-workshop-grid,
.practice-grid {
  grid-template-columns: repeat(2, 1fr);
}

.workshop-timeline article,
.role-workshop-grid article,
.practice-grid article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.07);
}

.workshop-timeline strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--teal);
  color: white;
}

.role-workshop-grid article:nth-child(odd) {
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 185, 66, 0.13), transparent 8rem),
    white;
}

.role-workshop-grid p,
.practice-grid p {
  color: var(--muted);
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1rem;
}

.bar-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.bar-list span {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--blue);
  font-weight: 900;
}

.bar-list span::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--value);
  background: rgba(20, 143, 139, 0.18);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-detail-grid h2 {
  font-size: 1.45rem;
}

.visual-card {
  position: relative;
  overflow: hidden;
}

.visual-card::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: rgba(20, 143, 139, 0.08);
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(244, 185, 66, 0.26);
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.service-detail-grid p,
.contact-panel p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.service-detail-grid a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.check-list {
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: var(--cream);
  color: var(--blue);
  font-weight: 800;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-cards article {
  position: relative;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.07);
}

.process-cards strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 1.1rem;
}

.process-cards p {
  color: var(--muted);
  margin-top: 0.55rem;
}

.area-region {
  margin-top: 2rem;
}

.area-region h2 {
  margin-bottom: 1rem;
}

.area-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.area-link-grid.compact {
  align-self: stretch;
}

.area-support-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.area-support-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(18, 60, 105, 0.08);
  background: linear-gradient(135deg, rgba(20, 143, 139, 0.12), rgba(244, 185, 66, 0.1));
}

.area-support-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.area-support-visual figcaption {
  padding: 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.86);
}

.area-info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.area-info-cards article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.07);
}

.area-info-cards strong {
  display: block;
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.area-info-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.area-alert-panel {
  border-left: 5px solid var(--gold);
  background: #fffaf0;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  margin-top: 1.25rem;
}

.area-alert-panel strong {
  color: var(--blue);
}

.area-link-grid a {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  color: var(--blue);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.07);
}

.area-link-grid span {
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.area-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.area-prose {
  max-width: 920px;
}

.area-prose h2 {
  margin-top: 2rem;
}

.sticky-panel {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 0.75rem;
}

.lead-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.lead-choice-grid article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 185, 66, 0.14), transparent 8rem),
    white;
  box-shadow: 0 10px 28px rgba(18, 60, 105, 0.07);
}

.lead-choice-grid p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.lead-choice-grid a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.lead-fit {
  background:
    radial-gradient(circle at 0% 0%, rgba(20, 143, 139, 0.11), transparent 22rem),
    linear-gradient(180deg, #ffffff, #f8fcfc);
}

.referral-confidence {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  background:
    radial-gradient(circle at 8% 0%, rgba(20, 143, 139, 0.13), transparent 22rem),
    radial-gradient(circle at 100% 20%, rgba(244, 185, 66, 0.18), transparent 24rem),
    #f8fcfc;
  border-top: 1px solid rgba(20, 143, 139, 0.12);
  border-bottom: 1px solid rgba(20, 143, 139, 0.12);
}

.launch-checklist-grid article {
  align-content: start;
}

.referral-confidence h2 {
  max-width: 720px;
}

.referral-confidence p {
  color: var(--muted);
  max-width: 720px;
}

.referral-checklist {
  display: grid;
  gap: 0.9rem;
}

.referral-checklist article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.9rem;
  padding: 1.15rem;
  border: 1px solid rgba(20, 143, 139, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 32px rgba(18, 60, 105, 0.08);
}

.referral-checklist strong {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: var(--teal);
  color: white;
}

.referral-checklist h3,
.referral-checklist p {
  margin: 0;
}

.local-lead-strip {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.3rem;
  padding: 1.15rem 1.25rem;
  border-radius: 24px;
  background: var(--blue);
  color: white;
}

.local-lead-strip span {
  color: rgba(255, 255, 255, 0.82);
}

.local-lead-strip a {
  color: white;
  font-weight: 900;
}

.resource-grid a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.testimonial-note {
  padding-top: 0;
}

.testimonial-note p {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  background: #fff8e8;
}

.final-cta {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 4vw, 4rem);
  background: var(--blue);
  color: white;
}

.final-cta h2,
.final-cta .eyebrow {
  color: white;
}

.final-cta p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.quick-form {
  color: var(--charcoal);
}

label {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
  font-weight: 900;
  color: var(--blue);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--charcoal);
  background: var(--white);
}

textarea {
  resize: vertical;
}

.form-message {
  margin-top: 0.8rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.7fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 2.4rem clamp(1rem, 4vw, 4rem);
  background: #071c30;
  color: white;
}

.footer p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0.35rem 0 0;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand-block {
  max-width: 420px;
}

.footer-brand-block strong {
  display: block;
  color: white;
  font-size: 1.18rem;
  margin-bottom: 0.4rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 1.15rem;
}

.footer-columns h3 {
  color: white;
  font-size: 0.92rem;
  margin: 0 0 0.65rem;
}

.footer-columns a {
  display: block;
  font-weight: 800;
  margin: 0.42rem 0;
}

.footer-social a {
  color: white;
  font-weight: 900;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .nav {
    display: flex;
    flex-wrap: wrap;
  }

  .menu {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero,
  .split,
  .ot-feature,
  .final-cta,
  .ot-explainer,
  .ndis-service-map {
    grid-template-columns: 1fr;
  }

  .trust-bar,
  .card-grid.six,
  .google-pack-grid,
  .service-grid,
  .service-detail-grid,
  .platform-preview,
  .portal-login,
  .referral-hero,
  .steps,
  .resource-grid,
  .seo-grid,
  .blog-grid,
  .readiness-summary,
  .roadmap-board,
  .launch-steps,
  .policy-layout,
  .launch-grid,
  .process-cards,
  .lead-choice-grid,
  .referral-steps,
  .referral-confidence,
  .area-link-grid,
  .area-detail-layout,
  .area-support-spotlight,
  .review-launch,
  .workshop-timeline,
  .role-workshop-grid,
  .practice-grid,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) {
  .nav .phone {
    display: none;
  }
}

@media (max-width: 760px) {
  .notice,
  .footer {
    align-items: flex-start;
  }

  .notice {
    flex-direction: column;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .menu-button {
    display: inline-flex;
    border: 1px solid var(--line);
    background: white;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    font-weight: 900;
  }

  .menu {
    display: none;
    align-items: flex-start;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1rem;
  }

  .menu.open {
    display: grid;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .phone {
    display: none;
  }

  .hero-card {
    min-height: 360px;
  }

  .trust-bar,
  .card-grid.six,
  .google-pack-grid,
  .service-grid,
  .service-detail-grid,
  .steps,
  .resource-grid,
  .process-cards,
  .lead-choice-grid,
  .referral-steps,
  .area-link-grid,
  .area-detail-layout,
  .area-support-spotlight,
  .area-info-cards,
  .review-launch,
  .review-grid,
  .workshop-timeline,
  .role-workshop-grid,
  .practice-grid,
  .process,
  .seo-grid,
  .blog-grid,
  .readiness-summary,
  .roadmap-board,
  .launch-steps,
  .platform-map,
  .role-grid,
  .platform-flow,
  .launch-grid,
  .policy-layout,
  .metrics,
  .dashboard-grid,
  .profile-banner,
  .record-grid,
  .team-strip,
  .roster-week,
  .ops-board,
  .pricing-layout,
  .compliance-grid,
  .form-panel,
  .review-grid,
  .analytics-grid,
  .feature-list,
  .form-grid,
  .referral-choice-hero,
  .referral-choice-grid,
  .referral-warning-card,
  .values-panel ul {
    grid-template-columns: 1fr;
  }

  .therapy-graphic,
  .support-wheel {
    min-height: 320px;
  }

  .support-wheel span {
    min-width: 96px;
    font-size: 0.88rem;
  }

  .form-grid .span-2 {
    grid-column: auto;
  }

  body {
    overflow-x: hidden;
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .page-hero.referral-hero,
  .clean-referral-hero {
    gap: 1rem;
    padding: 1.25rem 1rem;
    border-radius: 0;
  }

  .clean-referral-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    line-height: 0.98;
  }

  .clean-referral-hero p {
    font-size: 1.03rem;
    line-height: 1.55;
  }

  .clean-referral-hero .hero-actions {
    display: grid;
    gap: 0.75rem;
  }

  .clean-referral-hero .button,
  .referral-choice-hero .button,
  .referral-warning-card .button,
  .referral-submit-panel .button {
    width: 100%;
    justify-content: center;
  }

  .referral-choice-hero {
    padding: 1.5rem 1rem;
  }

  .referral-choice-copy h1,
  .referral-form-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
    line-height: 1.02;
  }

  .referral-action-card,
  .referral-warning-card,
  .referral-form-note {
    border-radius: 22px;
  }

  .referral-action-card {
    justify-items: stretch;
    text-align: left;
  }

  .referral-action-card img {
    justify-self: center;
    width: 100px;
  }

  .referral-warning-card {
    gap: 1rem;
  }

  .referral-side-card {
    padding: 1rem;
    border-radius: 22px;
  }

  .referral-side-card img {
    width: 96px;
  }

  .referral-intro .section-heading {
    text-align: left;
  }

  .referral-steps {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .referral-steps article {
    min-height: auto;
    padding: 0.9rem;
    border-radius: 18px;
    font-size: 0.98rem;
  }

  .referral-steps strong {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .quick-form.referral-click-form {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .form-section {
    padding: 1.1rem;
    border-radius: 20px;
    overflow: visible;
  }

  .form-card-highlight::before {
    width: 5px;
    border-radius: 20px 0 0 20px;
  }

  .section-heading.compact {
    margin-bottom: 1rem;
  }

  .section-heading.compact h2 {
    font-size: 1.55rem;
    line-height: 1.12;
  }

  .section-heading.compact p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .form-grid {
    gap: 0.85rem;
  }

  .form-grid label,
  .referral-click-form label {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
    font-size: 0.98rem;
    line-height: 1.3;
  }

  .referral-click-form input,
  .referral-click-form select,
  .referral-click-form textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0.78rem 0.85rem;
    border-radius: 14px;
    font-size: 1rem;
  }

  .referral-click-form textarea {
    min-height: 120px;
  }

  .choice-panel,
  .service-choice-panel,
  .compact-choice-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 0.8rem;
    border-radius: 18px;
  }

  .choice-panel label {
    align-items: flex-start;
    min-height: auto;
    padding: 0.75rem;
    border-radius: 14px;
    font-size: 0.96rem;
    line-height: 1.3;
  }

  .choice-panel input {
    margin-top: 0.15rem;
  }

  .referral-submit-panel {
    padding: 1rem;
    border-radius: 20px;
  }

  .check-consent {
    align-items: flex-start;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .ai-help-button {
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: calc(100vw - 1.5rem);
    min-height: 46px;
    padding: 0.75rem 0.95rem;
    font-size: 0.95rem;
  }

  .management-heading {
    flex-direction: column;
  }

  .portal-shell {
    grid-template-columns: 1fr;
  }

  .portal-top {
    flex-direction: column;
  }

  .dash-card.large {
    grid-column: auto;
  }

  .person {
    bottom: 90px;
    transform: scale(0.82);
  }

  .support-worker {
    left: 18%;
  }

  .participant {
    right: 16%;
  }
}
