/* ============================================================
   InteractABILITY.com.au — Global Stylesheet
   Design system aligned with interactability.ai
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  /* Brand */
  --brand-purple:         #7F56D9;
  --brand-purple-light:   #A78BFA;
  --brand-purple-lighter: #C4AAFF;
  --brand-purple-dim:     rgba(127, 86, 217, 0.14);
  --brand-purple-glow:    rgba(127, 86, 217, 0.35);
  --brand-cyan:           #00BFFF;
  --brand-magenta:        #FF00BF;

  /* Dark surfaces (hero, footer, nav) */
  --bg-dark:      #0A0815;
  --bg-charcoal:  #12101E;
  --bg-card-dark: rgba(255, 255, 255, 0.04);
  --border-dark:  rgba(255, 255, 255, 0.08);

  /* Light surfaces (content sections) */
  --bg-light:     #FDFBFF;
  --bg-tint:      #F3EFFC;
  --bg-card:      #FFFFFF;
  --border-light: rgba(127, 86, 217, 0.15);

  /* Text — dark context */
  --text-on-dark:         #FDFBFF;
  --text-on-dark-sec:     rgba(253, 251, 255, 0.70);
  --text-on-dark-muted:   rgba(253, 251, 255, 0.45);

  /* Text — light context */
  --text-primary:   #1A1530;
  --text-secondary: #4A4568;
  --text-muted:     #7A7895;

  /* Layout */
  --nav-height:  80px;
  --max-width:   1160px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(10, 8, 21, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-dark);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav-logo-text span {
  color: var(--brand-purple-light);
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: none; /* colour correction handled in nav.js */
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* Full white for dark footer */
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-dark-sec);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, 0.08);
}
.nav-cta {
  margin-left: auto;
  padding: 9px 20px;
  background: var(--brand-purple);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: #9370E8; transform: translateY(-1px); }

/* Dropdown nav */
.nav-links .has-dropdown { position: relative; display: flex; align-items: center; }
/* Extend the li's hover zone to fill the full nav height so mouse doesn't escape */
.nav-links .has-dropdown > a {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  padding-top: 0;
  padding-bottom: 0;
}
/* Invisible bridge: fills the gap between nav bottom edge and dropdown top */
.nav-links .has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  display: none;
}
.nav-links .has-dropdown:hover::after { display: block; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(10, 8, 21, 0.97);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  padding: 6px;
  margin-top: 0;
  z-index: 1100;
  list-style: none;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { display: block; }
.nav-dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-dark-sec);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-link:hover { background: rgba(255,255,255,0.08); color: var(--text-on-dark); }
.nav-dropdown-link .dropdown-sub {
  display: block;
  font-size: 0.775rem;
  color: var(--text-on-dark-muted);
  font-weight: 400;
  margin-top: 2px;
}
.nav-chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 4px;
  vertical-align: middle;
  transition: transform 0.2s var(--ease);
  color: var(--text-on-dark-muted);
}
.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }
/* Mobile dropdown (open state via JS toggle) */
.nav.open .has-dropdown.dropdown-open .nav-dropdown { display: block; }
/* Mobile dropdown (open state — apply shared layout) */
.nav.open .has-dropdown.dropdown-open .nav-dropdown,
.nav.open .has-dropdown .nav-dropdown {
  position: static;
  border: none;
  box-shadow: none;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 4px 0 4px 16px;
  margin-top: 4px;
}
/* But only show when dropdown-open is set on mobile */
.nav.open .has-dropdown .nav-dropdown { display: none; }
.nav.open .has-dropdown.dropdown-open .nav-dropdown { display: block; }

/* Product tabs (NDIS page) */
.product-tabs-wrap { margin-bottom: 40px; }
.product-tab-list {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.product-tab-btn {
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  border-radius: var(--radius-pill) var(--radius-pill) 0 0;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.product-tab-btn:hover { color: var(--brand-purple); background: var(--brand-purple-dim); }
.product-tab-btn.active { color: var(--brand-purple); border-bottom-color: var(--brand-purple); background: var(--brand-purple-dim); }
.product-tab-panel { display: none; }
.product-tab-panel.active { display: block; }

/* Coming-soon overlay card */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 180, 0, 0.12);
  border: 1px solid rgba(255, 180, 0, 0.35);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

/* Product showcase cards (homepage) */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(127, 86, 217, 0.14);
  border-color: rgba(127, 86, 217, 0.3);
}
.product-card-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(135deg, var(--brand-purple-dim), transparent);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.product-card-body { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; }
.product-card-footer { padding: 20px 32px 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.product-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.product-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* === PAGE OFFSET === */
.page-body { padding-top: var(--nav-height); }

/* === HERO (dark) === */
.hero {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 80px 24px;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: var(--brand-purple);
  top: -150px; left: -100px;
  animation: orbDrift 16s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: var(--brand-cyan);
  bottom: -100px; right: -80px;
  animation: orbDrift 20s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: var(--brand-magenta);
  top: 50%; right: 20%;
  animation: orbDrift 12s ease-in-out infinite alternate;
  opacity: 0.2;
}
@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -20px) scale(1.05); }
  100% { transform: translate(-20px, 30px) scale(0.97); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--brand-purple-dim);
  border: 1px solid rgba(127, 86, 217, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-purple-lighter);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-purple-light);
  animation: pulseDot 2.5s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.hero-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-on-dark);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  max-width: 780px;
}
.hero-heading em {
  font-style: normal;
  color: var(--brand-purple-light);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-on-dark-sec);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--brand-purple);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background 0.2s var(--ease), transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none;
}
.btn-primary:hover {
  background: #9370E8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(127, 86, 217, 0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--text-on-dark);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-dark);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--brand-purple);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
  text-decoration: none;
}
.btn-light:hover {
  background: #6B44C4;
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--brand-purple);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--brand-purple);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease);
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--brand-purple);
  color: #fff;
  transform: translateY(-1px);
}

