/* ============================================================
   ALLEVIATE — Design System v3.0
   Purple Brand Theme · Advanced Mega Menu · Editorial Serif
   Deep violet primary · Soft lavender backgrounds
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  /* Brand Purple */
  --primary:        #7C3AED;   /* vibrant violet */
  --primary-dark:   #5B21B6;   /* deep purple */
  --primary-mid:    #8B5CF6;   /* medium purple */
  --primary-light:  #EDE9FE;   /* lavender tint */
  --primary-pale:   #F5F3FF;   /* near-white lavender */

  /* Accent — warm gold/amber that complements purple */
  --accent:         #D97706;   /* amber */
  --accent-dark:    #B45309;
  --accent-light:   #FEF3C7;

  /* Success green */
  --success:        #059669;
  --success-light:  #D1FAE5;

  /* Backgrounds — cool-lavender inspired */
  --bg-cream:       #FAFAFA;   /* near-white clean canvas */
  --bg-cream-alt:   #F3F0FA;   /* soft lavender wash — alt sections */
  --bg-white:       #FFFFFF;
  --bg-dark:        #1E1128;   /* deep purple-black — CTAs */
  --bg-purple:      #4C1D95;   /* rich purple sections */

  /* Text */
  --text:           #18112A;   /* near-black with purple undertone */
  --text-mid:       #3D2B5A;
  --muted:          #6B5F7A;
  --muted-light:    #A093B0;

  /* Borders — cool lavender tint */
  --border:         #DDD6FE;
  --border-light:   #EDE9FE;

  /* Misc */
  --gold:           #D4A017;
  --star:           #F59E0B;

  /* Shadows — purple-toned */
  --shadow-xs:      0 1px 4px rgba(76,29,149,0.06);
  --shadow-sm:      0 2px 10px rgba(76,29,149,0.10);
  --shadow-card:    0 4px 24px rgba(76,29,149,0.11);
  --shadow-hover:   0 8px 36px rgba(76,29,149,0.18);
  --shadow-purple:  0 8px 32px rgba(124,58,237,0.28);

  /* Radius */
  --radius-xs:      4px;
  --radius-sm:      8px;
  --radius:         12px;
  --radius-lg:      20px;
  --radius-pill:    999px;

  /* Fonts */
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', -apple-system, sans-serif;

  /* Type scale */
  --fs-xs:    12px;
  --fs-sm:    14px;
  --fs-base:  17px;
  --fs-md:    19px;
  --fs-lg:    24px;
  --fs-xl:    32px;
  --fs-2xl:   44px;
  --fs-3xl:   58px;
  --fs-4xl:   72px;

  /* Layout */
  --max-width:  1240px;
  --ann-h:      38px;   /* announcement bar height */
  --header-h:   72px;
  --total-top:  110px;  /* ann-h + header-h */
  --mega-h:     440px;
  --transition: 0.22s ease;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--bg-cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

.section        { padding: 96px 0; background: var(--bg-cream); }
.section--alt   { padding: 96px 0; background: var(--bg-cream-alt); }
.section--white { padding: 96px 0; background: var(--bg-white); }
.section--dark  { padding: 96px 0; background: var(--bg-dark); color: #fff; }
.section--accent{ padding: 64px 0; background: var(--accent); color: #fff; }

/* Section typography */
.section-eyebrow {
  display: block;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.section-eyebrow--accent { color: var(--accent); }
.section-eyebrow--white  { color: rgba(255,255,255,0.55); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; line-height: 1.16;
  color: var(--text); margin-bottom: 18px;
}
.section-title em        { font-style: italic; color: var(--primary-mid); }
.section-title--white    { color: #fff; }
.section-title--white em { color: rgba(255,255,255,0.65); }

.section-body {
  font-size: var(--fs-md); color: var(--muted);
  line-height: 1.7; max-width: 560px;
}
.section-body--white { color: rgba(255,255,255,0.78); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-body { margin: 0 auto; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.18; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 13px 26px; border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap; min-height: 50px;
  letter-spacing: 0.01em;
}

/* PRIMARY — deep purple with lighter purple hover */
.btn-primary {
  background: var(--primary); color: #fff;
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark); border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple);
}

/* SECONDARY */
.btn-secondary {
  background: transparent; color: var(--text);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--bg-dark); color: var(--bg-dark); }

/* OUTLINED WHITE */
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1); border-color: #fff;
}

/* ACCENT GREEN */
.btn-accent {
  background: var(--accent); color: #fff;
  border: 2px solid var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark); border-color: var(--accent-dark);
  transform: translateY(-1px);
}

/* WHITE SOLID */
.btn-white {
  background: #fff; color: var(--bg-dark);
  border: 2px solid #fff; font-weight: 700;
}
.btn-white:hover { background: var(--bg-cream); transform: translateY(-1px); }

.btn-lg   { padding: 16px 32px; font-size: 16px; min-height: 56px; }
.btn-sm   { padding: 9px 16px; font-size: 13px; min-height: 40px; }
.btn-full { width: 100%; }

/* ── BADGES ─────────────────────────────────────────────────── */
.badge-funding {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff;
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
}
.badge-funding-sm {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--accent); color: #fff;
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
}
.badge-label {
  display: inline-block;
  background: var(--bg-dark); color: #fff;
  padding: 4px 11px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
}

/* ── STICKY HEADER ──────────────────────────────────────────── */
.site-header {
  position: fixed; top: var(--ann-h); left: 0; right: 0; z-index: 1001;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-light);
  transition: height var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  height: 60px;
  box-shadow: 0 2px 20px rgba(76,29,149,0.1);
}
.site-header.mega-open {
  box-shadow: none;
  border-bottom-color: transparent;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%; gap: 20px;
}
.header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px;
  background: var(--bg-dark); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 18px; height: 18px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name    { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: var(--text); line-height: 1.1; }
.logo-tagline { font-size: 10px; color: var(--muted); font-weight: 400; white-space: nowrap; }

.header-phone {
  display: flex; align-items: center; gap: 7px;
  color: var(--text-mid); font-weight: 600; font-size: 15px;
  text-decoration: none; transition: color var(--transition);
}
.header-phone:hover { color: var(--primary); }
.header-phone svg   { color: var(--primary); }

