/* ============================================
   OTS CURTAIN CLEANING — PRISTINE PRECISION
   Design System by Stitch
   Fonts: Manrope (headlines) + Inter (body)
   Primary: #001e40 | Action Green: #006e29
   Background: #f7fafd
   ============================================ */

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

/* ── DESIGN TOKENS ── */
:root {
  /* Pristine Precision Palette */
  --primary:           #001e40;
  --primary-container: #003366;
  --on-primary:        #ffffff;
  --on-primary-container: #799dd6;

  --secondary:         #006e29;
  --secondary-dark:    #00531d;
  --on-secondary:      #ffffff;
  --secondary-container: #d4f5de;
  --on-secondary-container: #00752c;

  --surface:           #f7fafd;
  --surface-low:       #f1f4f7;
  --surface-container: #ebeef1;
  --surface-high:      #e5e8eb;
  --surface-highest:   #e0e3e6;
  --surface-white:     #ffffff;
  --surface-dim:       #d7dadd;

  --on-surface:        #181c1e;
  --on-surface-variant:#43474f;
  --outline:           #737780;
  --outline-variant:   #c3c6d1;

  --whatsapp:          #25D366;
  --whatsapp-dark:     #1da852;

  --amber:             #b45309;
  --amber-bg:          #fffbeb;
  --amber-border:      #fde68a;

  --error:             #ba1a1a;

  /* Spacing (8px base) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-10: 80px;

  /* Radius */
  --radius-sm:  4px;
  --radius:     8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full:9999px;

  /* Shadows — whisper soft */
  --shadow-xs:  0 1px 3px rgba(0,30,64,0.06);
  --shadow-sm:  0 4px 12px rgba(0,30,64,0.06);
  --shadow-md:  0 10px 30px rgba(0,30,64,0.08);
  --shadow-lg:  0 20px 48px rgba(0,30,64,0.12);
  --shadow-xl:  0 32px 64px rgba(0,30,64,0.15);
  --shadow-green: 0 10px 30px rgba(0,110,41,0.2);

  /* Container */
  --container: 1280px;
  --gutter: 32px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--surface);
  color: var(--on-surface);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.4; }
h4 { font-size: 1rem; font-weight: 600; }

.label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ── CONTAINERS ── */
.container    { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 var(--gutter); }

/* ── SECTIONS ── */
.section    { padding: var(--space-10) 0; }
.section-sm { padding: var(--space-6) 0; }
.section-title { text-align: center; margin-bottom: var(--space-6); }
.section-title .label { display: block; margin-bottom: var(--space-1); }
.section-title h2 { margin-bottom: var(--space-2); }
.section-title p  { color: var(--outline); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer; border: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--secondary);
  color: var(--on-secondary);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,110,41,0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--outline-variant);
}
.btn-secondary:hover {
  border-color: var(--primary);
  background: var(--surface-low);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--surface-white);
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--secondary);
  color: var(--on-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}

.btn-lg { padding: 17px 36px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── NAVIGATION (Glassmorphism) ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 30px rgba(0,30,64,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--secondary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 800;
  color: #fff; letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0,110,41,0.3);
}
.nav-logo-text { }
.logo-main {
  font-family: 'Manrope', sans-serif;
  font-size: 15px; font-weight: 800;
  color: var(--primary); letter-spacing: -0.02em;
  line-height: 1;
}
.logo-sub {
  font-size: 11px; font-weight: 500;
  color: var(--outline); letter-spacing: 0.02em;
  margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--outline);
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: all 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover {
  color: var(--primary);
  background: var(--surface-low);
}
.nav-phone {
  color: var(--primary) !important;
  border-bottom: 2px solid var(--secondary);
  border-radius: 0 !important;
}
.nav-cta {
  background: var(--secondary) !important;
  color: var(--on-secondary) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-green);
  margin-left: 8px;
  border-bottom: none !important;
}
.nav-cta:hover {
  background: var(--secondary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,110,41,0.3) !important;
}

