/* ============================================================
   SELECT CLEANING — Shared Stylesheet
   ============================================================ */

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

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --primary: #42b6e6;
  --primary-dark: #2a9fd0;
  --primary-light: #e8f6fd;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-600: #16a34a;
  --green-700: #15803d;
  --yellow-100: #fef9c3;
  --yellow-600: #ca8a04;
  --red-50: #fef2f2;
  --red-200: #fecaca;
  --red-500: #ef4444;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.16);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 9999px;
  --nav-h: 80px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font: inherit; }
ul { list-style: none; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container--narrow { max-width: 800px; }
.container--mid   { max-width: 900px; }
.flex-grow { flex: 1; }
.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.navbar__logo img { height: 40px; width: auto; }
.navbar__links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.navbar__links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color .2s;
}
.navbar__links a:hover, .navbar__links a.active {
  color: var(--primary);
}
.navbar__links a.active { font-weight: 700; }
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: var(--white);
  padding: .5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 600;
  transition: background .2s, transform .2s;
  border: none;
  cursor: pointer;
}
.btn-phone:hover { background: var(--primary-dark); transform: translateY(-1px); }
.navbar__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate-600);
  padding: .5rem;
}
.navbar__toggle svg { width: 24px; height: 24px; }
.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem;
  background: var(--white);
  border-top: 1px solid var(--slate-100);
  box-shadow: var(--shadow);
}
.navbar__mobile.is-open { display: flex; }
.navbar__mobile a {
  display: block;
  padding: .625rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-600);
}
.navbar__mobile a:hover, .navbar__mobile a.active {
  background: var(--slate-50);
  color: var(--primary);
  font-weight: 700;
}
.btn-phone--mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--primary);
  color: var(--white);
  padding: .75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: .25rem;
}

@media (min-width: 768px) {
  .navbar__links { display: flex; }
  .navbar__toggle { display: none; }
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-100);
  color: var(--slate-600);
  padding: 4rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.footer__brand img { width: 200px; margin-bottom: 1rem; }