.header-cta {
  background: var(--primary); color: #fff;
  padding: 9px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  border: 2px solid var(--primary); white-space: nowrap;
}
.header-cta:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: var(--bg-dark); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a    { color: #fff; font-size: 26px; font-family: var(--font-heading); font-weight: 600; }
.mobile-overlay-close{ position: absolute; top: 24px; right: 24px; color: rgba(255,255,255,0.6); font-size: 28px; cursor: pointer; }
.mobile-phone        { color: rgba(255,255,255,0.55) !important; font-size: 15px !important; font-family: var(--font-body) !important; }

/* ═══════════════════════════════════════════════════════════════
   ADVANCED MEGA MENU
═══════════════════════════════════════════════════════════════ */

/* Nav items */
.main-nav > ul > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  transition: color var(--transition), background var(--transition);
  cursor: pointer; white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.mega-active > a {
  color: var(--primary); background: var(--primary-pale);
}
.nav-chevron {
  width: 14px; height: 14px; color: var(--muted-light);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
}
.mega-active .nav-chevron { transform: rotate(180deg); color: var(--primary); }

/* Full-width mega dropdown */
.mega-dropdown {
  position: fixed;
  top: var(--total-top); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 16px 48px rgba(76,29,149,0.14);
  z-index: 999;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  max-height: var(--mega-h); overflow: hidden;
}
.mega-dropdown.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.mega-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 40px 32px;
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 48px;
}

/* Left: product columns grid */
.mega-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

/* Individual mega link item */
.mega-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius);
  text-decoration: none; color: inherit;
  transition: background var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}
.mega-item:hover {
  background: var(--primary-pale);
  border-color: var(--border-light);
  box-shadow: var(--shadow-xs);
}
.mega-item-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.mega-item:hover .mega-item-icon { background: var(--primary); }
.mega-item-icon svg { width: 20px; height: 20px; color: var(--primary); transition: color var(--transition); }
.mega-item:hover .mega-item-icon svg { color: #fff; }
.mega-item-text {}
.mega-item-name {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text); margin-bottom: 2px;
  transition: color var(--transition);
}
.mega-item:hover .mega-item-name { color: var(--primary); }
.mega-item-desc { font-size: 12px; color: var(--muted); line-height: 1.45; }

/* NDIS badge on mega item */
.mega-ndis {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--success-light); color: var(--success);
  font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: var(--radius-pill);
  margin-top: 4px;
}

/* Right: mega featured panel */
.mega-featured {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 28px; color: #fff;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 320px;
}
.mega-featured-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill); color: rgba(255,255,255,0.9);
  margin-bottom: 20px; width: fit-content;
}
.mega-featured h3 {
  font-family: var(--font-heading); font-size: 22px; font-weight: 700;
  color: #fff; line-height: 1.25; margin-bottom: 10px;
}
.mega-featured p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 20px; }
.mega-featured-price { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.mega-featured-price strong { font-size: 24px; font-weight: 700; color: #fff; font-family: var(--font-heading); }
.mega-featured-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 10px 18px; border-radius: var(--radius-sm);
  text-decoration: none; transition: background var(--transition);
  width: fit-content;
}
.mega-featured-cta:hover { background: rgba(255,255,255,0.25); }

/* Mega bottom bar — links row */
.mega-bottom {
  border-top: 1px solid var(--border-light);
  padding: 14px 32px;
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; gap: 28px;
}
.mega-bottom-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-right: 4px; }
.mega-bottom-links { display: flex; gap: 8px; flex-wrap: wrap; }
.mega-bottom-link {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--primary-pale); color: var(--primary);
  font-size: 12px; font-weight: 600;
  padding: 5px 13px; border-radius: var(--radius-pill);
  text-decoration: none; border: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}
.mega-bottom-link:hover { background: var(--primary-light); border-color: var(--primary); }

/* NDIS dropdown — simpler single-column */
.mega-dropdown--simple .mega-inner {
  grid-template-columns: 1.8fr 1fr;
  gap: 48px;
}
.mega-simple-cols { display: flex; flex-direction: column; gap: 6px; }

/* Backdrop overlay */
.mega-backdrop {
  position: fixed; inset: 0; top: var(--total-top);
  background: rgba(18,11,37,0.35);
  backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s;
}
.mega-backdrop.is-open { opacity: 1; visibility: visible; }

/* ── HERO — editorial left-aligned, Purple style ────────────── */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  margin-top: var(--total-top);
  background: var(--bg-cream);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; padding: 80px 0;
  width: 100%;
}

/* Editorial headline */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--muted-light); }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700; color: var(--text);
  line-height: 1.08; margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--primary-mid); }

.hero-body {
  font-size: clamp(16px, 1.6vw, 18px); color: var(--muted);
  line-height: 1.75; margin-bottom: 36px; max-width: 480px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

/* Trust items — Purple minimal strip style */
.trust-bar { display: flex; gap: 0; border-top: 1px solid var(--border); padding-top: 24px; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  padding-right: 24px; margin-right: 24px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.trust-item svg { color: var(--accent); flex-shrink: 0; width: 15px; height: 15px; }

/* Right panel image */
.hero-image-panel {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/5;
  background: var(--primary-light);
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--primary-light) 0%, var(--primary) 55%, var(--primary-dark) 100%);
}
.hero-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-hover);
}
.hero-badge-stat  { font-family: var(--font-heading); font-size: 32px; font-weight: 700; color: var(--primary); line-height: 1; }
.hero-badge-label { font-size: 12px; color: var(--muted); margin-top: 4px; max-width: 140px; line-height: 1.4; }

/* ── TRUST STRIP — standalone Purple horizontal bar ─────────── */
.trust-strip {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust-strip-inner {
  display: flex; align-items: stretch;
  border-left: 1px solid var(--border-light);
}
.trust-strip-item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 20px 24px;
  border-right: 1px solid var(--border-light);
  font-size: 13px; font-weight: 500; color: var(--text-mid);
}
.trust-strip-item svg { color: var(--primary-mid); flex-shrink: 0; width: 20px; height: 20px; }
.trust-strip-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 1px; }