/* Mobile nav */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: all 0.25s;
}
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--surface-white);
  border-top: 1px solid var(--surface-high);
  padding: 16px var(--gutter) 24px;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--on-surface);
  padding: 13px 0; border-bottom: 1px solid var(--surface-high);
}
.mobile-menu a:last-child { border-bottom: none; }
.mob-cta {
  margin-top: 12px;
  background: var(--secondary) !important;
  color: var(--on-secondary) !important;
  text-align: center; justify-content: center;
  border-radius: var(--radius) !important;
  padding: 14px !important;
  box-shadow: var(--shadow-green);
  border-bottom: none !important;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--surface-white);
  border-bottom: 1px solid var(--surface-high);
  overflow: hidden;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--gutter);
}
.trust-bar-item {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  font-size: 13px; font-weight: 600;
  color: var(--on-surface-variant);
  white-space: nowrap;
}
.trust-bar-item .icon { font-size: 14px; }
.trust-bar-sep { color: var(--outline-variant); font-size: 18px; opacity: 0.5; }

/* ── HERO SECTION ── */
.hero {
  background: var(--surface-white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,30,64,0.03) 0%, rgba(0,110,41,0.02) 100%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--secondary-container);
  color: var(--on-secondary-container);
  padding: 7px 16px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--secondary); }
.hero-sub {
  font-size: 1.1rem; color: var(--on-surface-variant);
  line-height: 1.7; margin-bottom: 32px; max-width: 540px;
}
.hero-micro {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--outline); margin-top: 10px;
}
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px;
}
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px;
}
.trust-item {
  font-size: 13px; color: var(--on-surface-variant);
}
.trust-item strong { color: var(--primary); display: block; font-size: 16px; font-family: 'Manrope', sans-serif; }

/* Hero visual panel */
.hero-visual {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  color: #fff;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero-visual::after {
  content: '';
  position: absolute; bottom: -60px; left: -30px;
  width: 240px; height: 240px;
  background: rgba(0,110,41,0.12);
  border-radius: 50%;
}
.big-stat {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: #fff; line-height: 1;
  position: relative; z-index: 1;
}
.stat-label {
  font-size: 14px; color: rgba(255,255,255,0.65);
  margin: 8px 0 28px; position: relative; z-index: 1;
}
.hero-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; position: relative; z-index: 1;
}
.hero-stat-box {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 16px; text-align: center;
}
.hero-stat-box .val {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.hero-stat-box .lbl {
  font-size: 11px; color: rgba(255,255,255,0.6);
  margin-top: 4px; font-weight: 500;
}

/* ── SECTOR CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.sector-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-high);
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden; text-decoration: none; color: inherit;
}
.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  border-top-color: var(--secondary);
}
.sector-card-body {
  padding: 28px 24px 20px;
  flex: 1;
}
.sector-emoji {
  display: none; /* replaced by SVG icons */
}
.sector-svg-icon {
  width: 44px; height: 44px;
  color: var(--primary);
  margin-bottom: 16px;
}
.sector-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--primary); margin-bottom: 8px;
}
.sector-card p { font-size: 13.5px; color: var(--on-surface-variant); line-height: 1.6; }
.sector-card-footer {
  padding: 14px 24px;
  background: var(--surface-low);
  border-top: 1px solid var(--surface-high);
  font-size: 13px; font-weight: 600; color: var(--secondary);
}

/* Service badge */
.service-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--secondary-container);
  color: var(--on-secondary-container);
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── SERVICE CARD ── */
.service-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-high);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card-header {
  padding: 24px 24px 0;
  display: flex; align-items: flex-start; gap: 16px;
}
.service-icon { font-size: 1.6rem; flex-shrink: 0; }
.service-card-header h3 { font-size: 1rem; color: var(--primary); margin-bottom: 3px; }
.service-card-header p  { font-size: 13px; color: var(--secondary); font-weight: 600; }
.service-card-body { padding: 16px 24px 20px; }
.card-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: var(--secondary);
  margin-top: 12px;
  transition: gap 0.15s;
}
.card-link:hover { gap: 8px; }

/* ── AREA CARD ── */
.area-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-high);
  box-shadow: var(--shadow-xs);
  padding: 24px;
  transition: all 0.25s;
}
.area-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.area-card h3 { font-size: 1rem; color: var(--primary); margin-bottom: 6px; }
.area-slug { font-size: 11px; color: var(--outline); font-family: monospace; margin-bottom: 12px; }
.suburbs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.suburb-tag {
  background: var(--surface-low);
  color: var(--on-surface-variant);
  padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 600;
}
.angle { font-size: 13px; color: var(--on-surface-variant); line-height: 1.5; }

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; text-align: center;
}
.process-step { position: relative; }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-container));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(0,30,64,0.2);
  position: relative; z-index: 1;
}
.process-step h3 { font-size: 1rem; color: var(--primary); margin-bottom: 10px; }
.process-step p  { font-size: 13.5px; color: var(--on-surface-variant); }

