/* ==========================================================================
   PIV Installer NI — Warmzilla-Inspired Brand Identity & Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* ===== Fresh-Air Brand Palette (sky blue + deep indigo) ===== */
  --brand-blue: #1391D6;           /* Primary brand (AA-safe on white) */
  --brand-blue-light: #36C1FC;     /* Bright sky for gradients & glows */
  --brand-blue-hover: #0C73AE;     /* Darker hover state */
  --brand-blue-deep: #0B6298;      /* AA-safe blue for small labels on light bg */
  --brand-sky-soft: #68D1FD;       /* Lightest sky tint */

  --brand-navy: #2A2F4E;           /* Deep indigo navy for dark panels */
  --brand-indigo: #3F4467;         /* Secondary indigo */

  /* Warm CTA accent — reserved for primary action buttons */
  --cta: #FF6B35;
  --cta-hover: #E85220;
  --cta-soft: #FF8C5E;

  /* Legacy accent tokens repointed onto the new brand so existing
     rules recolour to sky-blue automatically */
  --brand-orange: var(--brand-blue);
  --brand-orange-hover: var(--brand-blue-hover);
  --brand-orange-soft: var(--brand-sky-soft);

  --dark-charcoal: #20243C;        /* Signature dark panel (deep indigo navy) */
  --dark-slate: #2A2F4E;           /* Secondary dark panel */
  --dark-slate-light: #363C5E;     /* Card background in dark sections */
  
  --bg-light: #F1F5FB;             /* Cool light backdrop */
  --bg-white: #FFFFFF;
  --bg-cream: #F0FAFE;             /* Cool tint for hover states */
  
  --text-dark: #161A2B;            /* Near-navy for body headings */
  --text-muted: #555A6B;           /* Slate for captions */
  --border-color: #E2E8F0;         /* Soft borders */
  --success-green: #10B981;        /* Success ticks and guarantees */
  --danger-red: #EF4444;           /* Problem / warning markers */
  --accent-blue: #36C1FC;          /* Fresh air sky accent */
  --accent-teal: #0EA5E0;          /* Deep sky accent */
  --accent-cyan: #36C1FC;          /* Cyan (legacy alias for fresh-air accent) */

  /* Legacy aliases kept so older markup never renders broken */
  --primary-navy: #20243C;         /* Maps navy references onto brand dark */
  --text-main: #2D313E;            /* Body text */
  
  /* Fonts */
  --font-headings: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shapes */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max-w: 1200px;
  
  /* High-end Warmzilla Shadows */
  --shadow-sm: 0 2px 6px rgba(15,16,21,0.03);
  --shadow-md: 0 12px 30px -5px rgba(15,16,21,0.06), 0 8px 12px -8px rgba(15,16,21,0.04);
  --shadow-lg: 0 30px 60px -15px rgba(15,16,21,0.12);
  --shadow-orange: 0 10px 24px -5px rgba(19,145,214,0.32);   /* brand-blue glow */
  --shadow-cta: 0 12px 26px -6px rgba(255,107,53,0.42);      /* warm CTA glow */
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Resets ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: #2D313E;
  line-height: 1.6;
  background: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand-orange);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-orange-hover);
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.18;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 8px;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.65;
}

.text-center { text-align: center; }
.text-white { color: var(--bg-white) !important; }