/* ── WHY CHOOSE US ──────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--bg-white); border-radius: var(--radius);
  padding: 36px 28px; border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.why-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-light) 0%, #DDD6FE 100%); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-icon svg { width: 24px; height: 24px; color: var(--primary); }
.why-card h3  { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.why-card p   { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── STAT CALLOUT — deep purple bold section ────────────────── */
.stat-section { padding: 80px 0; background: var(--bg-purple); }
.stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
}
.stat-item { background: var(--bg-dark); text-align: center; padding: 56px 40px; }
.stat-number {
  display: block; font-family: var(--font-heading);
  font-size: clamp(52px, 6vw, 80px); font-weight: 700;
  color: #fff; line-height: 1; margin-bottom: 14px;
}
.stat-number em { font-style: italic; color: #93C5FD; }
.stat-label  { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 220px; margin: 0 auto; line-height: 1.55; }
.stat-source { font-size: 11px; color: rgba(255,255,255,0.28); margin-top: 10px; }

/* ── FUNDING BANNER ─────────────────────────────────────────── */
.funding-banner { background: var(--accent); padding: 64px 0; }
.funding-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.funding-banner-content { max-width: 640px; }
.funding-banner-icon { width: 56px; height: 56px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.funding-banner-icon svg { width: 28px; height: 28px; color: #fff; }
.funding-banner h2 { font-family: var(--font-heading); font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.funding-banner p  { color: rgba(255,255,255,0.88); font-size: 17px; line-height: 1.65; }

/* ── CATEGORY GRID ──────────────────────────────────────────── */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.category-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; display: flex; align-items: flex-end;
  cursor: pointer; text-decoration: none;
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.category-card:hover .category-img-placeholder { transform: scale(1.04); }
.category-img-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; transition: transform 0.45s ease; }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,25,50,0.82) 0%, rgba(10,25,50,0.12) 55%, transparent 100%); }
.category-content { position: relative; z-index: 1; padding: 20px; width: 100%; }
.category-badge { position: absolute; top: 14px; right: 14px; z-index: 2; }
.category-card h3 { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.category-card p  { font-size: 12px; color: rgba(255,255,255,0.78); margin-bottom: 12px; line-height: 1.4; }
.category-link { display: inline-flex; align-items: center; gap: 5px; color: #fff; font-size: 13px; font-weight: 600; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); padding: 7px 13px; border-radius: var(--radius-pill); transition: background var(--transition); }
.category-card:hover .category-link { background: rgba(255,255,255,0.22); }

/* ── FEATURED BEDS ──────────────────────────────────────────── */
.beds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.bed-card {
  background: var(--bg-white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none; color: inherit; display: block;
}
.bed-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.bed-card-image { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--bg-cream-alt); }
.bed-card-image > div { position: absolute; inset: 0; transition: transform 0.4s ease; }
.bed-card:hover .bed-card-image > div { transform: scale(1.04); }
.bed-card-badge   { position: absolute; top: 12px; left: 12px; z-index: 2; }
.bed-card-funding { position: absolute; top: 12px; right: 12px; z-index: 2; }
.bed-card-body { padding: 24px; }
.bed-card-mattress-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; color: var(--accent); font-weight: 600; background: var(--accent-light); padding: 3px 9px; border-radius: var(--radius-pill); margin-bottom: 10px; }
.bed-card h3 { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.bed-card p  { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.55; }
.bed-card-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 18px; }
.price-from    { font-size: 12px; color: var(--muted); }
.price-amount  { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--text); }
.beds-cta-row  { text-align: center; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.testimonial-card { background: var(--bg-white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border-light); }
.stars { display: flex; gap: 2px; margin-bottom: 14px; }
.star  { color: var(--star); font-size: 17px; }
.testimonial-quote { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar   { width: 42px; height: 42px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); font-size: 15px; flex-shrink: 0; }
.author-name     { font-weight: 600; font-size: 14px; color: var(--text); }
.author-location { font-size: 12px; color: var(--muted); }
.reviews-cta { text-align: center; display: flex; align-items: center; justify-content: center; gap: 16px; }
.google-badge { display: flex; align-items: center; gap: 8px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 16px; font-size: 14px; font-weight: 600; }
.google-badge svg { width: 20px; height: 20px; }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.steps-flow { display: flex; align-items: flex-start; }
.step { flex: 1; padding: 0 24px; position: relative; text-align: center; }
.step::after { content: ''; position: absolute; top: 26px; right: -20px; width: 40px; height: 1px; background: var(--border); z-index: 0; }
.step:last-child::after { display: none; }
.step-number { width: 52px; height: 52px; background: var(--bg-dark); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin: 0 auto 18px; position: relative; z-index: 1; }
.step h3 { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── FINAL CTA BLOCK ────────────────────────────────────────── */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-panel { background: var(--bg-white); border-radius: var(--radius-lg); padding: 48px 40px; border: 1px solid var(--border-light); }
.cta-panel--primary   { border-top: 3px solid var(--bg-dark); }
.cta-panel--secondary { border-top: 3px solid var(--accent); }
.cta-panel-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.cta-panel-icon--primary   { background: var(--primary-light); }
.cta-panel-icon--secondary { background: var(--accent-light); }
.cta-panel-icon--primary   svg { color: var(--primary); width: 24px; height: 24px; }
.cta-panel-icon--secondary svg { color: var(--accent);  width: 24px; height: 24px; }
.cta-panel h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.cta-panel p  { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 28px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: #111009; color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand .logo-name    { color: #fff; font-size: 20px; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.4); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; margin: 16px 0 20px; max-width: 280px; }
.footer-social { display: flex; gap: 8px; }
.social-icon { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.social-icon:hover { background: rgba(255,255,255,0.13); }
.social-icon svg { width: 15px; height: 15px; color: rgba(255,255,255,0.65); }
.footer-col h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; width: 14px; height: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }
.ndis-badge { display: inline-flex; align-items: center; gap: 5px; background: rgba(46,139,87,0.18); border: 1px solid rgba(46,139,87,0.35); color: #6BE0A0; padding: 5px 12px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 600; margin-top: 14px; }

/* ── PRODUCT PAGE ───────────────────────────────────────────── */
.page-wrap { margin-top: var(--total-top); background: var(--bg-cream); }
.breadcrumb { padding: 16px 0; font-size: 13px; color: var(--muted); }
.breadcrumb a    { color: var(--primary); }
.breadcrumb span { margin: 0 6px; color: var(--muted-light); }

.product-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 40px 0 72px; align-items: start; }

/* Gallery */
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; position: relative; background: var(--bg-cream-alt); cursor: zoom-in; }
.gallery-main .gallery-placeholder { width: 100%; height: 100%; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumb { width: 72px; height: 58px; flex-shrink: 0; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color var(--transition); background: var(--bg-cream-alt); }
.gallery-thumb.active { border-color: var(--bg-dark); }
.gallery-thumb:hover  { border-color: var(--text-mid); }
.gallery-thumb > div  { width: 100%; height: 100%; }

/* Product info panel */
.product-info { position: sticky; top: calc(var(--total-top) + 16px); }
.product-funding-badge { margin-bottom: 14px; }
.product-title  { font-family: var(--font-heading); font-size: clamp(24px, 3vw, 34px); font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: 12px; }
.product-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.product-rating .stars { margin: 0; }
.rating-count { font-size: 13px; color: var(--primary); font-weight: 500; }
.product-short-desc { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; border-bottom: 1px solid var(--border-light); padding-bottom: 24px; }

/* Variation selectors */
.selector-group { margin-bottom: 22px; }
.selector-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.selector-label span { font-weight: 400; color: var(--muted); }
.size-options { display: flex; gap: 7px; flex-wrap: wrap; }
.size-btn { padding: 8px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); font-size: 13px; font-weight: 500; color: var(--text); cursor: pointer; transition: all var(--transition); background: var(--bg-white); }
.size-btn:hover  { border-color: var(--bg-dark); color: var(--bg-dark); }
.size-btn.active { border-color: var(--bg-dark); background: var(--bg-dark); color: #fff; font-weight: 600; }
.size-btn.active .price-delta { color: rgba(255,255,255,0.65); }
.size-btn .price-delta { font-size: 10px; color: var(--muted); display: block; }
.colour-options { display: flex; gap: 9px; }
.colour-swatch  { width: 34px; height: 34px; border-radius: 50%; cursor: pointer; border: 3px solid transparent; outline: 2px solid transparent; transition: all var(--transition); }
.colour-swatch.active { border-color: #fff; outline-color: var(--bg-dark); }
.colour-swatch:hover  { outline-color: var(--muted); }

/* Mattress selector */
.mattress-selector { background: var(--bg-cream-alt); border-radius: var(--radius); padding: 18px; margin-bottom: 22px; border: 1px solid var(--border-light); }
.mattress-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; cursor: pointer; }
.mattress-title  { font-size: 15px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 7px; }
.mattress-toggle { font-size: 20px; color: var(--text-mid); font-weight: 300; transition: transform var(--transition); }
.mattress-toggle.open { transform: rotate(45deg); }
.mattress-options { display: flex; flex-direction: column; gap: 8px; }
.mattress-option { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); cursor: pointer; transition: all var(--transition); background: var(--bg-white); }
.mattress-option:hover   { border-color: var(--bg-dark); }
.mattress-option.selected{ border-color: var(--bg-dark); box-shadow: 0 0 0 1px var(--bg-dark); }
.mattress-option.recommended { border-color: var(--accent); background: var(--accent-light); }
.mattress-option.recommended.selected { box-shadow: 0 0 0 1px var(--accent); }
.mattress-option input[type="radio"] { display: none; }
.mattress-radio { width: 17px; height: 17px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.mattress-option.selected .mattress-radio            { border-color: var(--bg-dark); background: var(--bg-dark); }
.mattress-option.recommended.selected .mattress-radio{ border-color: var(--accent);  background: var(--accent); }
.radio-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; display: none; }
.mattress-option.selected .radio-dot { display: block; }
.mattress-info { flex: 1; }
.mattress-name     { font-size: 14px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.mattress-tag      { font-size: 10px; background: var(--accent); color: #fff; padding: 2px 7px; border-radius: var(--radius-pill); font-weight: 700; }
.mattress-features { font-size: 12px; color: var(--muted); margin-top: 2px; }
.mattress-price    { font-size: 14px; font-weight: 700; color: var(--text); white-space: nowrap; }
.mattress-price.included { color: var(--muted); font-weight: 400; }

/* ATC */
.atc-area { background: var(--bg-white); border-radius: var(--radius); border: 1px solid var(--border-light); padding: 20px; }
.atc-total { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.atc-total-label  { font-size: 13px; color: var(--muted); }
.atc-total-price  { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--text); }
.atc-funding-note { font-size: 12px; color: var(--accent); font-weight: 500; display: flex; align-items: center; gap: 4px; margin-bottom: 14px; }
.atc-btn { margin-bottom: 10px; }
.atc-secondary-btns { display: flex; gap: 8px; }
.atc-secondary-btns .btn { font-size: 13px; padding: 11px 14px; min-height: 42px; flex: 1; }
.stock-status { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 14px; }
.stock-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }
.reassurance-strip { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid var(--border-light); margin-top: 14px; }
.reassurance-item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); font-weight: 500; }
.reassurance-item svg { color: var(--text-mid); flex-shrink: 0; width: 13px; height: 13px; }

/* Below fold */
.product-sections { padding: 64px 0; }
.product-section  { border-bottom: 1px solid var(--border-light); padding: 48px 0; }
.product-section:first-child { padding-top: 0; }
.product-section-title { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 24px; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-item  { display: flex; align-items: flex-start; gap: 12px; }
.feature-icon  { width: 42px; height: 42px; background: var(--primary-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { width: 20px; height: 20px; color: var(--primary); }
.feature-text h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.feature-text p  { font-size: 13px; color: var(--muted); line-height: 1.55; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) { background: var(--bg-cream); }
.specs-table td { padding: 11px 14px; font-size: 14px; border-bottom: 1px solid var(--border-light); }
.specs-table td:first-child { font-weight: 600; color: var(--text); width: 40%; }
.specs-table td:last-child   { color: var(--muted); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 19px 0; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--text); gap: 16px; transition: color var(--transition); }
.faq-question:hover { color: var(--primary); }
.faq-chevron { width: 18px; height: 18px; color: var(--text-mid); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 0 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

.funding-panel { background: var(--accent-light); border: 1.5px solid var(--accent); border-radius: var(--radius); padding: 32px; }
.funding-panel h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--accent-dark); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.funding-panel p  { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 6px; }
.funding-types { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 18px; }
.funding-type-tag { background: var(--accent); color: #fff; padding: 3px 11px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; }

.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-card { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border-light); background: var(--bg-white); text-decoration: none; color: inherit; display: block; transition: box-shadow var(--transition); }
.related-card:hover { box-shadow: var(--shadow-card); }
.related-img { aspect-ratio: 4/3; background: var(--bg-cream-alt); }
.related-img > div { width: 100%; height: 100%; }
.related-body    { padding: 12px; }
.related-body h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.related-price   { font-size: 15px; font-weight: 700; color: var(--text); }

/* Mobile sticky ATC */
.mobile-sticky-atc { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-white); border-top: 1px solid var(--border-light); padding: 12px 20px; z-index: 900; align-items: center; justify-content: space-between; gap: 14px; box-shadow: 0 -4px 20px rgba(50,40,20,0.1); }
.sticky-price { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--text); }
.sticky-price small { font-size: 12px; color: var(--muted); font-family: var(--font-body); font-weight: 400; }

/* ── REAL IMAGES ─────────────────────────────────────────────── */

/* Hero image panel */
.hero-image-panel { overflow: hidden; }
.hero-image-panel img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: var(--radius-lg);
}

