/* ==========================================================================
   Excommunicado Security Group — style.css
   Mobile-first, vanilla, no frameworks.
   ========================================================================== */

:root {
  /* Backgrounds */
  --white: #ffffff;
  --off-white: #f8fafc;
  --surface: #f1f5f9;

  /* Dark sections */
  --dark: #0f172a;
  --dark-secondary: #1e293b;

  /* Accent — gold/amber */
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-light: #fef3c7;

  /* Text */
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --text-on-dark: #f8fafc;
  --text-muted-on-dark: #94a3b8;

  /* Borders */
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  /* Status */
  --success: #16a34a;
  --success-light: #dcfce7;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);

  --maxw: 1180px;
  --radius: 6px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-dark { background: var(--dark); color: var(--text-on-dark); }
.section-surface { background: var(--surface); }
.section-white { background: var(--white); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin-bottom: 14px;
}
.section-dark .section-label { color: var(--accent); }
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 40px;
}
.section-dark .section-sub { color: var(--text-muted-on-dark); }
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.2;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--text-on-dark);
  border: 2px solid rgba(255,255,255,0.3);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  line-height: 1.2;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn-call {
  background: var(--success);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  line-height: 1.2;
}
.btn-call:hover { background: #15803d; }
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s, height 0.2s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  height: 72px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: height 0.2s;
}
.site-header.scrolled .header-inner { height: 64px; }
.logo { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; }
.logo-shield { font-size: 22px; line-height: 1; }
.logo-text { font-size: clamp(15px, 4.2vw, 19px); font-weight: 800; color: var(--dark); letter-spacing: -0.02em; white-space: nowrap; }

.nav-links { display: none; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent-hover); }

.header-cta { display: none; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  white-space: nowrap;
}
.header-phone:hover { color: var(--accent-hover); }
.phone-icon { font-size: 15px; }

/* Mobile menu button */
.mobile-menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(320px, 84vw);
  background: var(--dark);
  color: var(--text-on-dark);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1100;
  padding: 88px 24px 32px;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a {
  padding: 14px 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-drawer nav a:hover { color: var(--accent); }
.mobile-drawer .mobile-cta {
  margin-top: 18px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius);
  border-bottom: none;
}
.mobile-drawer .mobile-call {
  margin-top: 10px;
  background: var(--success);
  color: #fff;
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius);
  border-bottom: none;
}
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1050;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }

/* ---------- Float call ---------- */
.float-call {
  position: fixed;
  bottom: 20px;
  right: 18px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  display: none;
  align-items: center;
  gap: 8px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(245,158,11,0.18), transparent 45%),
    radial-gradient(circle at 95% 90%, rgba(245,158,11,0.10), transparent 40%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(circle at 75% 40%, #000, transparent 70%);
  mask-image: radial-gradient(circle at 75% 40%, #000, transparent 70%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 72px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  min-height: 78vh;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 7px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted-on-dark);
  max-width: 600px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-on-dark);
}
.trust-badges span { display: inline-flex; align-items: center; gap: 7px; }
.trust-badges .tick { color: var(--accent); font-weight: 800; }

/* hero visual */
.hero-visual {
  display: none;
  position: relative;
  z-index: 1;
}
.hero-card {
  background: rgba(30,41,59,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { font-size: 18px; margin-bottom: 16px; color: #fff; }
.hero-card .hc-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted-on-dark); font-size: 15px;
}
.hero-card .hc-row:last-child { border-bottom: none; }
.hero-card .hc-icon { font-size: 22px; }

/* page hero (interior, smaller) */
.page-hero { background: var(--dark); color: var(--text-on-dark); position: relative; overflow: hidden; }
.page-hero .hero-bg { z-index: 0; }
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  padding: 56px 20px 60px;
}
.page-hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em;
  margin-bottom: 18px; max-width: 760px;
}
.page-hero .hero-sub { margin-bottom: 26px; }

/* breadcrumb */
.breadcrumb { font-size: 13px; color: var(--text-muted-on-dark); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-muted-on-dark); }