.footer__brand p { font-size: .875rem; color: var(--slate-700); line-height: 1.7; }
.footer__col h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .875rem; }
.footer__col ul li a {
  font-size: .875rem;
  color: var(--slate-600);
  transition: color .2s;
}
.footer__col ul li a:hover { color: var(--primary); }
.footer__bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--slate-200);
  text-align: center;
  font-size: .75rem;
  color: var(--slate-500);
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-align: center;
  line-height: 1.2;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(66,182,230,.3);
}
.btn--outline {
  background: transparent;
  color: var(--slate-600);
  border-color: var(--slate-200);
}
.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.btn--ghost {
  background: transparent;
  color: var(--slate-500);
  border: none;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
}
.btn--ghost:hover { color: var(--primary); background: var(--primary-light); }
.btn--pill {
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  padding: .625rem 1.25rem;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn--pill:hover { background: rgba(66,182,230,.2); }
.btn--lg { padding: .9rem 2.25rem; font-size: 1.125rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--cta {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 1.25rem;
  padding: 1rem 2.5rem;
  font-weight: 700;
}
.btn--cta:hover { background: var(--primary-dark); box-shadow: var(--shadow-xl); transform: scale(1.02); }

/* ── Hero Section ───────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, rgba(66,182,230,.15) 100%);
  padding: 3rem 0 8rem;
  position: relative;
  overflow: hidden;
}
.hero__blob1 {
  position: absolute; top: 0; right: 0;
  width: 600px; height: 600px;
  background: rgba(66,182,230,.08);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(30%, -50%);
  pointer-events: none;
}
.hero__blob2 {
  position: absolute; bottom: 0; left: 0;
  width: 500px; height: 500px;
  background: rgba(66,182,230,.08);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-25%, 33%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 0 8rem;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  color: var(--slate-600);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}
/* Service cards floating on hero bottom */
.hero__cards {
  position: relative;
  z-index: 2;
  margin-top: -6rem;
}
.service-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .service-cards-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.service-card__img {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.service-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(66,182,230,.15);
  transition: background .3s;
}
.service-card:hover .service-card__img::after { background: transparent; }
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.service-card:hover .service-card__img img { transform: scale(1.1); }
.service-card__body {
  padding: 2rem;
  text-align: center;
}
.service-card__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: background .2s, color .2s;
}
.service-card:hover .service-card__icon {
  background: var(--primary);
  color: var(--white);
}
.service-card__title { font-size: 1.375rem; font-weight: 700; margin-bottom: .5rem; }
.service-card__desc { font-size: .9rem; color: var(--slate-500); margin-bottom: 1.5rem; }
.service-card__link {
  position: absolute; inset: 0;
  z-index: 1;
}

/* ── Inner page hero ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #ffffff 0%, #eff8fd 50%, rgba(66,182,230,.15) 100%);
  padding: 3rem 0 4rem;
}
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .page-hero__grid { grid-template-columns: 1fr 1fr; }
}
.page-hero__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 280px;
}
@media (min-width: 768px) {
  .page-hero__img { height: 400px; }
}
.page-hero__img img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  padding: .5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.page-hero__tag:hover { background: rgba(66,182,230,.2); }
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--slate-800);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.page-hero__desc { font-size: 1.125rem; color: var(--slate-600); margin-bottom: 2rem; }
.page-hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.checklist { display: flex; flex-direction: column; gap: 1.25rem; }
.checklist__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.checklist__icon {
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
}
.checklist__icon svg { width: 18px; height: 18px; stroke-width: 3; }
.checklist__text { font-size: 1.125rem; font-weight: 700; color: var(--slate-800); }

/* ── Quick Nav Strip ─────────────────────────────────────── */
.quick-nav {
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: var(--nav-h);
  z-index: 20;
}
.quick-nav__inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.quick-nav__inner::-webkit-scrollbar { display: none; }

/* ── Section ─────────────────────────────────────────────── */
.section { padding: 4rem 0; }
.section--white { background: var(--white); }
.section--slate { background: var(--slate-50); }
.section--gray  { background: #f9fafb; }
.section__heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section__heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: .75rem;
}
.section__heading p { color: var(--slate-500); font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ── Trust Indicators (Home) ─────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
.trust-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xl); }
.trust-img img { width: 100%; }
.feature-list { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.feature-item:hover { background: var(--primary-light); }
.feature-item__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feature-item__icon svg { width: 24px; height: 24px; }
.feature-item__title { font-size: 1.125rem; font-weight: 700; margin-bottom: .25rem; }
.feature-item__desc { color: var(--slate-500); line-height: 1.6; }

/* Environment Section (Home) */
.env-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .env-grid { grid-template-columns: 1fr 1fr; }
}
.env-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--green-100);
  color: var(--green-600);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.env-icon svg { width: 22px; height: 22px; }
.env-text h2 { font-size: 1.875rem; font-weight: 800; margin-bottom: 1rem; }
.env-text p { color: var(--slate-600); line-height: 1.7; margin-bottom: 1rem; }
.env-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-100);
}
.env-card h3 {
  display: flex; align-items: center; gap: .75rem;
  font-size: 1.125rem; font-weight: 700; margin-bottom: .75rem;
}
.env-card__icon {
  width: 34px; height: 34px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.env-card__icon svg { width: 18px; height: 18px; }
.env-card p { color: var(--slate-600); line-height: 1.7; }
.env-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.env-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.25), transparent);
}
.env-img-wrap img {
  width: 100%;
  transition: transform .7s;
}
.env-img-wrap:hover img { transform: scale(1.04); }

/* ── Accordion ───────────────────────────────────────────── */
.accordion { width: 100%; }
.accordion__item {
  border-bottom: 1px solid var(--slate-200);
}
.accordion__item:first-child { border-top: 1px solid var(--slate-200); }
.accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  transition: color .2s;
}
.accordion__trigger:hover { color: var(--primary-dark); }
.accordion__trigger-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.accordion__trigger-inner svg { width: 20px; height: 20px; flex-shrink: 0; }
.accordion__chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform .25s;
}
.accordion__item.is-open .accordion__chevron { transform: rotate(180deg); }
.accordion__content {
  display: none;
  padding: 0 0 1.25rem 0;
  color: var(--slate-500);
  line-height: 1.7;
  font-size: .975rem;
}
.accordion__content.is-open { display: block; }
.accordion__content p + p { margin-top: .75rem; }