/* ── BEFORE/AFTER ── */
.ba-wrap {
  display: flex; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-xl);
}
.ba-side { position: relative; flex: 1; }
.ba-side img { width: 100%; height: 380px; object-fit: cover; }
.ba-label-pill {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 14px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; backdrop-filter: blur(8px);
}
.ba-before { background: rgba(0,0,0,0.55); color: #fff; }
.ba-after  { background: var(--secondary); color: #fff; }
.ba-divider {
  width: 4px; background: #fff; position: relative; z-index: 2;
  flex-shrink: 0;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.shimmer-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: shimmer 2.8s infinite;
  pointer-events: none;
}
.after-grayscale { filter: none; }
.before-grayscale { filter: grayscale(70%) brightness(0.7); }

/* ── REVIEW CARDS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--secondary);
  transition: all 0.2s;
}
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.review-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 10px; }
.review-text  { font-size: 14px; line-height: 1.65; color: var(--on-surface-variant); margin-bottom: 14px; font-style: italic; }
.reviewer-name   { font-size: 13px; font-weight: 700; color: var(--primary); }
.reviewer-sector { font-size: 11px; color: var(--outline); margin-top: 2px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--surface-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-high);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.faq-q {
  padding: 18px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--primary);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--surface-low); }
.faq-icon { font-size: 1.1rem; color: var(--secondary); transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.faq-a {
  display: none; padding: 0 24px 18px;
  font-size: 14px; color: var(--on-surface-variant); line-height: 1.75;
  border-top: 1px solid var(--surface-high);
  padding-top: 16px;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-q { background: var(--surface-low); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 60%, #005fa3 100%);
  color: #fff; padding: 64px 0 52px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: var(--surface);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p  { opacity: 0.82; font-size: 1.05rem; max-width: 640px; }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; opacity: 0.6; margin-bottom: 18px;
  font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
}
.breadcrumb a:hover { opacity: 1; color: #4DD882; }
.breadcrumb sep { opacity: 0.4; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
  padding: var(--space-10) 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: rgba(0,110,41,0.12);
  border-radius: 50%; pointer-events: none;
}
.cta-section h2 { color: #fff; font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 32px; max-width: 540px; margin-left:auto; margin-right:auto; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── HIGHLIGHT BOXES ── */
.highlight-box {
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-md); padding: 20px 24px;
}
.highlight-box.amber {
  background: var(--amber-bg); border-color: var(--amber-border);
  border-left-color: var(--amber);
}
.highlight-box.navy {
  background: #eff6ff; border-color: #bfdbfe;
  border-left-color: var(--primary);
}

/* ── COMPARE TABLE ── */
.compare-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-table th {
  padding: 14px 18px; text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em;
}
.compare-table th:first-child  { background: var(--primary); color: #fff; }
.compare-table th:nth-child(2) { background: var(--secondary); color: #fff; }
.compare-table th:nth-child(3) { background: #dc2626; color: #fff; }
.compare-table td {
  padding: 13px 18px; font-size: 14px;
  border-bottom: 1px solid var(--surface-high);
}
.compare-table tbody tr:nth-child(even) td { background: var(--surface-low); }
.compare-table .good { color: #16a34a; font-weight: 600; }
.compare-table .bad  { color: #dc2626; }

/* ── QUOTE FORM ── */
.quote-section {
  background: var(--surface-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.quote-steps {
  display: flex; background: var(--surface-low);
  border-bottom: 1px solid var(--surface-high);
}
.quote-step {
  flex: 1; padding: 16px 10px; text-align: center;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--outline);
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.quote-step.active {
  color: var(--primary); font-weight: 700;
  border-color: var(--secondary);
  background: var(--surface-white);
}
.quote-step.done { color: var(--secondary); }
.quote-body { padding: 40px 44px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; color: var(--primary);
  margin-bottom: 7px; font-size: 13px; letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--outline-variant);
  border-radius: var(--radius);
  font-size: 15px; color: var(--on-surface);
  background: var(--surface-white);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0,110,41,0.1);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--secondary); }
.form-check label { font-size: 13px; color: var(--outline); font-weight: normal; cursor: pointer; line-height: 1.5; }

.sector-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; }
.sector-option { display: none; }
.sector-label {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 10px; border: 1.5px solid var(--outline-variant);
  border-radius: var(--radius-md);
  cursor: pointer; text-align: center;
  transition: all 0.2s; font-size: 13px; font-weight: 600;
  color: var(--on-surface-variant);
}
.sector-label:hover { border-color: var(--primary); background: var(--surface-low); }
.sector-option:checked + .sector-label {
  border-color: var(--secondary);
  background: #f0fdf4; color: var(--primary);
}
.sector-label .s-icon { font-size: 1.6rem; }

/* ── NAP BLOCK ── */
.nap-block {
  background: var(--primary);
  color: #fff; border-radius: var(--radius-lg);
  padding: 36px; display: flex; flex-wrap: wrap; gap: 36px;
}
.nap-item { display: flex; align-items: flex-start; gap: 14px; }
.nap-icon { font-size: 1.3rem; color: #4DD882; margin-top: 2px; flex-shrink: 0; }
.nap-item h4 {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5); margin-bottom: 5px; font-family: 'Inter', sans-serif;
}
.nap-item p { font-size: 14px; line-height: 1.55; }
.nap-item a { color: #4DD882; font-weight: 600; }

/* ── UPSELL BANNER ── */
.upsell-banner {
  background: linear-gradient(90deg, var(--secondary-dark), var(--secondary));
  color: #fff; border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin: 40px 0; box-shadow: var(--shadow-green);
}
.upsell-banner .ub-icon { font-size: 2.5rem; flex-shrink: 0; }
.upsell-banner .ub-text h4 { font-size: 1.05rem; margin-bottom: 4px; }
.upsell-banner .ub-text p  { font-size: 14px; opacity: 0.9; margin: 0; }
.upsell-banner .ub-cta { margin-left: auto; }

/* ── BADGES ── */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-green { background: #dcfce7; color: #166534; }
.badge-navy  { background: #dbeafe; color: #1e40af; }
.badge-amber { background: #fef9c3; color: #92400e; }

/* ── FOOTER ── */
.footer {
  background: var(--primary);
  color: #fff; padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: #4DD882;
  margin-bottom: 18px; font-weight: 700;
}
.footer-about p { font-size: 14px; opacity: 0.7; line-height: 1.75; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 14px; opacity: 0.7; transition: opacity 0.15s; }
.footer-links li a:hover { opacity: 1; color: #4DD882; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item .fc-icon { color: #4DD882; font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 14px; opacity: 0.75; line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; opacity: 0.55; }

/* ── FLOATING WHATSAPP FAB ── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  animation: fabPulse 3s ease-in-out infinite;
  /* Glassmorphism ring */
  outline: 3px solid rgba(37,211,102,0.2);
  outline-offset: 3px;
}
.whatsapp-fab:hover {
  background: var(--whatsapp-dark);
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ── THANK YOU ── */
.thankyou-box {
  background: var(--surface-white);
  border-radius: var(--radius-xl);
  padding: 64px 52px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 640px; margin: 0 auto;
}
.thankyou-icon { font-size: 4rem; margin-bottom: 20px; }
.thankyou-box h1 { color: var(--secondary); margin-bottom: 12px; }

/* ── STICKY SIDEBAR CARD ── */
.sticky-card {
  background: var(--primary);
  color: #fff; border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky; top: 96px;
  box-shadow: var(--shadow-lg);
}
.sticky-card h3 { color: #4DD882; margin-bottom: 8px; font-size: 1.1rem; }
.sticky-card p  { font-size: 14px; opacity: 0.8; margin-bottom: 20px; }
.sticky-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.sticky-card .divider {
  margin: 18px 0; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.sticky-card .meta-label { font-size: 10px; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.sticky-card .meta-val   { font-size: 14px; }

/* ── WHY LIST ── */
.why-list { display: flex; flex-direction: column; gap: 9px; }
.why-list-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; padding: 1px 0;
}
.why-list-item .check { color: var(--secondary); font-weight: 800; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  :root { --gutter: 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote-body { padding: 24px 20px; }
  .nap-block { padding: 24px; }
  .cta-section { padding: 52px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
  .thankyou-box { padding: 40px 24px; }
  .trust-bar-sep { display: none; }
  .trust-bar-inner { justify-content: flex-start; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}