/* Product grid cards */
.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--primary-pale); display: block;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.45s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }

/* Featured product */
.featured-img img {
  width: 100%; min-height: 340px;
  object-fit: cover; display: block;
  border-radius: var(--radius-lg);
}

/* Testimonial avatars */
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; display: block;
  border: 2px solid var(--border-light);
  margin-bottom: 10px;
}

/* Gallery — product.html */
.gallery-main img   { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb img  { width: 100%; height: 100%; object-fit: cover; display: block; }
.related-img img    { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── PLACEHOLDER COLOURS ─────────────────────────────────────── */
.ph-blue   { background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%); }
.ph-teal   { background: linear-gradient(135deg, #0E7490 0%, #0891B2 100%); }
.ph-warm   { background: linear-gradient(135deg, #92400E 0%, #B45309 100%); }
.ph-slate  { background: linear-gradient(135deg, #374151 0%, #4B5563 100%); }
.ph-green  { background: linear-gradient(135deg, #065F46 0%, #059669 100%); }
.ph-purple { background: linear-gradient(135deg, #4C1D95 0%, #6D28D9 100%); }
.ph-rose   { background: linear-gradient(135deg, #881337 0%, #BE123C 100%); }
.ph-mid    { background: linear-gradient(135deg, #94A3B8 0%, #CBD5E1 100%); }

/* ── SITE LOGO ───────────────────────────────────────────────── */
.site-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text);
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
}
.site-logo svg { flex-shrink: 0; }

/* ── NAV ─────────────────────────────────────────────────────── */
.main-nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; }
/* individual link styles are handled in the mega-menu block above */
.main-nav.is-open { display: flex; }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
  background: none; border: none;
}
.mobile-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ── HERO ALIASES (new naming) ───────────────────────────────── */
.hero-content { max-width: 560px; }
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700; color: var(--text);
  line-height: 1.08; margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: var(--primary-mid); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 18px); color: var(--muted);
  line-height: 1.75; margin-bottom: 36px; max-width: 480px;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust-row {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-mid); font-weight: 500;
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 32px; text-align: center;
}

/* ── BTN OUTLINE (alias) ─────────────────────────────────────── */
.btn-outline {
  background: transparent; color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--bg-dark); color: var(--bg-dark); }
.btn-outline-light {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── TRUST STRIP — divider pipe ─────────────────────────────── */
.trust-strip-divider {
  color: var(--border-light); font-size: 20px; line-height: 1;
  align-self: center; flex-shrink: 0; user-select: none; padding: 0 4px;
}

/* ── STAT SECTION extras ─────────────────────────────────────── */
.stat-eyebrow {
  display: block; text-align: center;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 48px;
}
.stat-pct {
  font-family: var(--font-heading); font-size: 0.55em;
  vertical-align: super; font-weight: 700;
}

/* ── SECTION SUB ─────────────────────────────────────────────── */
.section-sub {
  font-size: var(--fs-md); color: var(--muted);
  line-height: 1.7; max-width: 520px;
  margin: 0 auto 56px; text-align: center;
}

/* ── PRODUCT GRID (homepage category cards) ──────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--bg-white); border-radius: var(--radius);
  border: 1px solid var(--border-light); overflow: hidden;
  display: block; text-decoration: none; color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.product-card-img {
  position: relative; aspect-ratio: 4/3;
  background: var(--bg-cream-alt);
  display: flex; align-items: center; justify-content: center;
}
.product-card-img .ndis-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: var(--radius-pill); letter-spacing: 0.05em;
}
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.img-placeholder-lg {
  width: 100%; height: 100%; min-height: 320px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--bg-cream-alt); border-radius: var(--radius-lg);
  padding: 40px;
}
.product-card-body { padding: 24px; }
.product-card-body h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.product-card-body p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.product-card-link { font-size: 13px; font-weight: 600; color: var(--primary); }
.product-card--cta {
  background: var(--bg-dark); border-color: var(--bg-dark);
  display: flex; align-items: center; justify-content: center; min-height: 300px;
}
.product-card--cta:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.product-card-cta-inner { padding: 36px; text-align: center; color: #fff; }
.product-card-cta-label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.product-card-cta-inner h3 { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.product-card-cta-inner p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 24px; line-height: 1.6; }
.product-card-cta-inner .btn-primary { background: #fff; color: var(--bg-dark); border-color: #fff; }
.product-card-cta-inner .btn-primary:hover { background: var(--bg-cream); border-color: var(--bg-cream); }

/* ── NDIS SECTION ────────────────────────────────────────────── */
.ndis-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-purple) 100%); padding: 96px 0; }
.ndis-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.ndis-text h2 {
  font-family: var(--font-heading); font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.18;
}
.ndis-text p { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 24px; }
.ndis-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.ndis-pill {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; padding: 6px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600;
}
.ndis-steps { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.ndis-steps .step {
  display: flex; align-items: flex-start; gap: 18px;
  text-align: left; flex: none; padding: 0;
}
.ndis-steps .step::after { display: none; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.35);
  color: #fff; font-family: var(--font-heading); font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ndis-steps .step strong { display: block; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ndis-steps .step p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }

/* ── FEATURED PRODUCT (editorial two-col) ────────────────────── */
.featured-product {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.featured-img { border-radius: var(--radius-lg); overflow: hidden; }
.featured-info { padding-top: 8px; }
.featured-name {
  font-family: var(--font-heading); font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700; color: var(--text); margin-bottom: 12px;
}
.featured-price {
  font-size: 18px; color: var(--text-mid); margin-bottom: 24px;
}
.featured-price strong { font-family: var(--font-heading); font-size: 32px; color: var(--text); }
.featured-finance { font-size: 14px; color: var(--muted); }
.featured-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px;
}
.featured-features li {
  font-size: 15px; color: var(--text-mid); display: flex; align-items: center; gap: 10px;
}
.featured-features li::before {
  content: '✓'; display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; background: var(--accent-light); color: var(--accent);
  border-radius: 50%; font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.featured-cta { display: flex; gap: 12px; margin-bottom: 20px; }
.featured-ndis-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--accent); font-weight: 500;
}
.featured-ndis-note svg { color: var(--accent); }

/* ── TESTIMONIAL SECTION aliases ─────────────────────────────── */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial-card {
  background: var(--bg-white); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border-light);
}
.testimonial-card blockquote {
  font-size: 15px; color: var(--text-mid); line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.testimonial-card figcaption { font-size: 13px; color: var(--muted); }
.testimonial-card figcaption strong { display: block; font-size: 14px; color: var(--text); font-weight: 600; }
.testimonial-stars { color: var(--star); font-size: 15px; letter-spacing: 1px; margin-bottom: 6px; }
.testimonial-product { display: block; font-size: 12px; color: var(--primary); margin-top: 4px; }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section { background: var(--bg-cream-alt); padding: 96px 0; }
.cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.cta-inner h2 {
  font-family: var(--font-heading); font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--text); margin-bottom: 14px;
}
.cta-inner > p { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }
.cta-options { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.cta-hours { font-size: 13px; color: var(--muted); }

/* ── FOOTER extras ───────────────────────────────────────────── */
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 2fr;
  gap: 64px; padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .site-logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 18px; max-width: 280px; }
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.accred-badge {
  display: inline-block;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: var(--radius-pill); margin-right: 6px; margin-top: 6px;
}
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom nav a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom nav a:hover { color: rgba(255,255,255,0.7); }

/* ── UTILITY ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-panel { display: none; }
  .hero { min-height: auto; }
  .why-grid  { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .beds-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid  { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .product-hero { grid-template-columns: 1fr; }
  .product-info { position: static; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid  { grid-template-columns: repeat(2, 1fr); }
  .product-grid  { grid-template-columns: repeat(2, 1fr); }
  .ndis-inner    { grid-template-columns: 1fr; gap: 48px; }
  .featured-product { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --header-h: 58px; --total-top: 96px; }
  .section, .section--alt, .section--white, .section--dark, .section--accent { padding: 64px 0; }
  .container { padding: 0 18px; }
  .section-header { margin-bottom: 44px; }
  .why-grid  { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .beds-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-grid  { grid-template-columns: 1fr; }
  .product-grid  { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; }
  .footer-nav    { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .steps-flow    { flex-direction: column; align-items: center; }
  .step::after   { display: none; }
  .trust-strip-inner { flex-direction: column; border-left: none; }
  .trust-strip-divider { display: none; }
  .trust-strip-item  { border-right: none; border-bottom: 1px solid var(--border-light); }
  .trust-strip-item:last-child { border-bottom: none; }
  .funding-banner-inner { flex-direction: column; text-align: center; }
  .mobile-menu-toggle { display: flex; }
  .main-nav { display: none; }
  .header-phone  { display: none; }
  .header-cta    { display: none; }
  .hero-cta-row  { flex-direction: column; }
  .hero-cta-row .btn { text-align: center; }
  .hero-trust-row { flex-direction: column; gap: 8px; }
  .hero-ctas     { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .trust-bar     { flex-direction: column; gap: 10px; border-top: none; padding-top: 20px; }
  .trust-item    { border-right: none; padding-right: 0; margin-right: 0; }
  .atc-secondary-btns { flex-direction: column; }
  .mobile-sticky-atc { display: flex; }
  .product-sections { padding-bottom: 100px; }
  .features-grid { grid-template-columns: 1fr; }
  .related-grid  { grid-template-columns: repeat(2, 1fr); }
  .reviews-cta   { flex-direction: column; }
  .stat-section  { padding: 56px 0; }
  .stat-grid     { grid-template-columns: 1fr; }
  .cta-options   { flex-direction: column; align-items: center; }
  .ndis-inner    { grid-template-columns: 1fr; }
  .featured-product { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; text-align: center; }
  .newsletter-form  { flex-direction: column; }
  .guarantee-strip  { grid-template-columns: repeat(2,1fr); }
  .review-aggregate { flex-direction: column; gap: 16px; }
  .floating-help    { bottom: 16px; right: 16px; }
  .ann-bar-inner    { flex-direction: column; gap: 6px; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════════════════════════ */
.ann-bar {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-mid) 100%);
  color: #fff; font-size: 13px; font-weight: 500;
  padding: 9px 0;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1002; height: var(--ann-h);
  transition: height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
.ann-bar.hidden { height: 0; padding: 0; opacity: 0; pointer-events: none; }
.ann-bar-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.ann-bar-text { display: flex; align-items: center; gap: 10px; }
.ann-bar-text strong { font-weight: 700; }
.ann-bar-divider { opacity: 0.4; }
.ann-bar-link {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35);
  color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px;
  border-radius: var(--radius-pill); transition: background var(--transition);
  text-decoration: none; white-space: nowrap;
}
.ann-bar-link:hover { background: rgba(255,255,255,0.28); }
.ann-bar-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.6);
  cursor: pointer; font-size: 18px; line-height: 1; padding: 4px;
  transition: color var(--transition);
}
.ann-bar-close:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   HEADER SEARCH
═══════════════════════════════════════════════════════════════ */
.search-btn {
  display: flex; align-items: center; gap: 6px;
  background: none; border: 1.5px solid var(--border);
  color: var(--muted); font-size: 13px; font-family: var(--font-body);
  padding: 6px 14px; border-radius: var(--radius-pill);
  cursor: pointer; transition: all var(--transition);
  white-space: nowrap;
}
.search-btn:hover { border-color: var(--primary); color: var(--primary); }
.search-btn svg   { flex-shrink: 0; }

.search-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(18,11,37,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 120px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-modal {
  width: 100%; max-width: 640px; margin: 0 24px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(76,29,149,0.22);
  overflow: hidden;
}
.search-input-wrap {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--border-light);
}
.search-input-wrap svg { color: var(--muted); flex-shrink: 0; }
.search-input-wrap input {
  flex: 1; border: none; outline: none; font-size: 18px;
  font-family: var(--font-body); color: var(--text);
  background: transparent;
}
.search-input-wrap input::placeholder { color: var(--muted-light); }
.search-close-btn {
  background: var(--bg-cream); border: none; border-radius: var(--radius-sm);
  padding: 6px 10px; font-size: 12px; color: var(--muted);
  cursor: pointer; font-family: var(--font-body); white-space: nowrap;
}
.search-suggestions { padding: 16px; }
.search-suggestions-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.search-suggestion-list { display: flex; flex-direction: column; gap: 2px; }
.search-suggestion {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  text-decoration: none; color: var(--text);
  transition: background var(--transition);
}
.search-suggestion:hover { background: var(--primary-pale); }
.search-suggestion-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.search-suggestion-icon svg { width: 16px; height: 16px; color: var(--primary); }
.search-suggestion-name { font-size: 14px; font-weight: 600; color: var(--text); }
.search-suggestion-cat  { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CARD ENHANCEMENTS
═══════════════════════════════════════════════════════════════ */
.product-card-rating {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--muted); margin-bottom: 8px;
}
.product-card-stars { color: var(--star); font-size: 12px; letter-spacing: 1px; }
.product-card-price {
  font-size: 13px; color: var(--muted-light); margin-top: 4px;
}
.product-card-price strong { font-family: var(--font-heading); font-size: 20px; color: var(--text); font-weight: 700; }

/* Hover quick-view overlay */
.product-card { position: relative; }
.product-card-overlay {
  position: absolute; inset: 0; background: rgba(76,29,149,0.0);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.28s ease; z-index: 2;
  pointer-events: none;
}
.product-card:hover .product-card-overlay { opacity: 1; pointer-events: all; background: rgba(76,29,149,0.08); }
.product-card-overlay .btn {
  transform: translateY(6px);
  transition: transform 0.28s ease, opacity 0.28s ease;
  opacity: 0;
  box-shadow: 0 4px 16px rgba(76,29,149,0.3);
}
.product-card:hover .product-card-overlay .btn { transform: translateY(0); opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   AGGREGATE REVIEW DISPLAY
═══════════════════════════════════════════════════════════════ */
.review-aggregate {
  display: flex; align-items: center; gap: 32px;
  background: var(--bg-white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 24px 32px;
  margin-bottom: 40px; box-shadow: var(--shadow-sm);
}
.review-agg-score { text-align: center; flex-shrink: 0; }
.review-agg-number { font-family: var(--font-heading); font-size: 56px; font-weight: 700; color: var(--text); line-height: 1; }
.review-agg-stars  { color: var(--star); font-size: 20px; letter-spacing: 2px; margin: 4px 0; }
.review-agg-label  { font-size: 12px; color: var(--muted); }
.review-agg-bars   { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.review-bar-row    { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); }
.review-bar-label  { width: 36px; text-align: right; flex-shrink: 0; }
.review-bar-track  { flex: 1; height: 6px; background: var(--border-light); border-radius: 3px; overflow: hidden; }
.review-bar-fill   { height: 100%; border-radius: 3px; background: var(--star); transition: width 1s ease; }
.review-bar-count  { width: 28px; flex-shrink: 0; }
.review-agg-badges { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.review-platform   { display: flex; align-items: center; gap: 8px; background: var(--bg-cream); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 10px 14px; }
.review-platform-name  { font-size: 12px; font-weight: 600; color: var(--text); }
.review-platform-score { font-size: 11px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════
   GUARANTEE STRIP
═══════════════════════════════════════════════════════════════ */
.guarantee-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border-light);
  border: 1px solid var(--border-light); border-radius: var(--radius);
  overflow: hidden; margin-top: 40px;
}
.guarantee-item {
  background: var(--bg-white); padding: 20px 18px;
  display: flex; align-items: flex-start; gap: 12px;
}
.guarantee-icon {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: var(--primary-pale); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.guarantee-icon svg { width: 18px; height: 18px; color: var(--primary); }
.guarantee-label { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.guarantee-desc  { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
═══════════════════════════════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2D1854 100%);
  padding: 72px 0;
}
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.newsletter-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.newsletter-inner h2 {
  font-family: var(--font-heading); font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 10px;
}
.newsletter-inner p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.65; }
.newsletter-form {
  display: flex; gap: 8px; margin-top: 8px;
}
.newsletter-input {
  flex: 1; padding: 13px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08);
  color: #fff; font-size: 15px; font-family: var(--font-body);
  outline: none; transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.5); }
.newsletter-perks { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.newsletter-perk  { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.7); }
.newsletter-perk svg { color: #A78BFA; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   FLOATING HELP BUTTON
═══════════════════════════════════════════════════════════════ */
.floating-help {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.floating-help-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff;
  padding: 14px 20px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; font-family: var(--font-body);
  border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(124,58,237,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
.floating-help-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.5); }
.floating-help-pulse {
  width: 10px; height: 10px; background: #4ADE80; border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.4);
  animation: pulse-ring 2s ease infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.floating-tooltip {
  background: var(--bg-dark); color: #fff;
  font-size: 12px; font-weight: 500;
  padding: 6px 12px; border-radius: var(--radius-sm);
  white-space: nowrap; pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.08s; }
.fade-up-delay-2 { transition-delay: 0.16s; }
.fade-up-delay-3 { transition-delay: 0.24s; }
.fade-up-delay-4 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════════════════════════════
   SKIP TO CONTENT (ACCESSIBILITY)
═══════════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute; top: -40px; left: 16px;
  background: var(--primary); color: #fff;
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ═══════════════════════════════════════════════════════════════
   FOCUS STATES (ACCESSIBILITY)
═══════════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 3px;
}
button:focus-visible, a:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CARD — QUICK VIEW MODAL
═══════════════════════════════════════════════════════════════ */
.quick-view-modal {
  position: fixed; inset: 0; z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s;
}
.quick-view-modal.is-open { opacity: 1; visibility: visible; }
.quick-view-backdrop {
  position: absolute; inset: 0;
  background: rgba(18,11,37,0.6); backdrop-filter: blur(4px);
}
.quick-view-panel {
  position: relative; background: var(--bg-white);
  border-radius: var(--radius-lg); width: 100%; max-width: 840px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(76,29,149,0.25);
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.quick-view-img { background: var(--primary-pale); min-height: 320px; }
.quick-view-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quick-view-info { padding: 36px; display: flex; flex-direction: column; justify-content: space-between; }
.quick-view-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-cream); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted); transition: background var(--transition);
  z-index: 1;
}
.quick-view-close:hover { background: var(--border); }
.quick-view-category { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.quick-view-name { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
.quick-view-stars { color: var(--star); font-size: 15px; margin-bottom: 14px; }
.quick-view-price { font-family: var(--font-heading); font-size: 30px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.quick-view-finance { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.quick-view-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.quick-view-ndis { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--success); font-weight: 500; margin-bottom: 24px; }
.quick-view-ndis svg { color: var(--success); }
.quick-view-btns { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 768px) {
  .quick-view-panel { grid-template-columns: 1fr; }
  .quick-view-img   { min-height: 220px; }
}

/* ═══════════════════════════════════════════════════════════════
   PRESS / MEDIA STRIP
═══════════════════════════════════════════════════════════════ */
.press-strip {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}
.press-strip-inner {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; justify-content: center;
}
.press-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted-light);
  white-space: nowrap; flex-shrink: 0;
}
.press-logos { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.press-logo {
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  color: var(--muted-light); letter-spacing: -0.02em;
  transition: color var(--transition); white-space: nowrap;
  opacity: 0.55;
}
.press-logo:hover { opacity: 0.9; color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   CONDITIONS WE HELP
═══════════════════════════════════════════════════════════════ */
.conditions-section { background: var(--bg-cream); }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 1024px) { .conditions-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .conditions-grid { grid-template-columns: repeat(2, 1fr); } }

.condition-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: default;
  transition: all 0.22s ease;
}
.condition-card:hover {
  border-color: var(--primary-mid);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.condition-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.condition-icon svg { color: var(--primary); }
.condition-card h4 {
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.condition-card p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   SLEEP POSITIONS SECTION
═══════════════════════════════════════════════════════════════ */
.positions-section { background: var(--bg-dark); overflow: hidden; }
.positions-section .section-eyebrow { color: rgba(255,255,255,0.5); }
.positions-section .section-title { color: #fff; }
.positions-section .section-title em { background: linear-gradient(135deg,#C4B5FD,#A78BFA); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.positions-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
@media (max-width: 900px) { .positions-layout { grid-template-columns: 1fr; gap: 32px; } }

.position-tabs { display: flex; flex-direction: column; gap: 12px; }
.position-tab {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px; border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.08);
  cursor: pointer; transition: all 0.25s ease;
  background: rgba(255,255,255,0.03);
}
.position-tab:hover { border-color: rgba(139,92,246,0.4); background: rgba(139,92,246,0.07); }
.position-tab.active {
  border-color: var(--primary-mid);
  background: rgba(124,58,237,0.15);
}
.position-tab-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(139,92,246,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.position-tab.active .position-tab-icon { background: var(--primary); }
.position-tab-icon svg { color: rgba(255,255,255,0.7); }
.position-tab.active .position-tab-icon svg { color: #fff; }
.position-tab-body h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.position-tab-body p  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; margin: 0; }

.position-display {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  min-height: 320px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.bed-diagram { width: 100%; max-width: 360px; margin: 0 auto 24px; }
.bed-diagram svg { width: 100%; height: auto; }
.position-label {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.position-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 280px; }

/* ═══════════════════════════════════════════════════════════════
   MODEL COMPARISON TABLE
═══════════════════════════════════════════════════════════════ */
.compare-section { background: var(--bg-cream-alt); }
.compare-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 48px; }
.compare-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-width: 620px;
}
.compare-table th {
  padding: 24px 20px; text-align: center;
  font-family: var(--font-heading); font-size: 16px;
  border-bottom: 2px solid var(--border-light);
}
.compare-table th:first-child { text-align: left; padding-left: 28px; }
.compare-th-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.compare-th-name  { display: block; color: var(--text); }
.compare-th-price { display: block; font-size: 13px; color: var(--muted); font-family: var(--font-body); font-weight: 400; margin-top: 4px; }
.compare-table th.featured { background: var(--primary-pale); border-top: 3px solid var(--primary); }
.compare-table th.featured .compare-th-name { color: var(--primary); }

.compare-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border-light);
  text-align: center; font-size: 14px; color: var(--text);
  vertical-align: middle;
}
.compare-table td:first-child { text-align: left; padding-left: 28px; color: var(--muted); font-size: 13px; font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--primary-pale); }
.compare-table td.featured { background: rgba(124,58,237,0.04); }
.compare-check { color: var(--success); font-size: 16px; }
.compare-dash  { color: var(--muted-light); }
.compare-table tfoot td { padding: 20px; border-top: 2px solid var(--border-light); background: var(--bg-cream); }
.compare-table tfoot td:first-child { border-top: 2px solid var(--border-light); }

/* ═══════════════════════════════════════════════════════════════
   FINANCE STRIP
═══════════════════════════════════════════════════════════════ */
.finance-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
  padding: 32px 0;
}
.finance-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.finance-strip-text h3 { font-family: var(--font-heading); font-size: 22px; color: #fff; margin-bottom: 6px; }
.finance-strip-text p  { font-size: 14px; color: rgba(255,255,255,0.65); }
.finance-options { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.finance-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  color: #fff; font-size: 13px; font-weight: 600;
}
.finance-pill-logo {
  font-size: 14px; font-weight: 900; letter-spacing: -0.03em;
}

/* ═══════════════════════════════════════════════════════════════
   DELIVERY PROCESS (Product Page)
═══════════════════════════════════════════════════════════════ */
.delivery-section { background: var(--bg-cream); }
.delivery-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 48px; position: relative;
}
@media (max-width: 900px) { .delivery-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .delivery-steps { grid-template-columns: 1fr; } }

.delivery-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
  z-index: 0;
}
@media (max-width: 900px) { .delivery-steps::before { display: none; } }