/* Suburb tags in accordion */
.suburb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding-top: .75rem;
}
.suburb-tag {
  font-size: .8125rem;
  background: var(--slate-50);
  color: var(--slate-600);
  padding: .25rem .625rem;
  border-radius: .375rem;
  border: 1px solid var(--slate-100);
}
.area-trigger-inner {
  display: flex; align-items: center; gap: .75rem;
}
.area-pin {
  width: 34px; height: 34px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.area-pin svg { width: 18px; height: 18px; color: var(--primary); }
.area-label { display: flex; flex-direction: column; }
.area-label span { font-weight: 600; }
.area-label small { font-size: .8rem; color: var(--slate-400); font-weight: 400; display: none; }
@media (min-width: 640px) { .area-label small { display: block; } }

/* ── Reviews Carousel ───────────────────────────────────── */
.reviews-section { padding: 4rem 0; background: var(--slate-50); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px)  { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s;
}
.review-card:hover { box-shadow: var(--shadow); }
.stars { display: flex; gap: 2px; color: #facc15; margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.review-card__text {
  color: var(--slate-600);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}
.review-card__author { font-weight: 700; color: var(--slate-900); }
.review-card__location { font-size: .875rem; color: var(--slate-500); }
.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.reviews-nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--slate-200);
  background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.reviews-nav button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.reviews-nav svg { width: 16px; height: 16px; }

/* ── Forms ─────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-100);
  overflow: hidden;
  position: relative;
}
.form-card__badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--green-100);
  color: var(--green-700);
  font-size: .75rem;
  font-weight: 700;
  padding: .375rem .875rem;
  border-radius: 0 0 0 var(--radius-sm);
  display: flex; align-items: center; gap: .375rem;
  border-left: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0;
}
.form-card__badge svg { width: 14px; height: 14px; }
.form-card__header {
  background: rgba(248,250,252,.5);
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--slate-100);
}
.form-card__header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .375rem;
}
.form-card__header p { color: var(--slate-500); font-size: .9375rem; }
.form-card__body { padding: 1.75rem 2rem 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: .5rem;
}
.form-label .req { color: var(--red-500); }
.form-input {
  display: block;
  width: 100%;
  height: 2.75rem;
  padding: 0 .875rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .9375rem;
  color: var(--slate-800);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input::placeholder { color: var(--slate-400); }
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(66,182,230,.15);
}
.form-input.is-error { border-color: var(--red-500); }
.form-input.is-error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,.15); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-error { font-size: .8125rem; color: var(--red-500); margin-top: .375rem; }
.form-help { font-size: .75rem; text-align: center; color: var(--slate-400); margin-top: 1rem; }

/* Suburb autocomplete */
.suburb-wrap { position: relative; }
.suburb-prefix {
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  pointer-events: none;
}
.suburb-prefix svg { width: 18px; height: 18px; }
.suburb-input { padding-left: 2.5rem !important; }
.suburb-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  max-height: 220px;
  overflow-y: auto;
  z-index: 30;
}
.suburb-suggestions.is-open { display: block; }
.suburb-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  font-size: .9375rem;
  cursor: pointer;
  transition: background .15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.suburb-option:hover { background: var(--slate-50); color: var(--primary); }
.suburb-option svg { width: 16px; height: 16px; color: var(--green-600); opacity: 0; }
.suburb-option:hover svg { opacity: 1; }
.suburb-no-result { padding: .75rem 1rem; font-size: .875rem; color: var(--slate-500); text-align: center; }

/* Frequency tiles */
.freq-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.freq-tile {
  position: relative;
  border: 2px solid var(--slate-100);
  border-radius: var(--radius-sm);
  padding: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color .2s, background .2s;
}
.freq-tile:hover { border-color: var(--slate-200); background: var(--slate-50); }
.freq-tile input { position: absolute; opacity: 0; width: 0; height: 0; }
.freq-tile.is-selected {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}
.freq-tile.is-selected::after {
  content: '';
  position: absolute;
  top: .5rem; right: .5rem;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.freq-tile__name { font-weight: 700; }
.freq-tile__note { font-size: .75rem; color: var(--slate-400); margin-top: .25rem; }
.freq-tile.is-selected .freq-tile__note { color: var(--primary); }

/* Commercial frequency select */
.form-select {
  display: block;
  width: 100%;
  height: 2.75rem;
  padding: 0 .875rem;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .9375rem;
  color: var(--slate-800);
  outline: none;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.5rem;
}
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(66,182,230,.15);
}