/* ===== Layout Elements ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 104px 0;
}

.section-alt {
  background: var(--bg-light);
}

/* Dark feature band — adds depth and breaks up adjacent light sections */
.media-feature {
  background: linear-gradient(135deg, #1E2238 0%, #2B3052 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.media-feature h2 { color: #fff; }
.media-feature .lead { color: rgba(255, 255, 255, 0.82); }
.media-feature .section-badge {
  background: rgba(54, 193, 252, 0.18);
  color: var(--brand-blue-light, #7FD3FB);
}
.media-feature .problem-list.solution li {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.media-feature .problem-list.solution li strong { color: #fff; }
.media-feature .problem-list.solution li::before { color: #5BE8A6; }

.section-badge {
  display: inline-block;
  background: rgba(54, 193, 252, 0.12);
  color: var(--brand-blue-deep);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-headings);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-headings);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-hover) 100%);
  color: var(--bg-white);
  box-shadow: var(--shadow-cta);
  position: relative;
  overflow: hidden;
}

/* Subtle moving sheen on primary CTAs */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-primary:hover::after {
  left: 130%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -6px rgba(255,107,53,0.55);
}

.btn-secondary {
  background: var(--dark-slate);
  color: var(--bg-white);
}

.btn-secondary:hover {
  background: var(--dark-charcoal);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--bg-white);
  border: 2.5px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: var(--bg-white);
  color: var(--dark-charcoal);
  border-color: var(--bg-white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 2.5px solid var(--text-dark);
}

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: var(--bg-white);
  transform: translateY(-2px);
}

/* Dark-outline button for light backgrounds (used on FAQ/Contact) */
.btn-outline-navy {
  background: transparent;
  color: var(--text-dark);
  border: 2.5px solid var(--border-color);
}

.btn-outline-navy:hover {
  background: var(--text-dark);
  color: var(--bg-white);
  border-color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-lg {
  padding: 18px 38px;
  font-size: 1.12rem;
}

/* ===== Header & Navigation ===== */
.top-bar {
  background: #0B0B0E;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.top-bar a:hover {
  color: var(--brand-orange);
}

.trust-badge {
  background: var(--brand-orange);
  color: var(--bg-white);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

nav {
  background: rgba(15,16,21,0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 6px 24px -10px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo-badge {
  height: 46px;
  width: 46px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.logo-words {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  vertical-align: middle;
}

.logo-name {
  font-family: var(--font-headings, 'Outfit', sans-serif);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.logo-sub {
  font-family: var(--font-headings, 'Outfit', sans-serif);
  font-weight: 900;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--brand-blue-light, #36C1FC);
  margin-top: 2px;
}

/* Footer logo anchor is inline-block; keep badge + words aligned */
footer .logo {
  gap: 10px;
}

@media (max-width: 480px) {
  .logo-badge { height: 40px; width: 40px; }
  .logo-name { font-size: 1.12rem; }
  .logo-sub { font-size: 0.55rem; letter-spacing: 0.15em; }
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-headings);
  font-size: 0.95rem;
}

.nav-links a:hover, 
.nav-links a.active {
  background: rgba(54, 193, 252, 0.12);
  color: var(--brand-orange);
}

.nav-links .cta-link a {
  background: var(--cta);
  color: var(--bg-white);
  padding: 12px 24px;
  box-shadow: var(--shadow-cta);
}

.nav-links .cta-link a:hover {
  background: var(--cta-hover);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--bg-white);
  padding: 4px;
}

/* ===== Hero Section ===== */
.hero {
  background: radial-gradient(circle at top right, var(--dark-slate) 0%, var(--dark-charcoal) 100%);
  color: var(--bg-white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Ambient brand glow + soft airflow texture behind the hero */
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -120px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(54,193,252,0.20) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -160px;
  right: -80px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--bg-white);
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--brand-orange);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust-bullets {
  margin-top: 48px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-trust-bullet svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}

/* ===== Full-bleed installer-photo hero ===== */
.hero-photo {
  padding: 0;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-image: url('images/installer-piv-1.jpg');
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
}

.hero-photo::before,
.hero-photo::after {
  display: none;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
    rgba(18, 21, 36, 0.94) 0%,
    rgba(18, 21, 36, 0.86) 34%,
    rgba(20, 24, 40, 0.55) 66%,
    rgba(20, 24, 40, 0.20) 100%);
}

.hero-photo .container {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-photo .hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}

.hero-badge .hero-stars {
  color: #FFC247;
  letter-spacing: 1px;
}

.hero-photo h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero h1 .hl {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  padding: 0 14px 3px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(255, 107, 53, 0.35);
}

.hero-photo .lead strong {
  color: #fff;
  font-weight: 800;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: #fff;
  color: #fff;
}

/* ===== Mould / condensation photo gallery ===== */
.mould-gallery-head {
  margin-top: 64px;
  margin-bottom: 28px;
}

.mould-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mould-gallery figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 48px rgba(16, 24, 40, 0.14);
}

.mould-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.mould-gallery figcaption {
  padding: 15px 20px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .mould-gallery {
    grid-template-columns: 1fr;
  }
}

/* ===== Image + text media band ===== */
.media-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.media-band-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(16, 24, 40, 0.20);
}

.media-band-img img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 30%;
}

.media-band-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
  padding: 8px 15px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

@media (max-width: 768px) {
  .media-band {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== Centered quote funnel section ===== */
.funnel-section {
  background: var(--bg-light);
}

.funnel-container.funnel-center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero-photo {
    min-height: auto;
    background-position: center 22%;
  }
  .hero-photo .container {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .hero-photo .hero-content {
    max-width: 100%;
  }
  .hero-photo-overlay {
    background: linear-gradient(160deg,
      rgba(18, 21, 36, 0.92) 0%,
      rgba(18, 21, 36, 0.88) 60%,
      rgba(20, 24, 40, 0.80) 100%);
  }
}

/* ===== Trustpilot Badge Strip ===== */
.trustpilot-strip {
  background: #090A0D;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
  color: var(--bg-white);
}

.trustpilot-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 500;
}

.tp-star-box {
  background: #00B67A;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 800;
  display: inline-flex;
  gap: 2px;
  align-items: center;
  font-size: 0.85rem;
}

/* ===== Interactive Quote Funnel UI (Warmzilla Style) ===== */
.funnel-container {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.05);
  color: var(--text-dark);
  position: relative;
}

.funnel-container h3 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.funnel-container .subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 30px;
}

