@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,700;0,900;1,700;1,900&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --black:      #000000;
  --white:      #ffffff;
  /* Primary accent — red (aliases --green so all existing class names work) */
  --green:      #FF1F1F;
  --red:        #FF1F1F;
  --red-deep:   #B30000;
  --red-hi:     #FF4D4D;
  /* Secondary accent — electric blue (aliases --yg) */
  --yg:         #1E6BFF;
  --blue:       #1E6BFF;
  --blue-deep:  #003FAD;
  --blue-light: #66B2FF;
  /* Deep shade (aliases --dark-green) */
  --dark-green: #B30000;
  /* Chrome silver scale */
  --silver-hi:  #FFFFFF;
  --silver-lt:  #E6E6E6;
  --silver-mid: #BFBFBF;
  --silver-dk:  #8C8C8C;
  --silver-edge:#5E5E5E;
  /* Layout */
  --light-gray: #f5f5f5;
  --border:     #e0e0e0;
  --text:       #1a1a1a;
  --muted:      #666666;
  --hero-img:   none;
}

/* ── SKIP LINK ── */
.skip-link { position: absolute; top: -60px; left: 0; z-index: 9999; background: var(--red); color: #fff; padding: 10px 18px; text-decoration: none; font-size: 14px; font-weight: 700; border-radius: 0 0 4px 0; transition: top .15s; }
.skip-link:focus { top: 0; }

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1,h2,h3,h4,h5 { font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: .5px; }

/* ── HEADER ── */
.site-header { background: var(--black); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,.5); transition: background .25s, box-shadow .25s; }
.site-header.scrolled { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.1); }
.site-header.scrolled .main-nav > a,
.site-header.scrolled .nav-item > a { color: var(--black); }
.site-header.scrolled .main-nav > a:hover,
.site-header.scrolled .nav-item > a:hover { color: var(--red); }
.site-header.scrolled .phone-link { color: var(--red); }
.site-header.scrolled .hamburger span { background: var(--black); }
.site-header.scrolled .dropdown { background: #fff; border-top: 3px solid var(--red); }
.site-header.scrolled .dropdown a { color: var(--text); border-bottom: 1px solid #eee; }
.site-header.scrolled .dropdown a:hover { color: var(--red); background: #f5f5f5; }
.header-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 76px; }
.logo img { height: 56px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.main-nav > a, .nav-item > a {
  color: #fff; text-decoration: none; font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase;
  padding: 8px 12px; border-radius: 3px; transition: color .15s; white-space: nowrap;
}
.main-nav > a:hover, .nav-item > a:hover { color: var(--red); }
.nav-item { position: relative; }
.nav-item:hover .dropdown { display: block; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: #111; border-top: 3px solid var(--red);
  min-width: 220px; box-shadow: 0 8px 32px rgba(0,0,0,.4); z-index: 200;
}
.dropdown a {
  display: block; padding: 11px 18px; color: rgba(255,255,255,.75);
  text-decoration: none; font-family: 'Poppins', sans-serif; font-size: 13px;
  text-transform: uppercase; letter-spacing: .5px;
  border-bottom: 1px solid #222; transition: color .15s, background .15s;
}
.dropdown a:hover { color: var(--red); background: #1a1a1a; }
.dropdown a:last-child { border-bottom: none; }
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.phone-link {
  color: var(--red); text-decoration: none; font-weight: 700;
  font-family: 'Poppins', sans-serif; font-size: 16px; letter-spacing: .5px;
  white-space: nowrap; transition: color .15s;
}
.phone-link:hover { color: var(--red-hi); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 12px 26px; border-radius: 4px;
  font-weight: 700; font-size: 15px; font-family: 'Poppins', sans-serif;
  text-transform: uppercase; letter-spacing: 1px; text-decoration: none;
  cursor: pointer; border: none; transition: all .18s; text-align: center; line-height: 1;
}
.btn-green {
  background: linear-gradient(165deg, #FF9999 0%, #FF5555 12%, #FF1F1F 30%, #CC0000 52%, #7A0000 70%, #AA1100 84%, #FF5544 96%, #FF8888 100%);
  color: #fff;
  box-shadow: inset 0 2px 0 rgba(255,200,200,.55), inset 0 -2px 0 rgba(0,0,0,.45), 0 6px 24px rgba(179,0,0,.5);
}
.btn-green:hover {
  background: linear-gradient(165deg, #FFAAAA 0%, #FF6666 12%, #FF3333 30%, #DD0000 52%, #8A0000 70%, #BB2200 84%, #FF6655 96%, #FF9999 100%);
  box-shadow: inset 0 2px 0 rgba(255,210,210,.6), inset 0 -2px 0 rgba(0,0,0,.5), 0 8px 32px rgba(179,0,0,.65);
  transform: translateY(-2px);
}
.btn-yg {
  background: linear-gradient(165deg, #FFFFFF 0%, #F5F5F5 8%, #D4D4D4 20%, #9A9A9A 38%, #6A6A6A 52%, #929292 65%, #D8D8D8 78%, #FAFAFA 88%, #D0D0D0 100%);
  color: #000;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.98), inset 0 -2px 0 rgba(0,0,0,.38), 0 6px 28px rgba(0,0,0,.5);
  font-weight: 800;
}
.btn-yg:hover {
  background: linear-gradient(165deg, #FFFFFF 0%, #FFFFFF 6%, #DEDEDE 18%, #A8A8A8 36%, #787878 52%, #A0A0A0 66%, #E0E0E0 80%, #FFFFFF 90%, #D8D8D8 100%);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.99), inset 0 -2px 0 rgba(0,0,0,.42), 0 8px 32px rgba(0,0,0,.6);
  transform: translateY(-2px);
}
.btn-black { background: var(--black); color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.3); }
.btn-black:hover { background: #1a0000; box-shadow: 0 6px 24px rgba(255,31,31,.2); }
.btn-outline { background: transparent; border: 2px solid var(--red); color: var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; box-shadow: 0 4px 20px rgba(255,31,31,.4); }
.btn-lg { padding: 17px 40px; font-size: 18px; }
.btn-xl { padding: 20px 48px; font-size: 20px; }
.btn-full { width: 100%; display: block; }

/* ── MOBILE NAV ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: #fff; display: block; }
.mobile-nav { display: none; background: #0d0d0d; border-top: 1px solid #222; }
.mobile-nav a {
  display: block; padding: 13px 24px; color: rgba(255,255,255,.85);
  text-decoration: none; font-family: 'Poppins', sans-serif; font-size: 15px;
  text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid #1a1a1a;
  transition: color .15s, background .15s;
}
.mobile-nav a:hover { color: var(--red); background: #111; }
.site-header.nav-open .mobile-nav { display: block; }

/* ── HERO ── */
.hero {
  background:
    linear-gradient(150deg, rgba(0,0,0,.88) 0%, rgba(0,6,30,.82) 55%, rgba(0,12,40,.86) 100%),
    var(--hero-img) center/cover no-repeat,
    linear-gradient(150deg, #000 0%, #000614 55%, #000a1a 100%);
  position: relative; overflow: hidden; padding: 70px 24px;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(255,31,31,.018) 80px, rgba(255,31,31,.018) 81px);
}
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; position: relative; z-index: 1; }
.eyebrow {
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--blue-light);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--red); }
.hero h1 { font-size: 54px; color: #fff; text-transform: uppercase; margin-bottom: 16px; font-style: italic; }
.hero h1 .accent {
  background: linear-gradient(165deg, #d4eaff 0%, #99ccff 18%, #66b2ff 38%, #1e6bff 62%, #003fad 85%, #aad0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(30,107,255,.55));
}
.hero-sub { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 28px; line-height: 1.65; }
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  background: rgba(30,107,255,.1); border: 1px solid rgba(30,107,255,.38);
  color: var(--blue-light); padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 700; font-family: 'Poppins', sans-serif; letter-spacing: .5px;
}

/* ── LEAD FORM CARD ── */
.form-card { background: #fff; border-radius: 8px; padding: 32px; box-shadow: 0 10px 48px rgba(0,0,0,.35); border-top: 4px solid var(--red); }
.form-card .form-title { font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 4px; letter-spacing: 1px; }
.form-card .form-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 14px; border: 2px solid var(--border);
  border-radius: 4px; font-size: 15px; font-family: 'Poppins', sans-serif;
  transition: border-color .18s; background: #fafafa; color: var(--text);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }
.form-success {
  display: none; background: #fff0f0; border: 2px solid var(--red);
  border-radius: 8px; padding: 28px; text-align: center;
}
.form-success-title { color: var(--red-deep); font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 22px; margin-bottom: 8px; letter-spacing: 1px; font-weight: 700; }
.form-success p { color: var(--red-deep); font-size: 14px; line-height: 1.6; }

/* ── SECTIONS ── */
.section { padding: 72px 24px; }
.section-sm { padding: 48px 24px; }
.wrap { max-width: 1200px; margin: 0 auto; }
.wrap-sm { max-width: 800px; margin: 0 auto; }
.wrap-md { max-width: 960px; margin: 0 auto; }

.bg-white { background: #fff; }
.bg-gray  { background: var(--light-gray); }
.bg-black { background: var(--black); color: #fff; }
.bg-dg    { background: linear-gradient(165deg, rgba(102,178,255,.09) 0%, transparent 30%, rgba(30,107,255,.05) 50%, transparent 70%, rgba(102,178,255,.07) 100%), linear-gradient(135deg, #000614 0%, #001233 40%, #000a24 70%, #001a4a 100%); color: #fff; box-shadow: inset 0 3px 0 rgba(102,178,255,.2), inset 0 -3px 0 rgba(0,0,0,.5); }
.bg-red   { background: linear-gradient(165deg, #FF9999 0%, #FF5555 12%, #FF1F1F 30%, #CC0000 52%, #7A0000 70%, #AA1100 84%, #FF5544 96%, #FF8888 100%); color: #fff; box-shadow: inset 0 3px 0 rgba(255,200,200,.4), inset 0 -3px 0 rgba(0,0,0,.4), 0 8px 32px rgba(179,0,0,.5); }
.bg-grad  { background: linear-gradient(135deg, #000 0%, #1a0000 60%, #00061a 100%); color: #fff; }

.section-hd { text-align: center; margin-bottom: 52px; }
.section-hd .eyebrow { justify-content: center; }
.section-hd h2 { font-size: 40px; text-transform: uppercase; font-style: italic; }
.section-hd p { font-size: 17px; color: var(--muted); max-width: 640px; margin: 12px auto 0; line-height: 1.65; }
.bg-black .section-hd p, .bg-dg .section-hd p, .bg-grad .section-hd p { color: rgba(255,255,255,.7); }
.bg-black .section-hd h2, .bg-dg .section-hd h2, .bg-grad .section-hd h2 { color: #fff; }

/* ── 3-STEP HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 40px;
  left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 3px; background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--blue-deep));
  box-shadow: 0 0 8px rgba(30,107,255,.5);
}
.step { text-align: center; }
.step-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(165deg, #FFFFFF 0%, #F8F8F8 6%, #D2D2D2 20%, #969696 38%, #686868 52%, #8E8E8E 65%, #D6D6D6 78%, #FAFAFA 88%, #CCCCCC 100%);
  color: #111; font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 34px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: inset 0 3px 0 rgba(255,255,255,.98), inset 0 -3px 0 rgba(0,0,0,.42), 0 8px 28px rgba(0,0,0,.6);
  text-shadow: 0 1px 0 rgba(255,255,255,.6), 0 -1px 0 rgba(0,0,0,.2);
}
.step h3 { font-size: 19px; text-transform: uppercase; margin-bottom: 10px; font-style: italic; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.bg-dg .step h3, .bg-black .step h3, .bg-grad .step h3 { color: #fff; }
.bg-dg .step p, .bg-black .step p, .bg-grad .step p { color: rgba(255,255,255,.7); }

/* ── CTA BANNER ── */
.cta-banner { padding: 52px 24px; text-align: center; }
.cta-banner h2 { font-size: 42px; text-transform: uppercase; color: #fff; margin-bottom: 12px; font-style: italic; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 28px; line-height: 1.65; }

/* ── TESTIMONIALS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card {
  background: #fff; border-radius: 8px; padding: 24px;
  border: 1px solid var(--border); box-shadow: 0 2px 16px rgba(0,0,0,.06);
  display: flex; flex-direction: column; border-top: 3px solid var(--red);
}
.stars { display: flex; gap: 2px; color: var(--red); margin-bottom: 10px; }
.stars svg { width: 16px; height: 16px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.75; flex: 1; margin-bottom: 16px; font-style: italic; }
.reviewer { border-top: 1px solid var(--border); padding-top: 12px; }
.reviewer strong { font-size: 14px; display: block; }
.reviewer span { font-size: 13px; color: var(--muted); }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 28px 22px; text-align: center;
  transition: transform .18s, box-shadow .18s; border-bottom: 4px solid transparent;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(255,31,31,.12); border-bottom-color: var(--red); }
.feature-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,31,31,.08); border: 2px solid rgba(255,31,31,.22); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; color: var(--red); }
.feature-icon svg { width: 30px; height: 30px; }
.feature-card h3 { font-size: 17px; text-transform: uppercase; color: var(--black); margin-bottom: 8px; font-style: italic; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── SITUATIONS ── */
.situations-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.sit-card {
  background: rgba(30,107,255,.07); border: 1px solid rgba(30,107,255,.22);
  border-radius: 8px; padding: 22px 14px; text-align: center;
  transition: all .18s; cursor: default;
}
.sit-card:hover {
  background: linear-gradient(165deg, #C0DCFF 0%, #7AAFFF 12%, #3875FF 28%, #1E6BFF 42%, #0040CC 58%, #001880 74%, #0050BB 86%, #5594FF 96%, #99CCFF 100%);
  border-color: var(--blue); transform: translateY(-3px);
  box-shadow: inset 0 2px 0 rgba(180,220,255,.5), inset 0 -2px 0 rgba(0,0,0,.45), 0 10px 28px rgba(0,63,173,.6);
}
.sit-card:hover h4 { color: #fff; }
.sit-icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(30,107,255,.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; color: var(--blue-light); transition: background .18s; }
.sit-icon svg { width: 26px; height: 26px; }
.sit-card:hover .sit-icon { background: rgba(255,255,255,.2); color: #fff; }
.sit-card h3 { font-size: 15px; text-transform: uppercase; color: var(--blue-light); line-height: 1.4; letter-spacing: .3px; }

/* ── SUPPORT COLUMNS ── */
.support-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.sup-card { text-align: center; padding: 32px 22px; background: rgba(255,255,255,.04); border-radius: 8px; border: 1px solid rgba(255,255,255,.08); }
.sup-icon { width: 74px; height: 74px; border-radius: 50%; background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--blue-light); }
.sup-icon svg { width: 36px; height: 36px; }
.sup-card h3 { font-size: 22px; text-transform: uppercase; color: #fff; margin-bottom: 10px; font-style: italic; }
.sup-card p { font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.65; }

/* ── PULL QUOTE ── */
.pull-quote { padding: 56px 24px; text-align: center; background: var(--black); }
.pull-quote blockquote { max-width: 740px; margin: 0 auto; font-size: 22px; font-style: italic; color: #fff; line-height: 1.65; }
.pull-quote cite { display: block; margin-top: 16px; color: var(--red); font-style: normal; font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; }

/* ── COUNTY TAGS ── */
.county-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.county-tag {
  background: rgba(30,107,255,.07); border: 1px solid rgba(30,107,255,.25);
  border-radius: 4px; padding: 10px 12px; text-align: center;
  font-family: 'Poppins', sans-serif; font-size: 14px; text-transform: uppercase;
  color: var(--blue-light); letter-spacing: .5px; font-weight: 600;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background:
    linear-gradient(150deg, rgba(0,0,0,.88) 0%, rgba(28,0,0,.82) 50%, rgba(15,0,0,.86) 100%),
    var(--hero-img) center/cover no-repeat,
    linear-gradient(150deg, #000, #1a0000, #0d0000);
  padding: 56px 24px; text-align: center;
}
.page-hero .eyebrow { justify-content: center; margin-bottom: 12px; }
.page-hero h1 { font-size: 50px; text-transform: uppercase; color: #fff; margin-bottom: 12px; font-style: italic; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.78); max-width: 600px; margin: 0 auto; line-height: 1.65; }

/* ── COMPARISON TABLE ── */
.compare-wrap { overflow-x: auto; border-radius: 8px; box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table thead tr { background: var(--black); }
.compare-table th { padding: 16px 20px; font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 16px; text-transform: uppercase; color: #fff; text-align: left; letter-spacing: 1px; }
.compare-table th:nth-child(3) { background: linear-gradient(165deg, #FF9999 0%, #FF5555 12%, #FF1F1F 30%, #CC0000 52%, #7A0000 70%, #AA1100 84%, #FF5544 96%, #FF8888 100%); box-shadow: inset 0 2px 0 rgba(255,200,200,.4), inset 0 -2px 0 rgba(0,0,0,.4); }
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:nth-child(even) { background: var(--light-gray); }
.compare-table td { padding: 13px 20px; font-size: 14px; vertical-align: middle; }
.compare-table td:first-child { font-weight: 600; color: var(--black); }
.yes { color: var(--red); font-weight: 700; }
.no  { color: #555; font-weight: 700; }

/* ── FAQ ACCORDION ── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
details summary {
  padding: 18px 0; font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 18px;
  font-weight: 600; text-transform: uppercase; color: var(--black);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; cursor: pointer; list-style: none; user-select: none; letter-spacing: .5px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: '+'; font-size: 24px; color: var(--red); flex-shrink: 0; }
details[open] summary::after { content: '−'; }
.faq-answer { padding: 0 0 18px; font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq-answer p { margin-bottom: 10px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ── FORM SECTION (2-col with content) ── */
.form-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.fs-content h2 { font-size: 36px; text-transform: uppercase; margin-bottom: 14px; font-style: italic; }
.fs-content p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.check-list { list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; color: var(--red); font-weight: 800; flex-shrink: 0; font-size: 16px; margin-top: 1px; }

/* ── SOCIAL PROOF STRIP ── */
.proof-strip { background: linear-gradient(165deg, #FF9999 0%, #FF5555 12%, #FF1F1F 30%, #CC0000 52%, #7A0000 70%, #AA1100 84%, #FF5544 96%, #FF8888 100%); padding: 16px 24px; text-align: center; box-shadow: inset 0 2px 0 rgba(255,200,200,.4), inset 0 -2px 0 rgba(0,0,0,.4), 0 4px 20px rgba(179,0,0,.45); }
.proof-strip p { font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; color: #fff; letter-spacing: 1px; }
.proof-strip p span { color: rgba(255,255,255,.7); }

/* ── ABOUT GRID ── */
.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
.about-photo-wrap {
  background: linear-gradient(150deg, #1a0000, #000);
  border-radius: 8px; aspect-ratio: 4/5; display: flex;
  align-items: center; justify-content: center; color: rgba(255,255,255,.25);
  font-family: 'Poppins', sans-serif; font-size: 13px; text-transform: uppercase;
  letter-spacing: 2px; text-align: center; border: 2px dashed rgba(255,31,31,.3);
  flex-direction: column; gap: 12px;
}
.about-photo-wrap .ph-icon { width: 90px; height: 90px; border-radius: 50%; background: rgba(255,31,31,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); }
.about-photo-wrap .ph-icon svg { width: 44px; height: 44px; }
.pledge-box {
  background: var(--light-gray); border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0; padding: 20px 24px; margin-top: 28px;
}
.pledge-box p { font-size: 15px; font-style: italic; color: var(--text); line-height: 1.7; }
.pledge-box strong { color: var(--red-deep); }

/* ── BEFORE/AFTER ── */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.ba-img {
  background: linear-gradient(135deg, #111, #222); border-radius: 8px;
  aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; border: 2px dashed #3a3a3a; color: #555;
  font-family: 'Poppins', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
}
.ba-img .ba-icon { font-size: 42px; opacity: .4; }
.ba-label {
  display: inline-block;
  background: linear-gradient(145deg, #FF4D4D, #FF1F1F 40%, #B30000);
  color: #fff; font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px;
  border-radius: 3px; margin-bottom: 8px;
}

/* ── OFFER FORMULA ── */
.formula-box {
  background: var(--black); color: #fff; border-radius: 8px;
  padding: 32px; text-align: center; border: 1px solid rgba(255,31,31,.3);
}
.formula-box h3 { font-size: 18px; text-transform: uppercase; color: var(--red); margin-bottom: 20px; letter-spacing: 1px; font-style: italic; }
.formula { font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 22px; color: #fff; line-height: 2.2; letter-spacing: .5px; }
.formula .var { color: var(--blue-light); }
.formula .op { color: rgba(255,255,255,.4); margin: 0 8px; }

/* ── FOOTER ── */
.site-footer { background: var(--black); color: rgba(255,255,255,.65); padding: 64px 24px 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid #1e1e1e; }
.footer-brand img { height: 56px; width: auto; max-width: 220px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.s-btn {
  width: 36px; height: 36px; border-radius: 50%; background: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .18s; color: #fff;
}
.s-btn svg { width: 18px; height: 18px; }
.s-btn:hover { background: linear-gradient(165deg, #FF9999 0%, #FF5555 12%, #FF1F1F 30%, #CC0000 52%, #7A0000 70%, #AA1100 84%, #FF5544 96%, #FF8888 100%); box-shadow: inset 0 1px 0 rgba(255,200,200,.5), inset 0 -1px 0 rgba(0,0,0,.4); }
.footer-col h3 { font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.55); text-decoration: none; font-size: 14px; padding: 4px 0; transition: color .15s; }
.footer-col a:hover { color: var(--red); }
.contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 14px; }
.ci-icon { color: var(--red); flex-shrink: 0; margin-top: 1px; display: flex; }
.ci-icon svg { width: 16px; height: 16px; }
.icon-inline { width: 15px; height: 15px; vertical-align: -2px; margin-right: 5px; fill: currentColor; }
.footer-bar { max-width: 1200px; margin: 0 auto; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 8px; }
.footer-bar a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-bar a:hover { color: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 380px; gap: 40px; }
  .hero h1 { font-size: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 300px 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .situations-grid { grid-template-columns: repeat(2,1fr); }
  .county-grid { grid-template-columns: repeat(2,1fr); }
  .steps::before { display: none; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .support-grid { grid-template-columns: 1fr; }
  .form-section { grid-template-columns: 1fr; gap: 36px; }
  .ba-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { aspect-ratio: 3/2; }
  .cta-banner h2 { font-size: 30px; }
  .section-hd h2, .page-hero h1 { font-size: 32px !important; }
}
@media (max-width: 600px) {
  .section { padding: 52px 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .situations-grid { grid-template-columns: 1fr 1fr; }
  .county-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .pull-quote blockquote { font-size: 18px; }
}

/* ── SCROLL ANIMATIONS ── */
.anim { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.anim.fade-left  { transform: translateX(-44px); }
.anim.fade-right { transform: translateX(44px); }
.anim.zoom-in    { transform: scale(.9); }
.anim.in { opacity: 1 !important; transform: none !important; }
.anim.d1 { transition-delay: .1s; } .anim.d2 { transition-delay: .2s; } .anim.d3 { transition-delay: .3s; }
.anim.d4 { transition-delay: .4s; } .anim.d5 { transition-delay: .5s; } .anim.d6 { transition-delay: .6s; }

/* ── HERO FLOAT GRAPHICS ── */
.hero-float-wrap { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.hf { position: absolute; color: var(--red); }
.hf-house { width: 110px; right: 27%; top: 8%;  opacity: .18;  animation: hf-drift 7s ease-in-out infinite; animation-delay: -2.5s; }
.hf-cash  { width: 92px;  right: 9%;  top: 14%; opacity: .22; animation: hf-bounce 4.5s ease-in-out infinite; animation-delay: -1s; }
.hf-ct    { width: 340px; right: 1%;  bottom: -60px; opacity: .04; animation: hf-drift 11s ease-in-out infinite; }
@keyframes hf-drift  { 0%,100%{transform:translateY(0) rotate(0deg)} 40%{transform:translateY(-18px) rotate(2deg)} 70%{transform:translateY(-9px) rotate(-1.5deg)} }
@keyframes hf-bounce { 0%,100%{transform:translateY(0) rotate(-4deg)} 50%{transform:translateY(-24px) rotate(5deg)} }

/* Page-hero float (inner pages) */
.page-hero { position: relative; overflow: hidden; }
.page-hero-hf { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); color: rgba(255,31,31,.14); width: 90px; pointer-events: none; animation: hf-drift 7s ease-in-out infinite; }

/* ── STATS STRIP ── */
.stats-strip { background: linear-gradient(165deg, #FF9999 0%, #FF5555 12%, #FF1F1F 30%, #CC0000 52%, #7A0000 70%, #AA1100 84%, #FF5544 96%, #FF8888 100%); padding: 44px 24px; box-shadow: inset 0 3px 0 rgba(255,200,200,.45), inset 0 -3px 0 rgba(0,0,0,.45), 0 8px 32px rgba(179,0,0,.45); }
.stats-grid  { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; text-align: center; }
.stat-num  { display: block; font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 52px; font-weight: 700; color: #fff; line-height: 1; text-shadow: 0 2px 8px rgba(0,0,0,.25); }
.stat-lbl  { font-size: 11px; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; display: block; }

/* ── BEFORE / AFTER CARDS ── */
.ba-card   { border-radius: 12px; overflow: hidden; }
.ba-image  { height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; position: relative; }
.ba-before .ba-image { background: linear-gradient(145deg, rgba(26,26,26,.45) 0%, rgba(38,38,38,.4) 55%, rgba(26,26,26,.5) 100%), url('images/fixer-upper-house.jpg') center/cover no-repeat; }
.ba-after  .ba-image { background: linear-gradient(145deg, rgba(26,0,0,.4) 0%, rgba(50,8,8,.35) 60%, rgba(20,0,0,.45) 100%), url('images/hero-house-newengland.jpg') center/cover no-repeat; }
.ba-badge  { position: absolute; top: 14px; left: 14px; font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 14px; border-radius: 3px; }
.ba-before .ba-badge { background: rgba(255,255,255,.12); color: rgba(255,255,255,.65); }
.ba-after  .ba-badge { background: linear-gradient(145deg, #FF4D4D, #FF1F1F 40%, #B30000); color: #fff; }
.ba-big-icon { width: 84px; height: 84px; opacity: .3; color: #fff; }
.ba-label-txt { font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.3); }
.ba-footer { background: #0d0d0d; padding: 14px 16px; display: flex; gap: 16px; }
.ba-stat   { text-align: center; flex: 1; }
.ba-stat strong { display: block; font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: var(--red); }
.ba-after  .ba-footer .ba-stat strong { color: var(--blue-light); }
.ba-stat span { font-size: 10px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .4px; }

/* ── XAVIER PHOTO PLACEHOLDER ── */
.xavier-photo { background: linear-gradient(145deg, #1a0000, #000, #1a0000); border-radius: 12px; aspect-ratio: 3/4; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; max-width: 340px; }
.xavier-initial { width: 100px; height: 100px; background: linear-gradient(165deg, #FF9999 0%, #FF5555 12%, #FF1F1F 30%, #CC0000 52%, #7A0000 70%, #AA1100 84%, #FF5544 96%, #FF8888 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 52px; font-weight: 700; color: #fff; box-shadow: inset 0 2px 0 rgba(255,200,200,.55), inset 0 -2px 0 rgba(0,0,0,.45), 0 8px 28px rgba(179,0,0,.55); text-shadow: 0 1px 0 rgba(255,255,255,.3), 0 -1px 0 rgba(0,0,0,.3); }
.xavier-plate strong { display: block; font-family: 'Bebas Neue', 'Montserrat', sans-serif; font-size: 24px; color: #fff; text-align: center; }
.xavier-plate span   { display: block; font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 2px; text-align: center; margin-top: 4px; }

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-num   { font-size: 40px; }
  .hf-house, .hf-cash, .hf-ct, .page-hero-hf { display: none; }
}

/* ── ACCESSIBILITY WIDGET ── */
#a11y-widget { position:fixed; bottom:28px; right:28px; z-index:9999; font-family:'Poppins',sans-serif; }
#a11y-toggle { width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,var(--green),var(--yg)); border:none; color:#fff; font-size:22px; cursor:pointer; box-shadow:0 4px 20px rgba(0,0,0,.4); transition:.3s; display:flex; align-items:center; justify-content:center; }
#a11y-toggle:hover { transform:scale(1.1); }
#a11y-panel { position:absolute; bottom:64px; right:0; width:230px; background:#111; border:1px solid rgba(255,255,255,.12); border-radius:14px; padding:20px; box-shadow:0 8px 32px rgba(0,0,0,.6); }
#a11y-panel[hidden] { display:none; }
.a11y-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; color:#fff; font-size:14px; font-weight:600; }
.a11y-close { background:none; border:none; color:rgba(255,255,255,.5); font-size:18px; cursor:pointer; padding:0 4px; line-height:1; }
.a11y-close:hover { color:#fff; }
.a11y-options { display:flex; flex-direction:column; gap:8px; }
.a11y-btn { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); color:#ddd; padding:10px 14px; border-radius:8px; cursor:pointer; font-size:.83rem; transition:.25s; width:100%; text-align:left; }
.a11y-btn:hover { background:rgba(30,107,255,.15); border-color:rgba(30,107,255,.4); color:#fff; }
.a11y-btn.active { background:rgba(30,107,255,.22); border-color:var(--yg); color:#fff; }
.a11y-font-row { display:flex; align-items:center; gap:6px; }
.a11y-font-row .a11y-btn { flex:1; text-align:center; padding:10px 6px; }
.a11y-label { color:rgba(255,255,255,.55); font-size:.78rem; white-space:nowrap; flex:1; text-align:center; }
body.a11y-high-contrast { filter:contrast(1.5) brightness(1.1); }
body.a11y-no-motion *, body.a11y-no-motion *::before, body.a11y-no-motion *::after { animation:none!important; transition:none!important; }
body.a11y-dyslexia { font-family:Arial,sans-serif!important; letter-spacing:.05em; line-height:1.9; }

/* Respect OS-level reduced-motion preference automatically, in addition to the manual a11y toggle above */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .anim { opacity: 1 !important; transform: none !important; }
}

/* ── MEDIAWAVE DIGITAL DEMO WATERMARK ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='170'%3E%3Ctext x='170' y='85' dominant-baseline='middle' text-anchor='middle' font-family='Arial%2C sans-serif' font-size='24' font-weight='700' letter-spacing='2' fill='%23000000' transform='rotate(-35 170 85)'%3EMediaWave Digital%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.22;
}