/* Form submit button */
.btn--submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  height: 3.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .625rem;
  margin-top: 1.25rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(66,182,230,.3);
}
.btn--submit:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(66,182,230,.4);
}
.btn--submit:disabled { opacity: .6; cursor: not-allowed; }
.btn--submit .spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Form feedback */
.form-alert-error {
  display: flex; align-items: flex-start; gap: .5rem;
  background: var(--red-50);
  border: 1px solid var(--red-200);
  border-radius: var(--radius-sm);
  padding: .75rem;
  font-size: .875rem;
  color: #b91c1c;
  margin-top: 1rem;
}
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success__icon {
  width: 64px; height: 64px;
  background: var(--green-100);
  color: var(--green-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.form-success__icon svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
.form-success p { color: var(--slate-500); max-width: 380px; margin-bottom: 2rem; }

/* Franchise confirmations */
.confirmations-box {
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
}
.confirm-label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
  font-size: .9rem;
  color: var(--slate-600);
}
.confirm-label input { margin-top: 2px; cursor: pointer; }

/* ── White card box ──────────────────────────────────────── */
.card-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
}
.card-box--slate {
  background: var(--slate-50);
}

/* ── Check list (services etc.) ─────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-list__item { display: flex; align-items: center; gap: .75rem; }
.check-icon {
  width: 26px; height: 26px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.check-icon svg { width: 16px; height: 16px; }

/* ── Two col layout ─────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.two-col__img img {
  width: 100%; height: 280px;
  object-fit: cover;
  transition: transform .5s;
}
@media (min-width: 768px) { .two-col__img img { height: 400px; } }
.two-col__img:hover img { transform: scale(1.02); }
.order-first { order: -1; }
@media (min-width: 1024px) { .order-first-lg { order: -1; } }

/* ── Benefit card grid ─────────────────────────────────── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  text-align: center;
}
.benefit-card h3 { font-size: .9375rem; font-weight: 700; margin-bottom: .375rem; }
.benefit-card p { font-size: .8125rem; color: var(--slate-500); }

/* ── Pricing box ────────────────────────────────────────── */
.pricing-box {
  background: var(--primary-light);
  border: 1px solid rgba(66,182,230,.2);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.pricing-box p { font-size: 1.125rem; color: var(--slate-700); line-height: 1.7; }
.pricing-box strong { color: var(--primary); }

/* ── Security items ─────────────────────────────────────── */
.security-list { display: flex; flex-direction: column; gap: 1.5rem; }
.security-item { display: flex; gap: 1rem; }
.security-item__icon {
  width: 40px; height: 40px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
  margin-top: .25rem;
}
.security-item__icon svg { width: 20px; height: 20px; }
.security-item p { font-size: 1.0625rem; color: var(--slate-700); line-height: 1.7; }

/* ── Blog / resource content ─────────────────────────────── */
.resource-factors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .resource-factors { grid-template-columns: 1fr 1fr; } }
.factor-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}
.factor-card__header { display: flex; align-items: center; gap: .75rem; margin-bottom: .625rem; }
.factor-card__icon {
  width: 32px; height: 32px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.factor-card__icon svg { width: 16px; height: 16px; }
.factor-card h5 { font-size: .9375rem; font-weight: 700; }
.factor-card p { font-size: .875rem; line-height: 1.6; }
.blog-highlight {
  background: var(--primary-light);
  border: 1px solid rgba(66,182,230,.2);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
  font-weight: 600;
  color: var(--primary);
}
.blog-highlight p { color: var(--slate-700); margin-top: .25rem; font-weight: 400; }
.resource-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.resource-step { display: flex; gap: 1rem; }
.resource-step__icon {
  width: 40px; height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: .25rem;
}
.resource-step__icon svg { width: 20px; height: 20px; }
.resource-step h5 { font-size: 1.0625rem; font-weight: 700; margin-bottom: .375rem; }
.resource-step p { color: var(--slate-600); font-size: .9375rem; }

/* ── Franchise Award ─────────────────────────────────────── */
.award-box {
  background: linear-gradient(135deg, #ffffff, var(--primary-light));
  border: 1px solid rgba(66,182,230,.15);
  border-radius: 1.5rem;
  padding: 3rem;
  overflow: hidden;
}
.award-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--yellow-100);
  color: var(--yellow-600);
  font-size: .8125rem;
  font-weight: 700;
  padding: .375rem .875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}
