/* ==========================================================================
   BROCUS HOME SECURITY PRO - LIGHT THEME STYLESHEET
   UI/UX Inspired by https://brocushomesecuritypro.com/
   ========================================================================== */

:root {
  /* Theme Colors */
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-subtle: #F1F5F9;

  --bg-navy-dark: #0B132B;
  --bg-navy-header: #0F172A;
  --bg-navy-card: #1E293B;

  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  --primary-blue: #2563EB;
  --primary-hover: #1D4ED8;
  --primary-light: #EFF6FF;

  --accent-gold: #F59E0B;
  --accent-green: #10B981;
  --accent-red: #EF4444;

  --border-light: #E2E8F0;
  --border-card: #CBD5E1;
  --border-navy: #1E293B;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-pill: 0 10px 25px -5px rgba(0, 0, 0, 0.25);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  font-size: 16px;
}

body.theme-light {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 9999px;
  /* Pill shape */
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-hero {
  font-size: 1.1rem;
  padding: 16px 32px;
}

.btn-call-hero {
  background: #10B981;
  color: #FFFFFF;
  font-size: 1.1rem;
  padding: 16px 28px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
  white-space: nowrap;
}

.btn-call-hero:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-header-call {
  background: var(--primary-blue);
  color: #FFFFFF;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-header-call:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-call-cta-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  padding: 18px 38px;
  border-radius: 9999px;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.btn-call-cta-large:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
}

.btn-final-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  padding: 20px 42px;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.btn-final-call:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.6);
}

.btn-promo {
  background: var(--primary-light);
  color: var(--primary-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
  width: 100%;
  padding: 12px 18px;
  font-size: 0.9rem;
  border-radius: 8px;
  font-weight: 700;
}

.btn-promo:hover {
  background: var(--primary-blue);
  color: #FFFFFF;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-card);
  color: var(--text-dark);
}

.btn-outline:hover {
  background: var(--bg-subtle);
}

.btn-block {
  width: 100%;
}

/* SECTION HEADERS */
.section-header {
  margin-bottom: 45px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
}

/* 1. TOP ANNOUNCEMENT BAR */
.top-announcement-bar {
  background: #0B132B;
  color: #F1F5F9;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1001;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.announcement-content i {
  color: var(--accent-gold);
}

.announcement-phone {
  color: var(--accent-gold);
  text-decoration: underline;
  font-weight: 700;
}

.announcement-divider {
  color: rgba(255, 255, 255, 0.3);
}

/* FLOATING PILL HEADER */
.pill-header-wrapper {
  position: sticky;
  top: 15px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container-outer {
  padding: 0 20px;
}

.pill-header {
  background: white;
  border-radius: 9999px;
  /* Floating pill container */
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #FFFFFF;
  line-height: 1;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-top: 2px;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
  border-radius: 9999px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 16px;
  border-radius: 9999px;
  display: block;
}

.nav-link:hover,
.nav-link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* HAMBURGER TOGGLE */
.hamburger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger-toggle.active .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger-toggle.active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* MOBILE NAV DRAWER */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 75px;
  left: 20px;
  right: 20px;
  background: var(--bg-navy-header);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 25px 20px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-nav-drawer.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  padding: 10px 14px;
  border-radius: 10px;
  display: block;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer-cta .btn-outline {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
}

.mobile-drawer-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* 2. HERO BANNER (LIGHT THEME) */
.hero-section {
  padding: 70px 0 80px;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08) 0%, rgba(248, 250, 252, 0) 60%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--primary-blue);
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 35px;
}

.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-body);
  font-weight: 600;
}

.check-icon {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-top: 2px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.875rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badge-item i {
  color: var(--primary-blue);
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.hero-img {
  width: 100%;
  border-radius: 20px;
}

.hero-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  padding: 12px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.badge-top {
  top: 20px;
  left: 20px;
}

.badge-top i {
  color: var(--accent-green);
  font-size: 1.4rem;
}

.badge-bottom {
  bottom: 20px;
  right: 20px;
}

.badge-bottom i {
  color: var(--primary-blue);
  font-size: 1.4rem;
}

.hero-floating-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.hero-floating-badge small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* TRUST BADGES STRIP */
.trust-strip-section {
  background: var(--bg-navy-dark);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #F1F5F9;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: left;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: var(--transition);
}

.trust-strip-item:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.65);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.45);
}

.trust-strip-item:hover .trust-strip-icon {
  background: var(--primary-blue);
  color: #FFFFFF;
  transform: scale(1.08);
}

.trust-strip-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-light);
  color: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}

/* 3. INSTALLATION PROMOTIONS (LIGHT CARDS) */
.promotions-section {
  padding: 80px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.promo-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.promo-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.promo-card.highlight {
  border-color: var(--primary-blue);
  background: linear-gradient(180deg, var(--primary-light) 0%, #FFFFFF 100%);
}

.promo-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-blue);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.promo-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  color: var(--primary-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.promo-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 14px;
}

.promo-description {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 25px;
  flex-grow: 1;
}

/* 4. COMPLETE SECURITY SYSTEM */
.features-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.features-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.features-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.features-img {
  width: 100%;
}

.features-overlay-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-dark);
  font-weight: 700;
}

