/** Site Custom Stylesheet (From File) **/ 



 /** Site Custom Styles (From DB) **/ 

/* ---------- Design tokens ---------- */ :root  {
  /* Brand teal — primary colour, full tonal range (used widely). */ --color-teal: #3287ae;
  --color-teal-light: #5aa3c4;
  --color-teal-lighter: #9bccdf;
  --color-teal-lightest: #e9f3f8;
  --color-teal-dark: #266b8c;
  --color-teal-darker: #184c66;
  /* Warm neutral — alternating section backgrounds. */ --color-sand: #f5f1ea;
  --color-sand-warm: #efe7d9;
  /* Ink + slate — text colours. */ --color-ink: #1c2a31;
  --color-slate: #3c4d57;
  /* Availability accent — green. */ --color-green: #3f9b6d;
  --color-green-soft: #e7f3ec;
  /* Action accent — warm orange. */ --color-orange: #F5AE3C;
  --color-orange-dark: #db9320;
  /* Semantic anchors. */ --color-brand: var(--color-teal);
  --color-text: var(--color-ink);
  --color-bg: #ffffff;
  /* Re-theme core components to brand. */ --core-accent: var(--color-teal);
  --core-accent-contrast: #ffffff;
  --core-radius: 12px;
  --core-border: #d8e2e8;
}
/* ---------- Background utilities ---------- */ .bg-white  {
  background-color: #ffffff;
}
.bg-teal  {
  background-color: var(--color-teal);
}
.bg-teal-dark  {
  background-color: var(--color-teal-dark);
}
.bg-teal-darker  {
  background-color: var(--color-teal-darker);
}
.bg-teal-lightest  {
  background-color: var(--color-teal-lightest);
}
.bg-sand  {
  background-color: var(--color-sand);
}
.bg-sand-warm  {
  background-color: var(--color-sand-warm);
}
.bg-ink  {
  background-color: var(--color-ink);
}
/* ---------- Base typography & elements ---------- */ html  {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body  {
  font-family: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  font-size: var(--text-size-lg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4  {
  font-family: "Inter", "Hanken Grotesk", sans-serif;
  color: var(--color-ink);
  line-height: 1.08;
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1  {
  font-size: var(--text-size-12xl);
}
h2  {
  font-size: var(--text-size-8xl);
}
h3  {
  font-size: var(--text-size-3xl);
}
h4  {
  font-size: var(--text-size-xl);
}
p  {
  margin: 0 0 1rem;
  text-wrap: pretty;
}
p:last-child  {
  margin-bottom: 0;
}
a  {
  color: var(--color-teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
img  {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol  {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}
.eyebrow  {
  font-size: var(--text-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal-dark);
  margin: 0 0 1rem;
}
.section-intro  {
  font-size: var(--text-size-xl);
  color: var(--color-slate);
  max-width: 60ch;
}
.lede  {
  font-size: var(--text-size-2xl);
  color: var(--color-slate);
  line-height: 1.5;
}
/* ---------- Buttons ---------- */ .btn  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  min-height: 52px;
  border-radius: 999px;
  font-family: inherit;
  font-size: var(--text-size-reg);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover  {
  transform: translateY(-2px);
}
.btn:active  {
  transform: translateY(0);
}
.btn-primary  {
  background-color: var(--color-orange);
  color: var(--color-ink);
  box-shadow: 0 10px 24px -10px rgba(150, 100, 24, 0.45);
}
.btn-primary:hover  {
  background-color: var(--color-orange-dark);
  color: var(--color-ink);
}
.btn-secondary  {
  background-color: transparent;
  color: var(--color-teal-dark);
  border-color: var(--color-teal);
}
.btn-secondary:hover  {
  background-color: var(--color-teal-lightest);
}
.btn-on-dark  {
  background-color: #fff;
  color: var(--color-teal-dark);
}
.btn-on-dark:hover  {
  background-color: var(--color-teal-lightest);
  color: var(--color-teal-darker);
}
.btn-ghost-on-dark  {
  background-color: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost-on-dark:hover  {
  background-color: rgba(255,255,255,0.14);
  border-color: #fff;
}
.btn-lg  {
  font-size: var(--text-size-lg);
  padding: 1.1rem 2rem;
  min-height: 58px;
}
/* ---------- Reviews section custom slider (not using core-content-slider) ---------- */ .review-card  {
  flex: 0 0 calc((100% - 1.5rem) / 2);
  background: #fff;
  border: 1px solid #e6ebee;
  border-radius: 18px;
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card.is-placeholder  {
  border-style: dashed;
  border-color: #c2cdd4;
  background: #fcfbf8;
}
.review-dots  {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
}
.review-dots .rev-dot  {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #cdd6db;
  cursor: pointer;
  transition: background-color 0.15s ease, width 0.15s ease;
}
.review-dots .rev-dot.is-active  {
  background: var(--color-teal);
  width: 24px;
  border-radius: 999px;
}
.review-stars  {
  display: flex;
  gap: 3px;
  color: #e0a23b;
}
.review-stars svg  {
  width: 20px;
  height: 20px;
}
.review-quote  {
  font-size: var(--text-size-lg);
  color: var(--color-ink);
  margin: 0;
  line-height: 1.5;
  flex: 1 1 auto;
}
.review-author  {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
}
.review-avatar  {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-teal-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal-dark);
  font-weight: 700;
}
.review-name  {
  font-weight: 700;
  color: var(--color-ink);
  font-size: var(--text-size-reg);
}
.review-role  {
  font-size: var(--text-size-xs);
  color: var(--color-slate);
}
.reviews-note  {
  text-align: center;
  margin-top: 1.6rem;
  font-size: var(--text-size-sm);
  color: var(--color-slate);
}
/* ---------- Responsive ---------- */ @media (max-width: 1279px)  {
  h1  {
    font-size: var(--text-size-10xl);
  }
}
@media (max-width: 767px)  {
  h2  {
    font-size: var(--text-size-6xl);
  }
}


 /** Content Section Styles **/ 

.content-section-2362  {
  &.content-section  {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid #eceef0;
    transition: box-shadow 0.2s ease;
  }
  &.content-section.is-scrolled  {
    box-shadow: 0 8px 30px -18px rgba(24,76,102,0.5);
  }
  .content-section-inner  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-left: 5%;
    padding-right: 5%;
    max-width: none;
  }
  .logo  {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }
  .logo img  {
    height: 94px;
    width: auto;
  }
  .header-actions  {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-shrink: 0;
  }
  .header-phone  {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-teal-darker);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    font-size: var(--text-size-reg);
    white-space: nowrap;
  }
  .header-phone:hover  {
    color: var(--color-teal);
  }
  .header-phone svg  {
    width: 18px;
    height: 18px;
  }
  @media (max-width: 1023px)  {
    .core-menu-body  {
      display: none;
    }
    .core-menu.active .core-menu-body  {
      display: flex;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      background: #fff;
      padding: 1rem 5%;
      gap: 0.2rem;
      border-bottom: 1px solid #eceef0;
      box-shadow: 0 20px 40px -24px rgba(24,76,102,0.4);
    }
    .header-phone  {
      display: none;
    }
  }
}
.content-section-2363  {
  .content-section-inner  {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2.5rem 3rem;
  }
  .footer-brand .footer-logo  {
    height: 90px;
    width: auto;
    margin-bottom: 1rem;
  }
  .footer-brand p  {
    font-size: var(--text-size-reg);
    color: var(--color-slate);
    max-width: 36ch;
    margin-bottom: 1.2rem;
  }
  .footer-brand .ndis-badge  {
    height: 44px;
    width: auto;
    border-radius: 10px;
  }
  h4  {
    font-size: var(--text-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-ink);
    margin-bottom: 1rem;
  }
  ul  {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  a  {
    color: var(--color-slate);
    text-decoration: none;
  }
  a:hover  {
    color: var(--color-teal-dark);
  }
  .footer-contact .addr  {
    font-style: normal;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .footer-contact .addr strong  {
    color: var(--color-ink);
  }
  .footer-bottom  {
    grid-column: 1 / -1;
    border-top: 1px solid #d9cfc0;
    margin-top: 1rem;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1.5rem;
    font-size: var(--text-size-xs);
  }
  .footer-legal  {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.5rem;
  }
  .footer-credit  {
    margin-left: auto;
    color: var(--color-teal-dark);
    font-weight: inherit;
    font-size: inherit;
    text-decoration: none;
  }
  .footer-credit:hover  {
    color: var(--color-teal);
    text-decoration: underline;
  }
  @media (max-width: 767px)  {
    .content-section-inner  {
      grid-template-columns: 1fr 1fr;
    }
    .footer-brand  {
      grid-column: 1 / -1;
    }
  }
  @media (max-width: 639px)  {
    .content-section-inner  {
      grid-template-columns: 1fr;
    }
    .footer-bottom  {
      flex-direction: column;
    }
  }
}
.content-section-2364  {
  .content-section-inner  {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
  }
  .hero-pill  {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--color-teal-lightest);
    color: var(--color-teal-darker);
    font-weight: var(--font-weight-bold);
    font-size: var(--text-size-xs);
    letter-spacing: 0.04em;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.4rem;
  }
  .hero-pill .dot  {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-green);
  }
  h1  {
    font-size: calc(var(--text-size-10xl) * 0.77);
    margin-bottom: 1.1rem;
  }
  h1 .accent  {
    color: var(--color-teal);
  }
  .lede  {
    margin-bottom: 2rem;
    max-width: 36ch;
  }
  .hero-cta  {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.8rem;
  }
  .hero-reassure  {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-slate);
    font-size: var(--text-size-sm);
    margin: 0;
  }
  .hero-reassure svg  {
    width: 20px;
    height: 20px;
    color: var(--color-green);
    flex-shrink: 0;
  }
  .hero-media  {
    position: relative;
  }
  .hero-media img  {
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
    box-shadow: 0 40px 70px -40px rgba(24,76,102,0.6);
  }
  .hero-badge  {
    position: absolute;
    left: -18px;
    bottom: 26px;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.3rem;
    box-shadow: 0 20px 40px -20px rgba(24,76,102,0.55);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 300px;
  }
  .hero-badge img  {
    height: 46px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
  }
  .hero-badge .hero-badge-divider  {
    width: 1px;
    align-self: stretch;
    background: #e6ebee;
    flex-shrink: 0;
  }
  .hero-badge .hero-badge-num  {
    font-family: "Inter", sans-serif;
    font-size: var(--text-size-5xl);
    font-weight: 700;
    color: var(--color-teal);
    line-height: 1;
  }
  .hero-badge .hero-badge-label  {
    font-size: var(--text-size-xs);
    color: var(--color-slate);
    line-height: 1.3;
  }
  @media (max-width: 1279px)  {
    h1  {
      font-size: calc(var(--text-size-10xl) * 0.77);
    }
  }
  @media (max-width: 1023px)  {
    .content-section-inner  {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .hero-media  {
      order: -1;
      max-width: 560px;
    }
    h1  {
      font-size: calc(var(--text-size-10xl) * 0.77);
    }
  }
  @media (max-width: 767px)  {
    h1  {
      font-size: calc(var(--text-size-8xl) * 0.77);
    }
  }
  @media (max-width: 639px)  {
    .hero-cta .btn  {
      width: 100%;
    }
    .hero-badge  {
      left: 0;
    }
  }
}
.content-section-2365  {
  .content-section-inner  {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .stat  {
    text-align: center;
    padding: 0 1rem;
    border-left: 1px solid rgba(255,255,255,0.22);
  }
  .stat:first-child  {
    border-left: none;
  }
  .stat-num  {
    font-family: "Inter", sans-serif;
    font-size: var(--text-size-9xl);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.35rem;
  }
  .stat-label  {
    color: rgba(255,255,255,0.85);
    font-size: var(--text-size-sm);
    line-height: 1.35;
  }
  @media (max-width: 767px)  {
    .content-section-inner  {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem 1rem;
    }
    .stat  {
      border-left: none;
    }
  }
}
.content-section-2366  {
  .section-head  {
    max-width: 70rem;
    margin-bottom: 2.8rem;
  }
  .service-grid  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .service-card  {
    background: #fff;
    border: 1px solid #e6ebee;
    border-radius: 18px;
    padding: 2rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  }
  .service-card:hover  {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px -28px rgba(24,76,102,0.45);
    border-color: var(--color-teal-lighter);
  }
  .service-card.is-featured  {
    border-color: var(--color-teal);
    background: var(--color-teal-lightest);
  }
  .service-card--compact  {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    padding: 1.4rem 1.6rem;
  }
  .service-card--compact .service-icon  {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
  .service-card--compact .service-icon svg  {
    width: 26px;
    height: 26px;
  }
  .service-card--compact h3  {
    margin: 0;
    font-size: var(--text-size-xl);
  }
  .service-icon  {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--color-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
  }
  .service-icon svg  {
    width: 30px;
    height: 30px;
  }
  .service-card h3  {
    margin-bottom: 0.5rem;
  }
  .service-card p  {
    color: var(--color-slate);
    font-size: var(--text-size-reg);
    margin: 0;
  }
  .services-subhead  {
    grid-column: 1 / -1;
    margin-top: 0.6rem;
    margin-bottom: -0.4rem;
  }
  .services-subhead h3  {
    font-size: var(--text-size-4xl);
    margin-bottom: 0.3rem;
  }
  .services-subhead p  {
    color: var(--color-slate);
    font-size: var(--text-size-lg);
    margin: 0;
    max-width: 60ch;
  }
  .service-hero  {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 2.2rem;
    padding: 2.6rem 2.8rem;
  }
  .service-hero .service-icon-lg  {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    margin-bottom: 1.3rem;
    flex-shrink: 0;
  }
  .service-hero .service-icon-lg svg  {
    width: 46px;
    height: 46px;
  }
  .service-hero h3  {
    font-size: var(--text-size-7xl);
    margin-bottom: 0.5rem;
  }
  .service-hero p  {
    font-size: var(--text-size-xl);
    color: var(--color-slate);
    margin: 0;
    max-width: 44ch;
  }
  .service-hero .service-hero-body  {
    flex: 1 1 0;
    min-width: 0;
  }
  .service-hero .service-hero-photo  {
    flex: 0 0 50%;
    margin: 0;
    align-self: stretch;
  }
  .service-hero .service-hero-photo img  {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    border-radius: 16px;
  }
  .service-hero .service-hero-eyebrow  {
    display: block;
    font-size: var(--text-size-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-teal-dark);
    margin-bottom: 0.5rem;
  }
  .assessments  {
    margin-top: 2.2rem;
    background: var(--color-sand);
    border-radius: 18px;
    padding: 2rem 2.2rem;
  }
  .assessments h3  {
    font-size: var(--text-size-2xl);
    margin-bottom: 1.2rem;
  }
  .assessments ul  {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 2rem;
  }
  .assessments li  {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: var(--text-size-reg);
    color: var(--color-ink);
  }
  .assessments li svg  {
    width: 20px;
    height: 20px;
    color: var(--color-teal);
    flex-shrink: 0;
    margin-top: 3px;
  }
  @media (max-width: 767px)  {
    .service-hero  {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.3rem;
      padding: 2rem;
    }
    .service-hero h3  {
      font-size: var(--text-size-6xl);
    }
    .service-grid, .assessments ul  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2367  {
  .section-head  {
    max-width: 70rem;
    margin-bottom: 2.8rem;
  }
  .reason-grid  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .reason-card  {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 18px 40px -32px rgba(24,76,102,0.5);
  }
  .reason-stat  {
    font-family: "Inter", sans-serif;
    font-size: var(--text-size-10xl);
    font-weight: 700;
    color: var(--color-teal);
    line-height: 1;
    margin-bottom: 0.7rem;
  }
  .reason-card h3  {
    font-size: var(--text-size-2xl);
    margin-bottom: 0.5rem;
  }
  .reason-card p  {
    color: var(--color-slate);
    font-size: var(--text-size-reg);
    margin: 0;
  }
  .differentiators  {
    margin-top: 2.2rem;
    background: var(--color-teal-darker);
    border-radius: 22px;
    padding: 2.6rem;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.6rem;
    align-items: center;
  }
  .differentiators h3  {
    color: #fff;
    font-size: var(--text-size-5xl);
    margin-bottom: 1.6rem;
    max-width: 24ch;
  }
  .differentiators ul  {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 2.4rem;
  }
  .differentiators li  {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: rgba(255,255,255,0.92);
    font-size: var(--text-size-reg);
    line-height: 1.45;
  }
  .differentiators li svg  {
    width: 22px;
    height: 22px;
    color: var(--color-teal-lighter);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .differentiators-photo  {
    margin: 0;
  }
  .differentiators-photo img  {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 7 / 5;
    object-fit: cover;
    display: block;
  }
  .differentiators-photo figcaption  {
    color: rgba(255,255,255,0.7);
    font-size: var(--text-size-xs);
    margin-top: 0.7rem;
    text-align: center;
  }
  @media (max-width: 1023px)  {
    .reason-grid  {
      grid-template-columns: repeat(2, 1fr);
    }
    .differentiators  {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .differentiators-photo  {
      order: -1;
      max-width: 520px;
    }
  }
  @media (max-width: 767px)  {
    .reason-grid  {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 639px)  {
    .differentiators  {
      padding-left: 1.4rem;
      padding-right: 1.4rem;
    }
  }
}
.content-section-2368  {
  .section-head  {
    max-width: 70rem;
    margin-bottom: 2.8rem;
  }
  .step-grid  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .step-card  {
    background: var(--color-teal-lightest);
    border: 1px solid #e1ebf0;
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 18px 40px -32px rgba(24,76,102,0.5);
  }
  .step-num  {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--color-teal);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: var(--text-size-3xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
  }
  .step-card h3  {
    font-size: var(--text-size-2xl);
    margin-bottom: 0.5rem;
  }
  .step-card p  {
    color: var(--color-slate);
    font-size: var(--text-size-reg);
    margin: 0;
  }
  .process-paths  {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .path-card  {
    border-radius: 18px;
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .path-card.ready  {
    background: var(--color-teal);
    color: #fff;
  }
  .path-card.ready h4, .path-card.ready p  {
    color: #fff;
  }
  .path-card.help  {
    background: #fff;
    border: 1px solid var(--color-teal-lighter);
  }
  .path-card h4  {
    font-size: var(--text-size-2xl);
    margin: 0;
  }
  .path-card p  {
    font-size: var(--text-size-reg);
    margin: 0 0 0.6rem;
    color: var(--color-slate);
  }
  .path-card .btn  {
    margin-top: 0.4rem;
  }
  .process-note  {
    margin-top: 1.4rem;
    font-size: var(--text-size-sm);
    color: var(--color-slate);
    text-align: center;
  }
  @media (max-width: 1023px)  {
    .step-grid  {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 767px)  {
    .step-grid, .process-paths  {
      grid-template-columns: 1fr;
    }
  }
}
.content-section-2369  {
  .section-head  {
    max-width: 70rem;
    margin-bottom: 2.6rem;
  }
  .section-head h2, .section-head .section-intro, .eyebrow  {
    color: #fff;
  }
  .section-head .section-intro  {
    color: rgba(255,255,255,0.82);
  }
  .eyebrow  {
    color: var(--color-teal-lighter);
  }
  .trust-grid  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .trust-card  {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
    padding: 1.8rem;
  }
  .trust-card .trust-icon  {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
  }
  .trust-card .trust-icon svg  {
    width: 26px;
    height: 26px;
    color: var(--color-teal-lighter);
  }
  .trust-card h3  {
    color: #fff;
    font-size: var(--text-size-xl);
    margin-bottom: 0.5rem;
  }
  .trust-card p  {
    color: rgba(255,255,255,0.78);
    font-size: var(--text-size-reg);
    margin: 0;
  }
  .trust-card .ndis-num  {
    color: var(--color-teal-lighter);
    font-weight: 700;
  }
  .funding-band  {
    margin-top: 1.5rem;
    background: #fff;
    border-radius: 18px;
    padding: 2rem 2.2rem;
  }
  .funding-band h3  {
    font-size: var(--text-size-2xl);
    margin-bottom: 0.4rem;
  }
  .funding-band p  {
    color: var(--color-slate);
    font-size: var(--text-size-reg);
    margin-bottom: 1.4rem;
  }
  .funding-chips  {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
  }
  .funding-chip  {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-teal-lightest);
    color: var(--color-teal-darker);
    font-weight: 700;
    font-size: var(--text-size-reg);
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
  }
  @media (max-width: 1023px)  {
    .trust-grid  {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 767px)  {
    .trust-grid  {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 639px)  {
    .funding-band  {
      padding-left: 1.4rem;
      padding-right: 1.4rem;
    }
  }
}
.content-section-2370  {
  .section-head  {
    max-width: 70rem;
    margin-bottom: 2.6rem;
  }
  .review-carousel  {
    position: relative;
  }
  .review-stage  {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
  }
  .rev-nav  {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    align-self: center;
    border-radius: 50%;
    border: 1px solid var(--core-border);
    background: #fff;
    color: var(--color-teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease, transform 0.12s ease;
  }
  .rev-nav:hover  {
    background: var(--color-teal-lightest);
    border-color: var(--color-teal-lighter);
  }
  .rev-nav:active  {
    transform: scale(0.94);
  }
  .rev-nav svg  {
    width: 20px;
    height: 20px;
  }
  .rev-nav[disabled]  {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
  }
  .review-viewport  {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }
  .review-track  {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
}
.content-section-2371  {
  .section-head  {
    max-width: 70rem;
    margin-bottom: 2.4rem;
  }
  .core-accordion-01 details  {
    background: #fff;
    border: 1px solid #e6ebee;
  }
  .core-accordion-01 summary  {
    font-family: "Hanken Grotesk", sans-serif;
    color: var(--color-ink);
  }
  .core-accordion-01 details p  {
    color: var(--color-slate);
    font-size: var(--text-size-reg);
    margin: 0;
  }
  .core-accordion-01 details p a  {
    font-weight: 700;
  }
}
.content-section-2372  {
  .content-section-inner  {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
  .callback-intro h2  {
    font-size: var(--text-size-9xl);
  }
  .callback-intro .lede  {
    margin-bottom: 1.6rem;
  }
  .callback-points  {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }
  .callback-points li  {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--color-ink);
    font-size: var(--text-size-reg);
  }
  .callback-points li svg  {
    width: 22px;
    height: 22px;
    color: var(--color-green);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .callback-points li strong  {
    display: block;
  }
  .callback-refer  {
    margin-top: 1.8rem;
    font-size: var(--text-size-reg);
    color: var(--color-slate);
  }
  .callback-refer a  {
    font-weight: 700;
  }
  .callback-form-wrap  {
    background: transparent;
    border-radius: 0;
    padding: 0;
    overflow: visible;
    box-shadow: none;
  }
  .form-tabs  {
    display: flex;
    gap: 0.6rem;
    padding: 0;
    position: relative;
    z-index: 2;
  }
  .form-tab  {
    flex: 1 1 0;
    font-family: inherit;
    font-size: var(--text-size-reg);
    font-weight: var(--font-weight-bold);
    color: var(--color-teal-dark);
    background: var(--color-teal-lighter);
    border: 1px solid var(--color-teal-lighter);
    border-bottom: none;
    border-radius: 14px 14px 0 0;
    padding: 0.9rem 1rem;
    cursor: pointer;
    transform: translateY(8px);
    box-shadow: 0 -3px 10px -6px rgba(24,76,102,0.18);
    transition: transform 0.18s ease, background-color 0.15s ease, color 0.15s ease, box-shadow 0.18s ease;
  }
  .form-tab:hover  {
    transform: translateY(4px);
    background: #eef6fa;
    color: var(--color-teal-darker);
  }
  .form-tab.is-active  {
    background: #fff;
    color: var(--color-teal-darker);
    border-color: #fff;
    transform: translateY(0);
    padding-bottom: 1.35rem;
    margin-bottom: -0.55rem;
    box-shadow: 0 -12px 26px -12px rgba(24,76,102,0.4);
    z-index: 3;
  }
  .form-tab.is-active:hover  {
    transform: translateY(0);
    background: #fff;
    color: var(--color-teal-darker);
  }
  .form-panel  {
    display: none;
    background: #fff;
    border-radius: 4px 4px 22px 22px;
    box-shadow: 0 40px 70px -45px rgba(24,76,102,0.6);
    padding: 2.2rem;
    position: relative;
    z-index: 1;
  }
  .form-panel.is-active  {
    display: block;
  }
  .form-panel > .form-sub  {
    color: var(--color-slate);
    font-size: var(--text-size-sm);
    margin-bottom: 1.4rem;
  }
  .core-form-style label  {
    font-weight: 600;
    font-size: var(--text-size-sm);
    color: var(--color-ink);
  }
  .form-submit  {
    width: 100%;
  }
  .form-submit.btn  {
    min-height: 56px;
  }
  .form-disclaimer  {
    font-size: var(--text-size-xs);
    color: var(--color-slate);
    margin-top: 1rem;
    text-align: center;
  }
  .form-thanks  {
    display: none;
    background: var(--color-green-soft);
    border: 1px solid #bfe3cd;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    color: #2c7d54;
  }
  .form-thanks.show  {
    display: block;
  }
  .form-thanks h4  {
    color: #2c7d54;
    margin-bottom: 0.3rem;
  }
  @media (max-width: 1023px)  {
    .content-section-inner  {
      grid-template-columns: 1fr;
      gap: 2.2rem;
    }
    .callback-intro h2  {
      font-size: var(--text-size-7xl);
    }
  }
  @media (max-width: 639px)  {
    .form-panel  {
      padding-left: 1.4rem;
      padding-right: 1.4rem;
    }
  }
}