.award-badge svg { width: 15px; height: 15px; }
.award-divider { width: 80px; height: 6px; background: var(--primary); border-radius: 3px; margin: 1.25rem 0; }
.award-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
}
.award-star {
  width: 40px; height: 40px;
  background: var(--yellow-100);
  color: var(--yellow-600);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.award-star svg { width: 22px; height: 22px; fill: currentColor; }
.award-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.award-img img {
  max-height: 300px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  transition: transform .5s;
}
.award-img img:hover { transform: scale(1.04); }
.award-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .award-grid { grid-template-columns: 1fr 1fr; } }

/* ── Video embed ─────────────────────────────────────────── */
.video-embed {
  background: var(--slate-900);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-embed__title {
  padding: 1rem 1.25rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--white);
  background: var(--slate-800);
}
.video-embed__frame {
  position: relative;
  padding-bottom: 56.25%;
}
.video-embed__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .video-grid { grid-template-columns: 1fr 1fr; } }

/* ── Why buy grid ────────────────────────────────────────── */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
@media (min-width: 640px) { .reason-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .reason-grid { grid-template-columns: repeat(4, 1fr); } }
.reason-item {
  display: flex; align-items: flex-start; gap: .625rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-sm);
  padding: .875rem;
  transition: box-shadow .2s;
}
.reason-item:hover { box-shadow: var(--shadow); }
.reason-dot {
  width: 20px; height: 20px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-600);
  flex-shrink: 0;
  margin-top: 1px;
}
.reason-dot svg { width: 12px; height: 12px; }
.reason-item span { font-size: .875rem; font-weight: 500; color: var(--slate-700); line-height: 1.4; }

/* ── Guarantee / Training items ─────────────────────────── */
.guarantee-list { display: flex; flex-direction: column; gap: 1.5rem; }
.guarantee-item { display: flex; gap: 1rem; }
.guarantee-icon {
  width: 40px; height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: .25rem;
}
.guarantee-icon svg { width: 20px; height: 20px; }
.guarantee-item h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: .375rem; }
.guarantee-item p { color: var(--slate-600); line-height: 1.6; }

/* Training */
.training-card__header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.training-icon {
  width: 40px; height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.training-icon svg { width: 22px; height: 22px; }

/* Finance items */
.finance-items { display: flex; flex-direction: column; gap: .625rem; }
.finance-item {
  display: flex; align-items: center; gap: .75rem;
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
}
.finance-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.finance-item span { font-size: .9375rem; font-weight: 500; color: var(--slate-700); }

/* Finance icon variants */
.icon-blue  { color: #3b82f6; }
.icon-green { color: var(--green-600); }

/* ── Privacy Policy ──────────────────────────────────────── */
.policy-sections { display: flex; flex-direction: column; gap: 3rem; }
.policy-section { display: flex; gap: 1.25rem; }
.policy-icon-wrap {
  flex-shrink: 0;
  margin-top: .25rem;
  padding: .5rem;
  background: rgba(66,182,230,.06);
  border-radius: var(--radius-sm);
  color: var(--primary);
}
.policy-icon-wrap svg { width: 24px; height: 24px; }
.policy-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: .875rem; color: var(--slate-900); }
.policy-section p { color: var(--slate-600); line-height: 1.8; font-size: 1.0625rem; }
.policy-section p + p { margin-top: .75rem; }
.policy-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) { .policy-cards { grid-template-columns: 1fr 1fr; } }
.policy-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.policy-card h4 { font-size: .9375rem; font-weight: 700; margin-bottom: .5rem; }
.policy-card p { font-size: .875rem; color: var(--slate-600); }

/* ── Scroll animations ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: none;
}
.fade-in {
  opacity: 0;
  transition: opacity .6s ease;
}
.fade-in.is-visible { opacity: 1; }

/* ── Utilities ───────────────────────────────────────────── */
.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.font-bold  { font-weight: 700; }
.font-heavy { font-weight: 800; }
.mt-2  { margin-top: .5rem; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-2  { margin-bottom: .5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.scroll-anchor {
  scroll-margin-top: calc(var(--nav-h) + 60px);
}