/* === STATS BAR === */
.stats-bar {
  background: var(--bg-charcoal);
  border-bottom: 1px solid var(--border-dark);
  padding: 0 24px;
}
.stats-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.stat-item {
  flex: 1;
  padding: 24px 20px;
  border-right: 1px solid var(--border-dark);
  text-align: center;
  transition: background 0.2s var(--ease);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-card-dark); }
.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-purple-light);
  letter-spacing: -0.03em;
  display: block;
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  margin-top: 4px;
  display: block;
}

/* === SECTION WRAPPERS === */
.section {
  padding: 96px 24px;
}
.section-tint {
  padding: 96px 24px;
  background: var(--bg-tint);
}
.section-dark {
  padding: 96px 24px;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section-charcoal {
  padding: 96px 24px;
  background: var(--bg-charcoal);
  color: var(--text-on-dark);
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* === SECTION LABELS === */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--brand-purple-dim);
  border: 1px solid rgba(127, 86, 217, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--brand-purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.section-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-purple);
  animation: pulseDot 2.5s ease-in-out infinite;
}
.section-badge.on-dark {
  color: var(--brand-purple-lighter);
  border-color: rgba(164, 139, 250, 0.3);
}
.section-badge.on-dark .section-badge-dot {
  background: var(--brand-purple-light);
}
.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-heading.on-dark { color: var(--text-on-dark); }
.section-heading em {
  font-style: normal;
  color: var(--brand-purple);
}
.section-heading.on-dark em { color: var(--brand-purple-light); }
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}
.section-sub.on-dark { color: var(--text-on-dark-sec); }
.section-header { margin-bottom: 56px; }
.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === GRID === */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* === CARD === */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(127, 86, 217, 0.12);
  border-color: rgba(127, 86, 217, 0.3);
}
/* Static/informational cards — no hover lift */
.card.card-static,
.card.card-static:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border-light);
  cursor: default;
}
.card-dark {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card-dark:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(127, 86, 217, 0.4);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--brand-purple-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.25rem;
}
.card-dark .card-icon {
  background: rgba(127, 86, 217, 0.2);
}
.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.card-dark .card-title { color: var(--text-on-dark); }
.card-body {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.card-dark .card-body { color: var(--text-on-dark-sec); }

/* === NDIS BADGE === */
.ndis-registered {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(0, 160, 0, 0.1);
  border: 1px solid rgba(0, 160, 0, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ndis-registered-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00A000;
}

/* === CODE / NDIS CODES === */
.ndis-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: var(--brand-purple-dim);
  border: 1px solid rgba(127, 86, 217, 0.25);
  border-radius: 6px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-purple);
  letter-spacing: 0.02em;
}

/* === COMPARISON TABLE === */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-table th {
  background: var(--brand-purple);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
}
.compare-table th:first-child {
  background: var(--bg-charcoal);
}
.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  background: #f9f7fe;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td:not(:first-child) { background: #faf8ff; }
.compare-table td.harmony-col {
  color: var(--brand-purple);
  font-weight: 500;
}

/* === PRICING CARD === */
.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--brand-purple);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
}
.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-purple);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}
.pricing-amount sup {
  font-size: 1.1rem;
  vertical-align: super;
  font-weight: 600;
}
.pricing-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.pricing-note {
  font-size: 0.8125rem;
  color: var(--brand-purple);
  font-weight: 600;
  margin-top: 10px;
}

/* === FAQ ACCORDION === */
.faq-list { display: flex; flex-direction: column; gap: 1px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 8px;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--brand-purple); }
.faq-chevron {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--brand-purple);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border-light);
  padding-top: 18px;
}
.faq-item.open .faq-answer { display: block; }

/* === FEATURE LIST === */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.feature-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand-purple-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-purple);
  font-size: 0.7rem;
  margin-top: 2px;
}
.feature-item.on-dark { color: var(--text-on-dark-sec); }
.feature-check.on-dark {
  background: rgba(127, 86, 217, 0.25);
  color: var(--brand-purple-light);
}

/* === SPOTLIGHT (2-col content+visual) === */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.spotlight.reversed .spotlight-visual { order: -1; }
.spotlight-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-purple-dim);
  border: 1px solid var(--border-light);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--text-muted); font-weight: 500; }