.features-overlay-card i {
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  border-color: var(--primary-blue);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-info h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-info p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.features-cta-banner {
  margin-top: 20px;
}

/* 5. WHY WE ARE BETTER THAN DIY (COMPARISON) */
.comparison-section {
  padding: 80px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  min-width: 750px;
  border-collapse: collapse;
  text-align: left;
  background: var(--bg-white);
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 25px;
  border-bottom: 1px solid var(--border-light);
  font-size: 1rem;
  vertical-align: middle;
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--bg-subtle);
  color: var(--text-dark);
}

.comparison-table th.highlight-col {
  background: var(--primary-blue);
  color: #FFFFFF;
  text-align: center;
  font-size: 1.2rem;
}

.col-feature {
  width: 33.33%;
}

.col-brand {
  width: 33.33%;
}

.col-competitor {
  width: 33.33%;
  text-align: center;
}

.feature-name {
  font-weight: 600;
  color: var(--text-dark);
}

.brand-cell.highlight-col {
  background: var(--primary-light);
  font-weight: 700;
  color: var(--primary-blue);
}

.competitor-cell {
  color: var(--text-muted);
}

.brand-cell-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 240px;
  max-width: 100%;
  margin: 0 auto;
}

.competitor-cell-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 170px;
  max-width: 100%;
  margin: 0 auto;
}

.cell-check {
  color: var(--accent-green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cell-xmark {
  color: var(--accent-red);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cell-warn {
  color: var(--accent-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* 6. HOW IT WORKS */
.how-it-works-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 30px 24px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 42px;
  height: 42px;
  background: var(--primary-blue);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-description {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.technician-banner {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tech-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-banner-content {
  padding: 30px 40px 30px 0;
}

.tech-banner-content h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.tech-banner-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* 7. REVIEWS & FAQ */
.reviews-faq-section {
  padding: 80px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.review-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px;
}

.stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  gap: 4px;
}

.review-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.6;
}

.review-author {
  font-weight: 700;
  color: var(--primary-blue);
  font-size: 0.95rem;
}

.section-divider {
  border: 0;
  height: 1px;
  background: var(--border-light);
  margin: 60px 0;
}

/* FAQ ACCORDION */
.faq-accordion {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 15px;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #FFFFFF;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 25px 20px 25px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.6;
}

/* 8. FINAL CTA */
.final-cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E3860 100%);
  color: #FFFFFF;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.final-cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 40px;
}

/* 4-COLUMN FOOTER (MATCHING BROCUSHOMESECURITYPRO.COM UI/UX) */
.main-footer {
  background: #0B132B;
  border-top: 1px solid var(--border-navy);
  padding: 60px 0 25px;
  color: #94A3B8;
  font-size: 0.9rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-desc {
  margin-bottom: 20px;
  line-height: 1.5;
  color: #94A3B8;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
}

.contact-icon {
  color: var(--primary-blue);
  font-size: 1rem;
  margin-top: 3px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 20px;

}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.825rem;
  text-align: center;
}

/* STICKY BOTTOM BAR (all screen sizes) */
.bottom-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--bg-navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
  padding: 11px 20px;
  text-align: center;
}

.bottom-sticky-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #F1F5F9;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(0.68rem, 3vw, 0.95rem);
  line-height: 1.3;
}

.bottom-sticky-link i {
  color: var(--accent-gold);
  font-size: 0.95em;
}

.bottom-sticky-link:hover {
  color: #FFFFFF;
}

/* Reserve space so the fixed bottom bar doesn't cover page content */
body.theme-light {
  padding-bottom: 52px;
}

/* MODALS */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: #FFFFFF;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  padding: 35px;
  position: relative;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.modal-large {
  max-width: 750px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.modal-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: #FFFFFF;
}

.form-footer-note {
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-muted);
  margin-top: 10px;
}

.modal-body-scroll {
  max-height: 60vh;
  overflow-y: auto;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-right: 10px;
}

.modal-body-scroll h4 {
  color: var(--text-dark);
  font-family: var(--font-heading);
  margin: 15px 0 8px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .promotions-grid,
  .steps-grid,
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip-item {
    justify-content: flex-start;
  }

  .features-layout {
    grid-template-columns: 1fr;
  }

  .technician-banner {
    grid-template-columns: 1fr;
  }

  .tech-banner-content {
    padding: 0 30px 30px 30px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 850px) {
  .desktop-nav {
    display: none;
  }

  .hamburger-toggle {
    display: flex;
  }

  .mobile-nav-drawer {
    display: block;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Make header edge-to-edge on mobile/tablet */
  .pill-header-wrapper {
    top: 0;
  }

  .header-container-outer {
    padding: 0;
  }

  .pill-header {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 15px 20px;
  }

  .top-announcement-bar {
    background: var(--primary-blue);
    border-bottom: none;
  }

  .announcement-content span:not(:first-child) {
    display: none;
  }

  .announcement-content i {
    color: #FFFFFF;
  }

  .announcement-phone {
    color: #FFFFFF;
    text-decoration: none;
  }

  .btn-header-call {
    display: none;
  }
}

#main-header .pill-header{
        background: white;
}

@media (max-width: 640px) {
  .logo-title {
    font-size: 1rem;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .promotions-grid,
  .steps-grid,
  .trust-strip-grid,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .trust-strip-item {
    justify-content: center;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  /* Keep hero call CTA on one line on small screens */
  .btn-call-hero {
    font-size: 0.78rem;
    padding: 14px 16px;
    gap: 8px;
  }

  .btn-final-call {
    font-size: 1.1rem;
    padding: 16px 24px;
    width: 100%;
  }
}