/* ---------- Trust bar (stats) ---------- */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 16px;
  text-align: center;
}
.stat .stat-num { font-size: clamp(30px, 5vw, 42px); font-weight: 800; color: var(--accent-hover); line-height: 1; }
.stat .stat-label { font-size: 14px; color: var(--text-secondary); margin-top: 8px; font-weight: 500; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.15s, box-shadow 0.15s, border-left-color 0.15s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent);
}
.card-icon {
  font-size: 28px;
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-light);
  border-radius: 10px;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.service-card p { font-size: 15px; color: var(--text-secondary); margin-bottom: 16px; flex-grow: 1; }
.card-link { font-weight: 600; font-size: 15px; color: var(--accent-hover); display: inline-flex; align-items: center; gap: 6px; }
.card-link:hover { gap: 10px; }

/* why-choose features */
.feature {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--dark-secondary);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
}
.feature .f-num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(245,158,11,0.15);
  color: var(--accent);
  border-radius: 8px;
  font-weight: 800;
}
.feature h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; color: #fff; }
.feature p { font-size: 14.5px; color: var(--text-muted-on-dark); }

/* industries */
.industry-tile {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.industry-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.industry-tile .it-icon { font-size: 30px; margin-bottom: 10px; }
.industry-tile h3 { font-size: 16px; font-weight: 600; }

/* steps */
.steps { display: grid; gap: 20px; grid-template-columns: 1fr; counter-reset: step; }
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
}
.step .step-num {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--dark);
  font-weight: 800; border-radius: 50%;
  margin-bottom: 14px;
}
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--text-secondary); }

/* check list */
.check-list { display: grid; gap: 14px; grid-template-columns: 1fr; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; color: var(--text-secondary);
}
.check-list .tick {
  flex-shrink: 0;
  color: var(--success); font-weight: 800; font-size: 18px;
  line-height: 1.5;
}
.check-list strong { color: var(--text); font-weight: 600; }
.section-dark .check-list li { color: var(--text-muted-on-dark); }
.section-dark .check-list strong { color: #fff; }

/* prose */
.prose { max-width: 760px; }
.prose p { margin-bottom: 18px; color: var(--text-secondary); }
.prose h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 700; margin: 36px 0 14px; letter-spacing: -0.02em; }
.prose h3 { font-size: 20px; font-weight: 600; margin: 24px 0 10px; }
.prose ul { margin: 0 0 18px 0; display: grid; gap: 10px; }
.prose ul li { display: flex; gap: 10px; color: var(--text-secondary); }
.prose ul li::before { content: "✓"; color: var(--success); font-weight: 800; }
.prose a { color: var(--accent-hover); font-weight: 600; text-decoration: underline; }

/* suburb grid */
.suburb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}
.suburb-grid li {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; color: var(--text-secondary);
}
.suburb-grid li::before { content: "📍"; font-size: 13px; }

/* testimonials */
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.testimonial-card .stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 16px; color: var(--text); margin-bottom: 18px; line-height: 1.6; }
.testimonial-card cite { font-style: normal; font-size: 14px; color: var(--text-secondary); font-weight: 500; }
.testimonial-card cite strong { display: block; color: var(--text); font-weight: 600; }

/* ---------- Quote form ---------- */
.quote-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  margin: 0 auto;
  color: var(--text);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-field label { font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--text); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}