/* Steps progress line */
.funnel-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.funnel-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #F3F4F6;
  transform: translateY(-50%);
  z-index: 1;
  border-radius: 20px;
}

.funnel-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  background: var(--brand-orange);
  transform: translateY(-50%);
  z-index: 2;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
  border-radius: 20px;
}

.progress-step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F3F4F6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  position: relative;
  z-index: 3;
  transition: var(--transition);
}

.progress-step.active {
  background: var(--brand-orange);
  color: var(--bg-white);
  box-shadow: 0 0 0 5px rgba(54,193,252,0.18);
}

.progress-step.completed {
  background: var(--dark-slate);
  color: var(--bg-white);
}

/* Step layout transitions */
.funnel-step {
  display: none;
  animation: slideStep 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.funnel-step.active {
  display: block;
}

@keyframes slideStep {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Selection Cards (Warmzilla Click Option Cards) */
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.option-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.option-card {
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 24px 16px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  background: var(--bg-white);
}

.option-card:hover {
  border-color: var(--brand-orange);
  background: #F0FAFE;
  transform: translateY(-2px);
}

.option-card.selected {
  border-color: var(--brand-orange);
  background: #E6F6FE;
  box-shadow: 0 0 0 1px var(--brand-orange);
}

/* ===== Inline SVG icon system (replaces emojis) ===== */
.ic {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.14em;
  flex-shrink: 0;
}

.option-card-icon .ic,
.card-icon .ic,
.process-icon .ic,
.step-icon .ic {
  display: block;
  margin: 0 auto;
  vertical-align: middle;
}

.sign-card .sign-icon .ic,
.guarantee-item .g-icon .ic,
.contact-info-item .ci-icon .ic,
.success-icon .ic {
  vertical-align: middle;
}

/* Brand-tinted accent icons for a calmer, more premium palette */
.option-card-icon,
.card-icon,
.process-icon,
.step-icon {
  color: var(--brand-blue);
}

.sign-card .sign-icon {
  color: var(--brand-blue);
}

.area-tag .ic,
.testimonial-location .ic {
  color: var(--brand-blue);
}

.option-card-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}

.option-card-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.option-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Forms input fields */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg-light);
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-orange);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(54,193,252,0.16);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

.form-note span {
  color: var(--brand-orange);
  font-weight: 700;
}

.funnel-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.error-message {
  color: #EF4444;
  font-size: 0.82rem;
  margin-top: -12px;
  margin-bottom: 12px;
  display: none;
  font-weight: 600;
}

/* Dynamic Quote Results Screen */
.quote-results-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.02em;
}

.recommendations-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.rec-card {
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--bg-white);
  position: relative;
  transition: var(--transition);
}

.rec-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.rec-card.recommended {
  border-color: var(--brand-orange);
  box-shadow: 0 15px 35px -5px rgba(54,193,252,0.10);
}

.rec-badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--brand-orange);
  color: var(--bg-white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.rec-title-wrap h4 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.rec-title-wrap p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rec-price-wrap {
  text-align: right;
}

.rec-product {
  display: block;
  width: 96px;
  height: auto;
  margin: 0 0 8px auto;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: #fff;
}

.rec-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-dark);
  font-family: var(--font-headings);
  line-height: 1;
}

.rec-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.88rem;
}

.rec-features li {
  position: relative;
  padding-left: 24px;
  font-weight: 500;
}

.rec-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 900;
  font-size: 1rem;
}