.spec-value { color: var(--text-primary); font-weight: 600; text-align: right; max-width: 60%; }

/* === CONTACT FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--brand-purple-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--brand-purple);
}
.contact-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}
.contact-info-value a {
  color: var(--brand-purple);
}
.contact-info-value a:hover { text-decoration: underline; }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 32px rgba(127, 86, 217, 0.08);
}
.form-row { margin-bottom: 20px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 15px;
  background: var(--bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(127, 86, 217, 0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-select { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--brand-purple);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}
.form-submit:hover {
  background: #6B44C4;
  transform: translateY(-1px);
}

/* === THERAPY CARDS === */
.therapy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.therapy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(127,86,217,0.15);
  border-color: var(--brand-purple);
}
.therapy-card-icon { font-size: 2rem; line-height: 1; }
.therapy-card-title { font-size: 0.9375rem; font-weight: 600; color: var(--text-primary); }
.therapy-card-hint { font-size: 0.775rem; color: var(--brand-purple); font-weight: 600; }
/* Therapy modal */
.therapy-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  backdrop-filter: blur(4px);
}
.therapy-overlay.open { display: block; }
.therapy-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: min(560px, calc(100vw - 40px));
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  z-index: 2100;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transition: transform 0.25s var(--ease), opacity 0.25s;
  opacity: 0;
}
.therapy-modal.open {
  display: block;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.therapy-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-tint);
  color: var(--text-muted);
  font-size: 0.875rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.therapy-modal-close:hover { background: var(--border-light); color: var(--text-primary); }
.therapy-modal-emoji { font-size: 2.5rem; margin-bottom: 14px; }
.therapy-modal h2 { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 12px; }
.therapy-modal p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 10px; }
.therapy-modal ul { display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.therapy-modal ul li { display: flex; gap: 10px; font-size: 0.875rem; color: var(--text-secondary); }
.therapy-modal ul li span { color: var(--brand-purple); font-weight: 700; flex-shrink: 0; }

/* === TOOLTIP === */
.has-tooltip {
  position: relative;
  display: inline;
  cursor: help;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}
.has-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,8,21,0.96);
  border: 1px solid var(--border-dark);
  color: var(--text-on-dark-sec);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: var(--radius);
  white-space: normal;
  width: 240px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 200;
}
.has-tooltip:hover::after { opacity: 1; }

/* === THERAPY CHIPS === */
.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  padding: 8px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.chip:hover, .chip.active {
  border-color: var(--brand-purple);
  background: var(--brand-purple-dim);
  color: var(--brand-purple);
}
.chip.on-dark {
  color: var(--text-on-dark-sec);
  border-color: var(--border-dark);
  background: var(--bg-card-dark);
}
.chip.on-dark:hover {
  border-color: var(--brand-purple);
  background: var(--brand-purple-dim);
  color: var(--brand-purple-lighter);
}

/* === CTA BANNER === */
.cta-banner {
  text-align: center;
  padding: 80px 24px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-heading em { font-style: normal; color: var(--brand-purple-light); }
.cta-sub {
  font-size: 1.05rem;
  color: var(--text-on-dark-sec);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-banner-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: var(--bg-charcoal);
  border-top: 1px solid var(--border-dark);
  padding: 56px 24px 32px;
  color: var(--text-on-dark);
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
}
.footer-logo-text span { color: var(--brand-purple-light); }
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-ndis {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(0, 140, 0, 0.12);
  border: 1px solid rgba(0, 180, 0, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: #4ade80;
}
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 0.875rem;
  color: var(--text-on-dark-sec);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text-on-dark); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--text-on-dark-muted);
  gap: 16px;
  flex-wrap: wrap;
}

/* === WARNING / INFO BOXES === */
.info-box {
  padding: 16px 20px;
  background: rgba(127, 86, 217, 0.07);
  border: 1px solid rgba(127, 86, 217, 0.2);
  border-left: 4px solid var(--brand-purple);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 16px;
}

/* === TEAM / VALUES GRID === */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .grid-3, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .spotlight { grid-template-columns: 1fr; gap: 36px; }
  .spotlight.reversed .spotlight-visual { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--border-dark); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-dark); }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section, .section-tint, .section-dark, .section-charcoal { padding: 64px 20px; }
  .hero { padding: 64px 20px; min-height: 420px; }
}

@media (max-width: 600px) {
  .grid-3, .grid-4, .values-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .stats-bar-inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .stat-item:last-child { border-bottom: none; }
}

/* === UTILITY === */
.text-purple { color: var(--brand-purple); }
.text-muted { color: var(--text-muted); }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* === MOBILE NAV OPEN STATE === */
.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(10, 8, 21, 0.97);
  border-bottom: 1px solid var(--border-dark);
  padding: 16px 24px 24px;
  gap: 4px;
  align-items: flex-start;
}
.nav.open .nav-cta {
  display: block;
  margin: 16px 24px 0;
  position: fixed;
  bottom: auto;
  left: 0;
  right: 0;
  text-align: center;
  border-radius: var(--radius);
}