.form-field.error input,
.form-field.error select,
.form-field.error textarea { border-color: #dc2626; }
.field-error { color: #dc2626; font-size: 12.5px; margin-top: 5px; display: none; }
.form-field.error .field-error { display: block; }
.form-submit { width: 100%; margin-top: 6px; }
.form-note { font-size: 12.5px; color: var(--text-muted); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .fs-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--success-light); color: var(--success);
  font-size: 32px; border-radius: 50%;
}
.form-success h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.form-success p { color: var(--text-secondary); margin-bottom: 20px; }

/* two-col contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.contact-info .ci-item { margin-bottom: 22px; }
.contact-info .ci-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.contact-info .ci-value { font-size: 18px; font-weight: 600; }
.contact-info .ci-value a:hover { color: var(--accent-hover); }
.contact-phone-big { font-size: clamp(26px, 5vw, 34px); font-weight: 800; color: var(--accent-hover); }

/* split CTA strip */
.cta-strip {
  background: var(--accent);
  color: var(--dark);
}
.cta-strip-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 40px 20px;
  display: flex; flex-direction: column; gap: 18px; align-items: flex-start;
}
.cta-strip h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.02em; }
.cta-strip p { font-weight: 500; }
.cta-strip .cta-strip-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-strip .btn-dark {
  background: var(--dark); color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 8px;
}
.cta-strip .btn-dark:hover { background: var(--dark-secondary); }
.cta-strip .btn-outline-dark {
  background: transparent; color: var(--dark); border: 2px solid var(--dark);
  font-weight: 700; font-size: 15px; padding: 12px 28px; border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 8px;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--text-muted-on-dark); padding: 56px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.footer-col h4 {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col ul li a { font-size: 14.5px; color: var(--text-muted-on-dark); transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-brand .logo-text { color: #fff; }
.footer-brand .fb-logo { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.footer-brand p { font-size: 14.5px; margin-bottom: 14px; max-width: 280px; }
.footer-brand .fb-phone { font-size: 18px; font-weight: 800; color: #fff; display: inline-block; margin-bottom: 10px; }
.footer-brand .fb-licensed {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  background: rgba(245,158,11,0.1); padding: 6px 12px; border-radius: 50px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--dark); color: var(--text-on-dark); padding: 60px 20px;
}
.error-page .ep-code { font-size: clamp(72px, 16vw, 140px); font-weight: 800; color: var(--accent); line-height: 1; }
.error-page h1 { font-size: clamp(26px, 4vw, 38px); font-weight: 700; margin: 10px 0 14px; }
.error-page p { color: var(--text-muted-on-dark); max-width: 460px; margin: 0 auto 26px; }
.error-page .ep-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.lead { font-size: 18px; color: var(--text-secondary); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.faq-item p { font-size: 15.5px; color: var(--text-secondary); margin: 0; }
.section-dark .faq-item { border-color: rgba(255,255,255,0.1); }
.section-dark .faq-item h3 { color: #fff; }
.section-dark .faq-item p { color: var(--text-muted-on-dark); }

/* ---------- Comparison table ---------- */
.compare-wrap { max-width: 860px; margin: 0 auto; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 15px; background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th { background: var(--accent); color: var(--dark); font-weight: 700; text-align: left; padding: 14px 18px; font-size: 14px; }
.compare-table td { padding: 13px 18px; border-top: 1px solid var(--border); color: var(--text-secondary); vertical-align: top; }
.compare-table tbody tr:nth-child(even) { background: var(--off-white); }
.compare-table td:first-child { color: var(--text); font-weight: 500; }

/* ---------- Notice box ---------- */
.notice { background: var(--accent-light); border-left: 4px solid var(--accent); border-radius: 6px; padding: 22px 24px; max-width: 820px; }
.notice h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.notice p { margin: 0; font-size: 15px; color: var(--text-secondary); }

/* ---------- Emergency hero (open-now page) ---------- */
.emergency-call { text-align: center; padding: 32px 0 20px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px; }
.emergency-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.emergency-number { display: block; font-size: clamp(40px, 8vw, 72px); font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -0.02em; line-height: 1; margin-bottom: 12px; transition: color 0.2s; }
.emergency-number:hover { color: var(--accent); }
.emergency-sub { display: block; font-size: 14px; color: rgba(255,255,255,0.55); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .trust-stats { grid-template-columns: repeat(4, 1fr); }
  .suburb-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-strip-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 768px) {
  .section { padding: 80px 0; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .check-list { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .suburb-grid { grid-template-columns: repeat(4, 1fr); }
  .float-call { display: none !important; }
}

@media (max-width: 767px) {
  .float-call { display: inline-flex; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .header-cta { display: flex; }
  .mobile-menu-btn { display: none; }
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; padding: 90px 20px; }
  .hero-visual { display: block; }
}