/* Success Screen */
.success-screen {
  text-align: center;
  padding: 40px 16px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.08);
  color: var(--success-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 24px;
  animation: popSuccess 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popSuccess {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-screen h3 {
  font-size: 1.9rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.success-screen p {
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 24px;
}

/* ===== The Click, Pick, We Fit 3-Step Process Section ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid #E5E7EB;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-orange);
}

.process-num-tag {
  background: var(--brand-blue-hover);
  color: var(--bg-white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.process-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.process-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.process-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ===== Problem/Solution Split ===== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-list {
  list-style: none;
}

.problem-list li {
  padding: 14px 0 14px 40px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  font-size: 1rem;
  font-weight: 500;
}

.problem-list li::before {
  content: '✕';
  position: absolute;
  left: 6px;
  color: #EF4444;
  font-weight: 900;
  font-size: 0.95rem;
}

.problem-list.solution li::before {
  content: '✓';
  color: var(--success-green);
  font-size: 1.15rem;
}

/* ===== Product Cards Grid ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid #E5E7EB;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-orange);
}

.card-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ===== NI Local Coverage Grid ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.area-tag {
  background: var(--bg-white);
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
}

.area-tag:hover {
  border-color: var(--brand-orange);
  background: #F0FAFE;
  transform: translateY(-2px);
  color: var(--brand-orange);
}

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid #E5E7EB;
}

.stars {
  color: #FFB800;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.65;
}

.testimonial-author {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== Call to Action (CTA) Band ===== */
.cta-band {
  background: radial-gradient(circle at bottom left, var(--dark-slate) 0%, var(--dark-charcoal) 100%);
  padding: 90px 0;
  text-align: center;
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.cta-band .container {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  color: var(--bg-white);
  margin-bottom: 16px;
  font-weight: 900;
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Accordion FAQs ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--brand-orange);
}

.faq-q {
  width: 100%;
  background: var(--bg-white);
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-headings);
  transition: var(--transition);
}

.faq-q:hover {
  background: #F0FAFE;
}

.faq-q .arrow {
  font-size: 0.9rem;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-muted);
}

.faq-item.open {
  border-color: var(--brand-orange);
}

.faq-item.open .faq-q {
  background: #F0FAFE;
}

.faq-item.open .arrow {
  transform: rotate(180deg);
  color: var(--brand-orange);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.25s;
  padding: 0 28px;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: var(--bg-white);
  border-top: 1px solid transparent;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding: 16px 28px 24px;
  border-color: #E5E7EB;
}

/* ===== Contact & Page Structures ===== */
.page-hero {
  background: radial-gradient(circle at top right, var(--dark-slate) 0%, var(--dark-charcoal) 100%);
  padding: 80px 0 70px;
  color: var(--bg-white);
  text-align: center;
}

.page-hero h1 {
  color: var(--bg-white);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
}

.page-hero p {
  color: rgba(255,255,255,0.85);
  margin-top: 12px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
  color: var(--brand-orange);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-info-item .ci-icon {
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(54, 193, 252, 0.12);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-family: var(--font-headings);
  font-weight: 800;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: var(--bg-light);
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  border-color: var(--brand-orange);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.stat-box .stat-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--brand-orange);
  font-family: var(--font-headings);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-box small {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Service Details Section */
.service-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.service-img-placeholder {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--border-color) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.service-detail.reverse .service-img-placeholder {
  grid-column: 1;
}

.service-detail.reverse .service-text {
  grid-column: 2;
}

/* ===== Footer ===== */
footer {
  background: #0B0B0E;
  color: rgba(255, 255, 255, 0.7);
  padding: 90px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 48px;
  margin-bottom: 60px;
}

footer h3,
footer h4 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 14px;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  font-weight: 500;
}

footer ul li a:hover {
  color: var(--brand-orange);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item span.fi {
  color: var(--brand-orange);
  font-weight: 700;
  display: inline-flex;
}

.footer-contact-item span.fi .ic {
  width: 1.2em;
  height: 1.2em;
  margin-top: 1px;
}

.footer-bottom a {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
}

/* Floating contact trigger */
.phone-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background: var(--success-green);
  color: var(--bg-white);
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-headings);
  box-shadow: 0 10px 30px rgba(16,185,129,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.phone-float:hover {
  transform: scale(1.05) translateY(-2px);
  color: var(--bg-white);
  box-shadow: 0 12px 35px rgba(16,185,129,0.55);
}

/* ===== Booking Timeline (Contact page "What happens next") ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: step;
}

.step {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 26px 30px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid #E5E7EB;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-orange);
}

.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-hover) 100%);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: var(--shadow-orange);
}

.step-icon {
  font-size: 2.6rem;
  margin: 8px 0 16px;
  display: block;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Signs Your Home Needs Ventilation (symptom-led) ===== */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sign-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1px solid #E5E7EB;
  border-left: 4px solid var(--brand-orange);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.sign-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sign-card .sign-icon {
  font-size: 1.6rem;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(54, 193, 252, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.sign-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== Credentials / Guarantee row ===== */
.guarantee-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.guarantee-item {
  text-align: center;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.guarantee-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-orange);
}

.guarantee-item .g-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.guarantee-item strong {
  display: block;
  font-family: var(--font-headings);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.guarantee-item small {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ===== Transparent Pricing Banner ===== */
.price-banner {
  background: linear-gradient(135deg, var(--dark-slate) 0%, var(--dark-charcoal) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  color: var(--bg-white);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.price-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(54,193,252,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.price-banner h2 {
  color: var(--bg-white);
  margin-bottom: 14px;
}

.price-banner p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
}

.price-banner .price-points {
  list-style: none;
  display: grid;
  gap: 12px;
}

.price-banner .price-points li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}

.price-banner .price-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 900;
}

.price-banner-cta {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  z-index: 2;
}

.price-banner-cta .from-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
}

.price-banner-cta .price-big {
  font-family: var(--font-headings);
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--bg-white);
  line-height: 1;
  margin: 6px 0 22px;
}

/* ===== Why Choose Us checklist ===== */
.why-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text-dark);
}

.why-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--success-green);
}