.delivery-step {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  position: relative; z-index: 1;
  transition: box-shadow 0.2s;
}
.delivery-step:hover { box-shadow: var(--shadow-card); }
.delivery-step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: #fff;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(124,58,237,0.35);
}
.delivery-step h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.delivery-step p  { font-size: 13px; color: var(--muted); line-height: 1.6; }
.delivery-step-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--success-light); color: var(--success);
  border-radius: var(--radius-pill); padding: 3px 10px; margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   WHAT'S IN THE BOX (Product Page)
═══════════════════════════════════════════════════════════════ */
.inbox-section { background: var(--bg-white); }
.inbox-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
@media (max-width: 700px) { .inbox-grid { grid-template-columns: 1fr 1fr; } }

.inbox-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px; border-radius: var(--radius);
  border: 1.5px solid var(--border-light);
  transition: border-color 0.2s;
}
.inbox-item:hover { border-color: var(--primary-mid); }
.inbox-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--primary-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.inbox-icon svg { color: var(--primary); }
.inbox-item h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.inbox-item p  { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   CLINICAL BENEFITS (Product Page)
═══════════════════════════════════════════════════════════════ */
.clinical-section { background: var(--bg-cream-alt); }
.clinical-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
@media (max-width: 768px) { .clinical-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .clinical-grid { grid-template-columns: 1fr; } }

.clinical-card {
  background: var(--bg-white); border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  padding: 24px;
  transition: box-shadow 0.2s;
}
.clinical-card:hover { box-shadow: var(--shadow-card); }
.clinical-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.clinical-card-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--primary-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.clinical-card-icon svg { color: var(--primary); }
.clinical-card h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--text); margin: 0; }
.clinical-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   FINANCING CALCULATOR (Product Page inline)
═══════════════════════════════════════════════════════════════ */
.finance-calc {
  background: var(--primary-pale); border-radius: var(--radius);
  padding: 20px; margin-bottom: 20px;
  border: 1.5px solid var(--border);
}
.finance-calc-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.finance-calc-options { display: flex; gap: 8px; flex-wrap: wrap; }
.finance-calc-option {
  flex: 1; min-width: 80px;
  border: 1.5px solid var(--border);
  background: var(--bg-white); border-radius: var(--radius-sm);
  padding: 10px 8px; text-align: center; cursor: pointer;
  transition: all 0.18s;
}
.finance-calc-option:hover { border-color: var(--primary-mid); }
.finance-calc-option.active { border-color: var(--primary); background: var(--primary-light); }
.finance-calc-option .fc-amount { font-size: 16px; font-weight: 800; color: var(--primary); display: block; }
.finance-calc-option .fc-label  { font-size: 10px; color: var(--muted); display: block; margin-top: 2px; }
.finance-calc-provider {
  display: flex; align-items: center; gap: 12px;
  margin-top: 14px; flex-wrap: wrap;
}
.finance-provider-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 5px 12px;
  font-size: 12px; font-weight: 700; color: var(--text);
}