/* ===== Sticky Mobile CTA Bar ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(15,16,21,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 14px;
  gap: 10px;
}

.mobile-cta-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--radius-md);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.95rem;
}

.mobile-cta-bar .mcta-call {
  background: var(--success-green);
  color: #fff;
}

.mobile-cta-bar .mcta-quote {
  background: var(--cta);
  color: #fff;
}

/* ===== Scroll reveal (progressive enhancement, pure CSS) ===== */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      animation: revealIn linear forwards;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }
  }
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive Breakpoints ===== */
@media (max-width: 1024px) {
  .signs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }
  
  .guarantee-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-banner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-actions, .hero-trust-bullets {
    justify-content: center;
  }
  
  .problem-grid, 
  .contact-grid, 
  .about-grid, 
  .service-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-detail.reverse {
    grid-template-columns: 1fr;
  }
  
  .service-detail.reverse .service-img-placeholder {
    grid-column: unset;
  }
  
  .service-detail.reverse .service-text {
    grid-column: unset;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .section {
    padding: 64px 0;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials {
    grid-template-columns: 1fr;
  }
  
  .signs-grid {
    grid-template-columns: 1fr;
  }
  
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .price-banner-cta .price-big {
    font-size: 2.8rem;
  }
  
  /* Show sticky mobile CTA, swap out the single floating button */
  .mobile-cta-bar {
    display: flex;
  }
  
  .phone-float {
    display: none;
  }
  
  body {
    padding-bottom: 68px;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    position: relative;
    padding: 12px 16px;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-charcoal);
    padding: 20px 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.06);
    gap: 12px;
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-links a {
    width: 100%;
    text-align: center;
  }
  
  .nav-links .cta-link {
    width: 100%;
  }
  
  .nav-links .cta-link a {
    width: 100%;
    text-align: center;
  }
  
  .option-grid {
    grid-template-columns: 1fr;
  }
  
  .option-grid.grid-3 {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .funnel-container {
    padding: 24px 16px;
  }
  
  .rec-features {
    grid-template-columns: 1fr;
  }
  
  .rec-header {
    flex-direction: column;
    align-items: stretch;
  }
  
  .rec-price-wrap {
    text-align: left;
    margin-top: 8px;
  }

  .rec-product {
    margin-left: 0;
  }
}

/* ===== Cookie consent banner ===== */
.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 14px 22px;
  background: var(--dark-charcoal);
  color: #fff;
  box-shadow: 0 -8px 28px rgba(16, 24, 40, 0.22);
  font-size: 0.86rem;
  line-height: 1.5;
}
.cookie-bar p {
  margin: 0;
  max-width: 620px;
}
.cookie-bar a {
  color: var(--brand-blue-light);
  font-weight: 700;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  border: 0;
  border-radius: 9px;
  padding: 9px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-headings);
  transition: var(--transition);
}
.cookie-decline {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.24);
}
.cookie-accept {
  background: var(--cta);
  color: #fff;
}
.cookie-accept:hover {
  background: var(--cta-hover);
}
@media (max-width: 768px) {
  .cookie-bar {
    bottom: 68px; /* sit above the sticky mobile call/quote bar */
    gap: 12px;
    padding: 14px 18px;
  }
}
