/* ============================================================
   Security Camera Guru — Homepage styles
   Clean blues + neutrals, trustworthy/professional
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink:        #11243a;   /* primary heading text */
  --navy:       #14365c;   /* brand dark */
  --blue:       #1a5ca8;   /* primary brand blue */
  --blue-600:   #15518f;
  --blue-700:   #114277;
  --blue-tint:  #eaf1f9;   /* pale blue panels */
  --bg:         #e6eff8;   /* soft blue page bg */
  --white:      #ffffff;
  --muted:      #56697d;   /* body / secondary text */
  --muted-2:    #7488a0;
  --border:     #dbe4f0;
  --orange:     #ef6c1a;   /* PRIMARY cta — strong contrast */
  --orange-600: #d65c10;
  --gold:       #f4a722;   /* stars */
  --warn:       #c0392b;   /* warning bullets */
  --warn-tint:  #fbeceb;
  --good:       #1f8a52;

  --shadow-sm: 0 1px 3px rgba(17,36,58,.06), 0 1px 2px rgba(17,36,58,.04);
  --shadow:    0 8px 30px rgba(17,36,58,.08), 0 2px 8px rgba(17,36,58,.05);
  --shadow-lg: 0 24px 60px rgba(17,36,58,.14);

  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1180px;

  --font-head: "Libre Franklin", -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-body: "Source Sans 3", -apple-system, "Segoe UI", system-ui, sans-serif;

  /* type scale */
  --t-eyebrow: 14px;
  --t-h1: clamp(34px, 5vw, 56px);
  --t-h2: clamp(28px, 3.6vw, 42px);
  --t-h3: clamp(20px, 2.2vw, 26px);
  --t-lead: clamp(18px, 1.5vw, 21px);
  --t-body: 18px;
  --t-small: 15px;

  --sp: 96px;   /* vertical section padding */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0; line-height: 1.12; letter-spacing: -.01em; color: var(--ink); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #cfe0f3;
  font-size: 14.5px;
  letter-spacing: .01em;
}
.topbar .container {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 40px; text-align: center; flex-wrap: wrap;
}
.topbar .dot { color: #5d7da3; }
.topbar .tb-name { font-weight: 600; color: #fff; }
.topbar a.tb-phone { color: #fff; font-weight: 700; white-space: nowrap; }
.topbar a.tb-phone:hover { color: var(--orange); }

/* ---------- Sticky nav header ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: linear-gradient(180deg, #0e2742 0%, #14365c 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 18px rgba(0,0,0,.18);
}
.nav .container { display: flex; align-items: center; gap: 16px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: 0; flex: none; }
.brand-logo { height: 52px; width: auto; display: block; flex: none; }
@media (max-width: 640px) { .brand-logo { height: 42px; } }
.brand .mark {
  width: 40px; height: 40px; border-radius: 9px; flex: none;
  background: linear-gradient(150deg, var(--blue), var(--navy));
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm);
}
.brand .mark svg { width: 22px; height: 22px; }
.brand .bname { font-family: var(--font-head); font-weight: 800; font-size: 17px; letter-spacing: .02em; color: var(--ink); line-height: 1.05; }
.brand .btag { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.nav-links { display: flex; gap: 6px; margin: 0 auto; align-items: center; }
.nav-links > a, .nav-drop-toggle {
  font-family: var(--font-head); font-weight: 700; font-size: 14px; color: #eaf2fb;
  padding: 8px 12px; border-radius: 9px; white-space: nowrap;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px; transition: background .15s, color .15s, border-color .15s;
}
.nav-links > a:hover, .nav-drop-toggle:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.nav-drop-toggle .chev { width: 13px; height: 13px; transition: transform .2s; }
.nav-item { position: relative; }
.nav-item:hover .nav-drop-toggle { background: var(--orange); color: #fff; border-color: var(--orange); }
.nav-item:hover .nav-drop-toggle .chev { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 248px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow); padding: 8px; display: none; z-index: 70;
}
.dropdown::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px; border-radius: 8px;
  font-size: 14.5px; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.dropdown a:hover { background: var(--blue-tint); color: var(--blue); }
.dropdown a svg { width: 15px; height: 15px; }
.dropdown a strong { font-weight: 800; }
.dropdown .dropdown-all {
  color: var(--blue); font-weight: 800; margin-top: 6px; padding-top: 12px;
  border-top: 1px solid var(--border); border-radius: 0;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav .brand { margin-right: 0; }
.nav-quote {
  font-family: var(--font-head); font-weight: 800; font-size: 15.5px; white-space: nowrap;
  background: var(--good); color: #fff; border: none; cursor: pointer;
  padding: 11px 18px; border-radius: 10px; box-shadow: 0 6px 16px rgba(31,138,82,.28);
}
.nav-quote:hover { background: #1a7546; }
.nav-toggle { display: none; }
.nav .nav-call {
  display: none;
  align-items: center; gap: 8px;
  background: var(--orange); color: #fff; font-weight: 800;
  padding: 11px 18px; border-radius: 10px; font-size: 15.5px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(239,108,26,.28);
}
.nav .nav-call:hover { background: var(--orange-600); }
.nav .nav-call svg { width: 17px; height: 17px; }

/* ---------- Generic section ---------- */
section.block { padding: var(--sp) 0; }
.eyebrow {
  font-family: var(--font-head);
  font-size: var(--t-eyebrow); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue); margin: 0 0 14px;
}
.eyebrow.on-dark { color: #7fb2ec; }
.eyebrow svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 3px; }
h2.headline { font-size: var(--t-h2); font-weight: 800; max-width: 20ch; }
.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .sub { color: var(--muted); font-size: var(--t-lead); margin-top: 18px; max-width: 60ch; }
.section-head.center .sub { margin-left: auto; margin-right: auto; }

/* ---------- Two column ---------- */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.two-col.media-left .col-media { order: -1; }
.col-text .eyebrow { margin-top: 0; }
.section-photo figcaption {
  margin-top: 12px; text-align: center; font-size: 14px; font-weight: 600;
  color: var(--muted-2);
}
.section-photo { margin: 0; }
.section-photo img {
  width: 100%; height: auto; border-radius: var(--radius);
  box-shadow: var(--shadow); display: block;
}
.tip-card {
  display: flex; gap: 16px; align-items: flex-start; margin-top: 22px;
  background: var(--blue-tint); border: 1px solid #cfe0f3; border-radius: var(--radius);
  padding: 20px 22px;
}
.tip-card .tip-icon {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  background: var(--blue); display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(26,92,168,.28);
}
.tip-card .tip-icon svg { width: 22px; height: 22px; color: #fff; }
.tip-card .tip-body { display: flex; flex-direction: column; gap: 5px; }
.tip-card .tip-body strong { font-family: var(--font-head); font-weight: 800; font-size: 18px; color: var(--navy); }
.tip-card .tip-body span { font-size: 16px; color: var(--muted); line-height: 1.55; }
.tip-card.warn { background: var(--warn-tint); border-color: #f0cfcb; }
.tip-card.warn .tip-icon { background: var(--warn); box-shadow: 0 6px 14px rgba(192,57,43,.28); }
.tip-card.warn .tip-body strong { color: #7d2a22; }
/* make both columns equal height and align their bottom elements */
.two-col.align-bottoms { align-items: stretch; }
.align-bottoms .col-text, .align-bottoms .col-media { display: flex; flex-direction: column; }
.align-bottoms .col-text .cta-row { margin-top: auto; }
.align-bottoms .col-text .closing-line { margin-bottom: 30px; }
.align-bottoms .col-media > .section-photo:last-child { margin-top: auto; margin-bottom: 0; }
@media (max-width: 640px) {
  .align-bottoms .col-media > .section-photo:last-child { margin-top: 22px; }
}
/* stretch the media column so image sits top, tip card pins to bottom */
.two-col.stretch-media { align-items: stretch; }
.stretch-media .col-media { display: flex; flex-direction: column; }
.stretch-media .col-media .tip-card { margin-top: auto; }
@media (max-width: 640px) {
  .stretch-media .col-media .tip-card { margin-top: 22px; }
}

/* let the section photo grow to match the taller text column */
.two-col.fill-media { align-items: stretch; }
.fill-media .col-media { display: flex; flex-direction: column; }
.fill-media .section-photo { flex: 1 1 auto; min-height: 0; }
.fill-media .section-photo img { height: 100%; object-fit: cover; }
@media (max-width: 640px) {
  .fill-media .section-photo { flex: none; }
  .fill-media .section-photo img { height: auto; }
}

/* ---------- Buttons / CTA row ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 800; font-size: 16px;
  padding: 15px 24px; border-radius: 11px; border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 20px rgba(239,108,26,.30); }
.btn-primary:hover { background: var(--orange-600); box-shadow: 0 12px 26px rgba(239,108,26,.36); }
.btn-secondary { background: #fff; color: var(--blue); border-color: var(--blue); }
.btn-secondary:hover { background: var(--blue-tint); }
.btn-form { background: var(--good); color: #fff; border-color: var(--good); box-shadow: 0 8px 20px rgba(31,138,82,.26); }
.btn-form:hover { background: #1a7546; border-color: #1a7546; box-shadow: 0 12px 26px rgba(31,138,82,.32); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.cta-row.center { justify-content: center; }
.cta-row.cta-tight { flex-wrap: nowrap; gap: 10px; }
.cta-row.cta-tight .btn { padding: 13px 16px; font-size: 15px; }
.cta-row.cta-tight .btn svg { width: 16px; height: 16px; }
@media (max-width: 640px) { .cta-row.cta-tight { flex-wrap: wrap; } }

/* ---------- Placeholders (no real images yet) ---------- */
.ph {
  position: relative; width: 100%; border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, #e7eef7 0 14px, #dfe8f3 14px 28px);
  border: 1px dashed #b4c5db; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
}
.ph .ph-label {
  position: relative; z-index: 1; text-align: center;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 13px; color: #3f566f; line-height: 1.5; max-width: 80%;
  background: rgba(255,255,255,.78); padding: 12px 16px; border-radius: 10px;
  border: 1px solid rgba(120,150,180,.3);
}
.ph .ph-label strong { display:block; font-size: 12px; letter-spacing:.1em; text-transform:uppercase; color: var(--blue); margin-bottom: 4px; }
.ph .ph-label em { color: var(--muted-2); font-style: normal; display:block; margin-top:6px; font-size:11.5px; }
.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-4x3  { aspect-ratio: 4 / 3; }
.ratio-1x1  { aspect-ratio: 1 / 1; }

/* video placeholder with play btn */
.video-ph { aspect-ratio: 16/9; border-radius: var(--radius); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.video-ph .play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 84px; height: 84px; border-radius: 50%; background: rgba(239,108,26,.95);
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.3); z-index: 2;
}
.video-ph .play svg { width: 32px; height: 32px; margin-left: 4px; fill: #fff; }
.video-ph .vlabel {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  font-family: ui-monospace, Menlo, monospace; font-size: 12px; color: #fff;
  background: rgba(17,36,58,.7); padding: 7px 12px; border-radius: 8px;
}

/* ---------- Subpages ---------- */
.subpage-hero { padding: 64px 0 56px; }
.subpage-hero h1 { font-size: clamp(32px, 4.4vw, 50px); font-weight: 800; letter-spacing: -.02em; line-height: 1.08; max-width: 18ch; }
.subpage-hero .lead-text { max-width: 60ch; }
.subpage-hero .cta-row { margin-top: 32px; }
.subpage-body { max-width: 920px; }
.subpage-body .bullets { margin-top: 8px; }
.placeholder-note {
  margin: 30px 0; padding: 16px 20px; border-radius: var(--radius-sm);
  background: var(--blue-tint); border: 1px dashed #b4c5db; color: var(--navy);
  font-size: 15px; font-weight: 600;
}
.related-services { margin-top: 54px; padding-top: 38px; border-top: 1px solid var(--border); }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rel-card {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 800; color: var(--navy); box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .15s ease;
}
.rel-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--blue); }
.rel-card svg { width: 20px; height: 20px; color: var(--orange); flex: none; }
@media (max-width: 760px) { .rel-grid { grid-template-columns: 1fr; } }
.tv-highlight { display:flex; align-items:center; gap:13px; background:var(--blue-tint); border:1px solid #cfe0f3; border-radius:12px; padding:14px 18px; margin-bottom:22px; font-size:15.5px; color:var(--navy); line-height:1.45; }
.tv-highlight .tvh-ic { flex:none; width:34px; height:34px; border-radius:9px; background:var(--good); display:grid; place-items:center; }
.tv-highlight .tvh-ic svg { width:18px; height:18px; color:#fff; }
@media (max-width:640px){
  .hero-cta-mobile { flex-direction:column; }
  .hero-cta-mobile .btn { width:100%; }
}
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px; }
.area-card {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 17px 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--navy); box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .15s ease, color .15s;
}
.area-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--blue); }
.area-card svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
@media (max-width: 760px) { .area-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .area-grid { grid-template-columns: 1fr; } }
.linklike { background: none; border: none; padding: 0; font: inherit; color: var(--blue); font-weight: 700; cursor: pointer; text-decoration: underline; }
.history-track { margin-top: 18px; padding: 20px 22px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); }
.history-track-label { display: block; text-align: center; font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.history-chips { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.hchip { display: inline-flex; align-items: center; font-family: var(--font-head); font-weight: 800; font-size: 13.5px; color: #fff; background: var(--navy); padding: 9px 15px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.hchip-gold { background: var(--orange); }
.logo-evolution { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin: 34px auto 0; max-width: 720px; }
.logo-evolution img { width: 260px; max-width: 42%; height: auto; }
.logo-evolution .logo-arrow { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; }
.logo-evolution .logo-arrow svg { width: 24px; height: 24px; }
.logo-evolution figcaption { flex-basis: 100%; text-align: center; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--muted-2); }
.gv-logo-card { background:#fff; border-radius: var(--radius); padding: 26px 32px; margin: 24px auto 0; max-width: 460px; display:flex; justify-content:center; box-shadow: var(--shadow); }
@media (max-width:640px){
  .hero .two-col.ah-cols { display:flex; flex-direction:column; align-items:stretch; }
  .hero .two-col.ah-cols .col-text { order:1 !important; }
  .hero .two-col.ah-cols .col-media { order:2 !important; margin-top:22px; }
  .hero .two-col.ah-cols .col-media .section-photo { margin:0; }
  .hero .two-col.ah-cols .col-media .section-photo img { width:100%; height:auto; max-height:none; border-radius:var(--radius); display:block; }
  .ah-cta { margin-top:24px !important; }
  .two-col.cb-cols { display:flex; flex-direction:column; }
  .two-col.cb-cols .col-text { order:1 !important; margin-bottom:24px; }
  .two-col.cb-cols .col-media { order:2 !important; }
}
.gv-logo-card img { width: 100%; height: auto; }
.gv-feature { display:flex; align-items:center; gap:28px; margin:30px auto 0; max-width:760px; background:#fff; border-radius:var(--radius); padding:28px 32px; box-shadow:var(--shadow); }
.gv-feature-logo { flex:0 0 230px; }
.gv-feature-logo img { width:100%; height:auto; }
.gv-feature-body h3 { font-size:20px; font-weight:800; color:var(--ink); margin-bottom:8px; }
@media (max-width:640px){ .gv-feature-body h3 { font-size:17px; line-height:1.2; } }
.gv-feature-body p { color:var(--muted); font-size:16px; line-height:1.55; margin-bottom:18px; }
@media (max-width:680px){ .gv-feature { flex-direction:column; text-align:center; } .gv-feature-logo { flex:none; max-width:240px; } }
.origin-cards { list-style:none; margin:28px 0 0; padding:0; display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.origin-cards li { background:rgba(255,255,255,.06); border:1px solid rgba(127,178,236,.28); border-radius:var(--radius); padding:24px 22px; }
.origin-cards .oc-icon { display:grid; place-items:center; width:46px; height:46px; border-radius:12px; background:var(--orange); margin-bottom:14px; }
.origin-cards .oc-icon svg { width:24px; height:24px; color:#fff; }
.origin-cards h3 { color:#fff; font-size:19px; font-weight:800; margin-bottom:8px; }
.origin-cards p { color:#b9cde4; font-size:15.5px; line-height:1.55; }
@media (max-width:760px){ .origin-cards { grid-template-columns:1fr; } }
.namechange-logos { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.namechange-logos img { width: 78%; max-width: 320px; height: auto; }
.namechange-logos .logo-arrow { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; }
.namechange-logos .logo-arrow svg { width: 24px; height: 24px; }
.namechange-logos figcaption { text-align: center; margin-top: 6px; font-size: 14px; font-weight: 600; color: var(--muted-2); }
@media (max-width: 560px){ .logo-evolution .logo-arrow { transform: rotate(90deg); } .logo-evolution img { max-width: 70%; } }

/* ---------- Roland personal note ---------- */
.roland-note {
  position: relative;
  margin-top: 26px;
  padding: 26px 28px 22px 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(17,36,58,.08);
}
.roland-tag {
  position: absolute; top: -12px; left: 22px;
  background: var(--orange); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(239,108,26,.35);
}
.roland-note p { margin: 0 0 14px; color: var(--ink); }
.roland-note p:last-of-type { margin-bottom: 10px; }
.roland-punch {
  font-size: 1.08em;
  line-height: 1.55;
  color: var(--ink) !important;
}
.roland-punch strong { color: var(--orange-600); }
.roland-sig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: 30px;
  color: var(--navy);
  margin-top: 6px;
}
.roland-sig-logo {
  width: 130px;
  height: auto;
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
  margin-left: 16px;
}
@media (max-width: 640px) {
  .roland-note { margin-top: 38px; margin-bottom: 28px; }
  .hero-tech { margin-top: 32px !important; margin-bottom: 24px; }
  .hero-cta-right { margin-top: 8px !important; }
  .chooser-section { padding-top: 24px !important; }
}

/* ---------- Stats band ---------- */
.stats-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  padding: 60px 0;
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(48px, 6.5vw, 82px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
  text-shadow: 0 2px 18px rgba(0,0,0,.18);
}
.stat-star { color: var(--gold); margin-left: 6px; }
.stat-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.88);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 14px;
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(26,92,168,.10), transparent 60%),
    linear-gradient(180deg, #f5f8fc 0%, #e6eef8 100%);
  padding: 64px 0 80px;
}
.hero .two-col { gap: 56px; align-items: stretch; }
.hero .col-media .hero-tech { margin-top: 22px; }
.hero-cta-right { margin-top: auto; justify-content: center; }
.hero .col-text, .hero .col-media { display: flex; flex-direction: column; }
.services-box + .hero-promise { margin-top: 8px; }
.hero .col-text .cta-row { margin-top: auto; }
.hero .col-text .services-box { margin-bottom: 30px; }
.hero .col-media .hero-promise { margin-top: 22px; }
.hero-badges { margin-bottom: 0; }
.hero-mobile-van { display: none; }
.hero-van-desktop { position: relative; }
.hero-van-desktop .desktop-video-btn { position: absolute; left: 50%; transform: translateX(-50%); bottom: auto; top: auto; }
.hero-van-desktop img + .desktop-video-btn { top: 72%; }
.big-play-overlay { display: none !important; }
.big-play-overlay {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 96px; height: 96px; border-radius: 50%;
  background: rgba(239,108,26,.96); border: 3px solid #fff; color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  z-index: 5; padding: 0;
}
.big-play-overlay svg { width: 44px; height: 44px; margin-left: 5px; }
.big-play-overlay:hover { background: var(--orange-600); transform: translate(-50%,-50%) scale(1.05); }
.reviews-modal-body { position: relative; }
.hero-van-desktop figcaption { margin-top: 14px; }
.desktop-video-btn { padding: 9px 18px 9px 10px; font-size: 14px; bottom: 70px; top: auto; }
.desktop-video-btn .mvb-play { width: 26px; height: 26px; }
.desktop-video-btn .mvb-play svg { width: 14px; height: 14px; }
.mobile-video-btn {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(239,108,26,.96); color: #fff; border: 1.5px solid #fff;
  padding: 7px 14px 7px 8px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-head); font-weight: 800; font-size: 13px;
  box-shadow: 0 6px 18px rgba(0,0,0,.30);
}
.mobile-video-btn .mvb-play { width: 22px; height: 22px; border-radius: 50%; background: #fff; color: var(--orange); display: grid; place-items: center; flex: none; }
.mobile-video-btn .mvb-play svg { width: 12px; height: 12px; margin-left: 1px; }

/* === Trust callout — appears below the Roland note in hero === */
.trust-callout {
  margin-top: 18px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #fff8f1 0%, #fef3e6 100%);
  border-left: 4px solid #ef6c1a;
  border-radius: 8px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(239,108,26,.08);
}
.trust-callout svg {
  width: 24px;
  height: 24px;
  flex: none;
  margin-top: 2px;
}
.trust-callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #1f2d44;
}
.trust-callout strong { color: #0b1f3a; }
@media (max-width: 640px) {
  .trust-callout { padding: 14px 16px; gap: 11px; }
  .trust-callout p { font-size: 14px; }
  .trust-callout svg { width: 20px; height: 20px; }
}
/* === Hero CTA column move (desktop only) ===
   On desktop, the original right-column CTAs are hidden,
   and a duplicate copy lives in the left column below the ballpark link.
   On mobile (< 880px), the right-column CTAs show as before so the
   stacked single-column flow still surfaces the call buttons. */
@media (min-width: 880px) {
  .hero-cta-right-hidden { display: none !important; }
  .hero-grid .col-text { display: flex; flex-direction: column; }
  .hero-grid .hero-cta-left-col { margin-top: auto; padding-top: 18px; }
}
@media (max-width: 879px) {
  .hero-cta-left-col { display: none !important; }
}

/* ============================================================
   CAMERA SLIDER — right-column hero slider showing real installs
   ============================================================ */
.camera-slider {
  margin-top: 22px;
  background: linear-gradient(180deg, #fff 0%, #f5f8fc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(11,31,58,.06);
}
.cs-title { margin-bottom: 12px; }
.cs-eyebrow {
  display: inline-block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ef6c1a;
  font-weight: 800;
  margin-bottom: 4px;
}
.cs-title h3 {
  margin: 0;
  font-family: "Libre Franklin", sans-serif;
  font-size: 17px;
  line-height: 1.3;
  color: #0b1f3a;
  font-weight: 800;
}
.cs-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0b1f3a;
  border-radius: 10px;
  overflow: hidden;
  user-select: none;
}
.cs-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.cs-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}
.cs-slide.cs-active {
  opacity: 1;
  pointer-events: auto;
}
.cs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cs-slide figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px 14px 12px;
  background: linear-gradient(0deg, rgba(11,31,58,.88) 0%, rgba(11,31,58,0) 100%);
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.cs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.92);
  color: #0b1f3a;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  transition: background .15s ease, transform .15s ease;
}
.cs-nav:hover { background: #ef6c1a; color: #fff; transform: translateY(-50%) scale(1.06); }
.cs-nav svg { width: 18px; height: 18px; }
.cs-prev { left: 10px; }
.cs-next { right: 10px; }
.cs-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.cs-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #cdd6e1;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.cs-dots button.active {
  background: #ef6c1a;
  transform: scale(1.25);
}
@media (max-width: 879px) {
  .camera-slider { padding: 12px; }
  .cs-title h3 { font-size: 15px; }
  .cs-nav { width: 32px; height: 32px; }
  .cs-nav svg { width: 16px; height: 16px; }
}
.meet-roland-btn {
  background: linear-gradient(135deg, #ef6c1a 0%, #f7b500 100%) !important;
  padding: 8px 14px !important;
  gap: 8px !important;
  font-size: 12.5px !important;
  font-weight: 900 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  border: 2px solid rgba(255,255,255,.5) !important;
  box-shadow: 0 6px 18px rgba(239,108,26,.5), 0 0 0 3px rgba(239,108,26,.16) !important;
  animation: meetRolandPulse 2.4s ease-in-out infinite;
  bottom: 14px !important;
}
.meet-roland-btn .mvb-label {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.meet-roland-btn .mvb-play {
  width: 22px !important; height: 22px !important;
  background: #fff !important;
  color: #ef6c1a !important;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.meet-roland-btn .mvb-play svg { width: 11px !important; height: 11px !important; }
.meet-roland-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 10px 26px rgba(239,108,26,.6), 0 0 0 4px rgba(239,108,26,.2) !important;
}
@keyframes meetRolandPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(239,108,26,.5), 0 0 0 3px rgba(239,108,26,.16); }
  50%      { box-shadow: 0 6px 18px rgba(239,108,26,.6), 0 0 0 10px rgba(239,108,26,.05); }
}
@media (prefers-reduced-motion: reduce) {
  .meet-roland-btn { animation: none; }
}
@media (min-width: 880px) {
  .meet-roland-btn {
    padding: 14px 26px !important;
    font-size: 17px !important;
    letter-spacing: .08em !important;
    gap: 11px !important;
    bottom: 24px !important;
  }
  .meet-roland-btn .mvb-play { width: 32px !important; height: 32px !important; }
  .meet-roland-btn .mvb-play svg { width: 16px !important; height: 16px !important; }
}
.hero-mobile-van { position: relative; }
.comm-hero .col-text { display: flex; flex-direction: column; }
.comm-hero .col-text .cta-row { margin-top: auto; }
.block.guru .two-col.media-left { align-items: stretch; }
.block.guru .two-col.media-left .col-text { display: flex; flex-direction: column; }
.block.guru .two-col.media-left .col-text .cta-row { margin-top: auto; }
.block.guru .two-col.media-left .col-media { display: flex; }
.block.guru .two-col.media-left .col-media .section-photo { display: flex; flex-direction: column; width: 100%; }
.block.guru .two-col.media-left .col-media .section-photo img { height: 100%; object-fit: cover; flex: 1 1 auto; min-height: 0; }
@media (max-width: 640px) {
  .block.guru .two-col.media-left .col-media .section-photo img { height: auto; object-fit: contain; }
}
.hero-reviews-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 22px 0; }
.hero-reviews-cta .stars { display: inline-flex; gap: 2px; }
.hero-reviews-cta .stars svg { width: 20px; height: 20px; }
.res-hero .col-media { display: flex; flex-direction: column; }
.hero-mobile-img { display: none; }
@media (max-width: 640px) {
  .res-hero .hero-desktop-img { display: none; }
  .hero-mobile-img { display: block; }
  .hero-mobile-img img { width: 100%; height: auto; border-radius: var(--radius); }
}
@media (max-width: 640px) {
  .res-hero { align-items: stretch !important; }
  .hero .two-col.res-hero .col-text { order: 2; }
  .hero .two-col.res-hero .col-media { order: 1; margin-bottom: 22px; }
  .res-hero .hero-fill-photo { height: auto; }
  .res-hero .hero-fill-photo img { height: auto; object-fit: contain; max-height: none; width: 100%; border-radius: var(--radius); }
}
.hero .col-text .hero-promise { margin-top: auto; margin-bottom: 0; }
.hero-tech {
  margin-top: 22px; padding: 24px 24px 20px; border-radius: var(--radius);
  background: linear-gradient(160deg, #14365c, #0e2742); color: #fff; box-shadow: var(--shadow);
}
.hero-tech .ht-title { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.25; }
.hero-tech .ht-list { display: grid; gap: 14px; }
.hero-tech .ht-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; color: #cdddf0; }
.hero-tech .ht-list li strong { color: #fff; }
.hero-tech .ht-ic { flex: none; width: 34px; height: 34px; border-radius: 9px; background: rgba(127,178,236,.16); display: grid; place-items: center; }
.hero-tech .ht-ic svg { width: 18px; height: 18px; color: #8fc0f5; }
.hero h1 { font-size: clamp(34px, 4.6vw, 54px); font-weight: 800; letter-spacing: -.02em; line-height: 1.08; }
.hero h1 .hl-accent {
  color: var(--orange); position: relative; white-space: nowrap;
}
.hero h1 .hl-accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.04em;
  height: 0.12em; background: var(--orange); opacity: .28; border-radius: 4px;
}
.hero .h2sub { font-size: var(--t-lead); font-weight: 600; color: var(--blue-700); margin-top: 18px; font-family: var(--font-head); line-height: 1.3; }
.hero .lead p { color: var(--muted); margin-top: 16px; font-size: 18px; }
.hero .lead p:first-child { margin-top: 22px; }
/* keep the three hero CTAs on one row */
.hero .cta-row { gap: 12px; flex-wrap: nowrap; }
.hero .cta-row .btn { padding: 13px 17px; font-size: 15px; }
.hero .cta-row .btn svg { width: 16px; height: 16px; }
@media (max-width: 1100px) and (min-width: 641px) {
  .hero .cta-row { flex-wrap: wrap; }
}
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 10px 12px; margin-top: 30px;
}
.hero-badges {
  margin-top: 20px; justify-content: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 14px; font-size: 14px; font-weight: 700; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.badge svg { width: 15px; height: 15px; color: var(--good); }
.badge.gold svg { color: var(--gold); }
.hero-promise {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 30px;
  background: linear-gradient(180deg, #fff6f0, #fdeede);
  border: 1.5px solid #f6c9a6; color: var(--ink);
  font-family: var(--font-head); font-weight: 700; padding: 14px 22px 14px 14px;
  border-radius: 14px; font-size: 17px; line-height: 1.3;
  box-shadow: 0 8px 22px rgba(239,108,26,.16);
}
.hero-promise .hp-icon {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  background: var(--orange); display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(239,108,26,.35);
}
.hero-promise .hp-icon svg { width: 21px; height: 21px; color: #fff; }
.hero-promise .hp-text strong { color: var(--orange-600); white-space: nowrap; }
.col-media .hero-promise { display: flex; margin-top: 24px; width: 100%; box-sizing: border-box; }
/* clickable phone-link version */
a.hero-promise { text-decoration: none; color: inherit; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
a.hero-promise:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(239,108,26,.24); background: linear-gradient(180deg, #fff1e6, #fde2cc); }
a.hero-promise:active { transform: translateY(0); }
a.hero-promise .hp-text { color: #4a5468; }
a.hero-promise .hp-text strong { color: var(--orange-600); }

/* inline text-link button for opening review popup */
.inline-review-link { background: none; border: 0; padding: 0; margin: 0; font: inherit; color: var(--orange-600); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; transition: color .15s ease; }
.inline-review-link:hover { color: var(--orange); text-decoration-thickness: 2px; }

/* mobile/desktop CTA visibility helpers */
.cta-mobile-only { display: none; }
@media (max-width: 768px) {
  .cta-desktop-only { display: none !important; }
  .cta-mobile-only { display: flex; flex-wrap: wrap; gap: 12px; }
  .hide-on-mobile { display: none; }
}
.hero-more {
  margin-top: 26px; font-family: var(--font-head); font-weight: 700;
  font-size: 17px; color: var(--ink);
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 9px 10px; margin-top: 14px;
}
.service-tags li {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-tint); border: 1px solid #cfe0f3; color: var(--navy);
  font-weight: 700; font-size: 14px; padding: 8px 13px; border-radius: 9px;
}
.service-tags li svg { width: 16px; height: 16px; color: var(--blue); flex: none; }
.services-box {
  position: relative; margin-top: 28px; padding: 26px 24px 22px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.services-box .services-label {
  position: absolute; top: -12px; left: 22px;
  background: var(--navy); color: #fff; font-family: var(--font-head);
  font-weight: 800; font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.services-box .hero-more { margin-top: 4px; }
.services-box .service-tags { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.services-box .service-tags li { justify-content: flex-start; }
@media (max-width: 480px) { .services-box .service-tags { grid-template-columns: 1fr; } }
.services-box + .cta-row { margin-top: 28px; }
.hero-photo { margin: 0; }
.hero-photo img {
  width: 100%; height: auto; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); display: block;
}
.hero-photo figcaption {
  margin-top: 12px; text-align: center; font-size: 14px; font-weight: 600;
  color: var(--muted-2); letter-spacing: .01em;
}
.hero-photo-2 { margin-top: 22px; }
.hero .two-col:has(.hero-fill-photo) { align-items: stretch; }
.hero-fill-photo { height: 100%; margin: 0; }
.hero-fill-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); display: block; }
@media (max-width: 640px) { .hero-fill-photo { height: auto; } .hero-fill-photo img { height: auto; max-height: 420px; } }

/* ---------- Trust bar / ticker ---------- */
.trustbar { background: var(--navy); color: #fff; overflow: hidden; }
.ticker { display: flex; gap: 0; width: max-content; animation: scrollx 38s linear infinite; }
.ticker:hover { animation-play-state: paused; }
.ticker .t-item {
  display: flex; align-items: center; gap: 10px; padding: 18px 30px;
  font-weight: 700; font-size: 15.5px; white-space: nowrap; color: #eaf2fb;
}
.ticker .t-item svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.ticker .t-sep { width: 1px; align-self: center; height: 20px; background: rgba(255,255,255,.16); }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Trust / reviews section ---------- */
.rating-hero { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 14px; }
.trust-emblem {
  width: 300px; height: auto; flex: none;
}
.trust-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px; max-width: 100%;
}
@media (max-width: 640px) {
  .trust-head { flex-direction: column-reverse; align-items: center; text-align: center; }
  .trust-head .trust-emblem { width: 200px; margin: 0 auto; }
}
.rating-num { font-family: var(--font-head); font-weight: 800; font-size: 46px; color: var(--ink); line-height: 1; }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 22px; height: 22px; color: var(--gold); }
.rating-meta { color: var(--muted); font-weight: 600; font-size: 15px; }
.rating-meta strong { color: var(--ink); }

.includes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px;
  margin-top: 8px;
}
.includes.one-col { grid-template-columns: 1fr; }
.five-stack { display: flex; flex-direction: column; }
.five-row .five-stack { height: 100%; justify-content: space-between; }
.five-stack .five-stack-fill img { height: auto; object-fit: contain; }
.coverage-row .five-stack-fill { margin-top: 18px; }
.coverage-row .five-stack-fill img { max-height: 460px; width: auto; max-width: 100%; display: block; margin: 0 auto; border-radius: var(--radius); }
.playback-band { margin: 36px auto 0; max-width: 360px; }
.playback-band img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
@media (max-width: 640px) { .five-stack { height: auto; } .five-stack .five-stack-fill img { height: auto; } }
.includes li {
  display: flex; gap: 13px; align-items: center; font-size: 16.5px; font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--good);
  border-radius: var(--radius-sm); padding: 16px 18px; box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .15s ease;
}
.includes li:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.includes li svg {
  width: 18px; height: 18px; color: #fff; flex: none;
  background: var(--good); border-radius: 50%; padding: 4px; box-sizing: content-box;
}

/* review cards */
.review-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.review-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px;
}
.review-card .rc-stars { display: inline-flex; gap: 2px; }
.review-card .rc-stars svg { width: 17px; height: 17px; color: var(--gold); }
.review-card p { color: var(--ink); font-size: 16.5px; }
.review-card .rc-author { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.review-card .rc-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; font-weight: 800; font-family: var(--font-head); flex:none; }
.review-card .rc-name { font-weight: 700; font-size: 15px; }
.review-card .rc-sub { font-size: 13px; color: var(--muted-2); }
.gwidget-note {
  margin-top: 22px; font-family: ui-monospace, Menlo, monospace; font-size: 12.5px;
  color: var(--muted-2); display: flex; align-items: center; gap: 8px; justify-content: center;
}
.gwidget-note svg { width: 15px; height: 15px; }
.reviews-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.reviews-cta-note { color: var(--muted); font-size: 14.5px; font-weight: 600; margin-top: 14px; text-align: center; font-style: italic; }
.reviews-open { cursor: pointer; }
.reviews-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.reviews-modal[hidden] { display: none; }
.reviews-modal-backdrop { position: absolute; inset: 0; background: rgba(10,24,40,.66); backdrop-filter: blur(3px); }
.reviews-modal-box {
  position: relative; width: 100%; max-width: 760px; height: min(82vh, 760px);
  background: var(--bg); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
  animation: rmpop .18s ease;
}
@keyframes rmpop { from { transform: translateY(10px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.reviews-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; background: #fff; border-bottom: 1px solid var(--border); flex: none;
}
.reviews-modal-head .rm-title { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 800; font-size: 17px; color: var(--ink); }
.rm-close { width: 38px; height: 38px; border: none; background: #eef2f7; border-radius: 9px; color: var(--ink); cursor: pointer; display: grid; place-items: center; }
.rm-close:hover { background: #e2e8f1; }
.rm-close svg { width: 20px; height: 20px; }
.reviews-modal-body { flex: 1 1 auto; min-height: 0; background: #fff; }
.rm-frame { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 640px) {
  .reviews-modal { padding: 0; }
  .reviews-modal-box { max-width: none; height: 100%; border-radius: 0; }
  #videoModal .reviews-modal-head { position: absolute; top: 0; left: 0; right: 0; z-index: 5; background: rgba(0,0,0,.6); border-bottom: 0; }
  #videoModal .reviews-modal-head .rm-title { color: #fff; }
  #videoModal .reviews-modal-head .rm-close { background: rgba(255,255,255,.18); color: #fff; }
  #videoModal .reviews-modal-body { background: #000; }
  #videoModal .rm-frame { width: 100%; height: 100%; }
}

/* ---------- Bullets (styled) ---------- */
.bullets { display: grid; gap: 16px; margin-top: 26px; }
.bullets li { display: flex; gap: 14px; align-items: flex-start; font-size: 17.5px; color: var(--ink); }
.bullets li .bdot {
  flex: none; width: 26px; height: 26px; border-radius: 7px; margin-top: 1px;
  display: grid; place-items: center; background: var(--blue-tint); color: var(--blue);
}
.bullets li .bdot svg { width: 15px; height: 15px; }
.bullets.warn li .bdot { background: var(--warn-tint); color: var(--warn); }
.lead-text { color: var(--muted); font-size: var(--t-lead); margin-top: 18px; }
/* Contextual body links — site-wide */
.lead-text a, .lead p a, .subpage-body p a, .ai-ref a, .faq-item p a, .proof-specs li a, .proof-review blockquote a, .h2sub a, .sub a, .ock-region p a {
  color: #ef6c1a;
  text-decoration: none;
  border-bottom: 1px dotted #ef6c1a;
  transition: color .15s ease, border-color .15s ease;
}
.lead-text a:hover, .lead p a:hover, .subpage-body p a:hover, .ai-ref a:hover, .faq-item p a:hover, .proof-specs li a:hover, .proof-review blockquote a:hover, .h2sub a:hover, .sub a:hover, .ock-region p a:hover {
  color: #0f3a73;
  border-bottom-color: #0f3a73;
}
.insights { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.insights li {
  display: flex; gap: 16px; align-items: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 18px; box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .15s ease;
}
.insights li:hover { transform: translateX(3px); box-shadow: var(--shadow); }
.insights .ins-num {
  flex: none; font-family: var(--font-head); font-weight: 800; font-size: 20px;
  color: var(--orange); width: 42px; height: 42px; border-radius: 11px;
  background: #fff4ec; border: 1.5px solid #f6cda9; display: grid; place-items: center;
}
.insights p { margin: 0; font-size: 16.5px; color: var(--ink); line-height: 1.5; }
.gv-problems .col-text { display:flex; flex-direction:column; }
.gv-problems .insights { flex:1 1 auto; display:flex; flex-direction:column; justify-content:space-between; }
@media (max-width:760px){ .gv-problems .insights { display:grid; } }
.insights.insights-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:28px; }
@media (max-width:760px){ .insights.insights-grid { grid-template-columns:1fr; } }
.insights.insights-feature { list-style:none; padding:0; margin:0; max-width:920px; margin:0 auto; }
.insights.insights-feature li { background:#fff; border:1px solid var(--border); border-left:4px solid var(--orange); border-radius:var(--radius); padding:24px 26px; box-shadow:var(--shadow-sm); display:flex; gap:18px; align-items:center; }
.hero .hero-card-band { max-width:920px; margin-left:auto; margin-right:auto; }
.hero .hero-card-band .insights-feature li { background:rgba(255,255,255,.06); border-color:rgba(127,178,236,.28); color:#fff; }
.hero .hero-card-band .insights-feature li strong { color:#fff; }
.hero .hero-card-band .insights-feature li p { color:#cdddf0; }
.failures { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
.failures li {
  display: flex; gap: 13px; align-items: center; font-size: 16px; color: var(--ink);
  background: #fdf2f1; border: 1px solid #f3cdc8; border-left: 4px solid var(--warn);
  border-radius: var(--radius-sm); padding: 15px 17px;
}
.failures .fx-x {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--warn); color: #fff; display: grid; place-items: center;
}
.failures .fx-x svg { width: 14px; height: 14px; }
@media (max-width: 760px) { .failures { grid-template-columns: 1fr; } }
.closing-line {
  position: relative; margin-top: 30px; padding: 26px 28px 26px 34px;
  border-radius: var(--radius); overflow: hidden;
  background: #fbe4e1;
  color: #7d2a22; font-weight: 700; font-size: 20px; line-height: 1.5;
  font-family: var(--font-head); letter-spacing: -.005em;
  border: 3px solid var(--warn); box-shadow: 0 14px 30px rgba(192,57,43,.18);
}
.closing-line::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 9px;
  background: var(--warn);
}
.closing-line strong { color: var(--warn); }

/* GuruVision premium */
.guru { background: linear-gradient(180deg, #0e2742 0%, #14365c 100%); color: #eaf2fb; }
.guru h2.headline, .guru .lead-text, .guru .bullets li { color: #fff; }
.guru .bullets li strong { color: #fff; font-weight: 800; }
/* Body links on the dark GuruVision section — keep orange normal, hover to gold (not navy) */
.guru .lead-text a, .guru p a {
  color: #ff9651;
  border-bottom-color: #ff9651;
}
.guru .lead-text a:hover, .guru p a:hover {
  color: #f7b500;
  border-bottom-color: #f7b500;
}
.guru .lead-text { color: #b9cde4; }
.guru .bullets li .bdot { background: rgba(127,178,236,.18); color: #8fc0f5; }
.guru .eyebrow { color: #7fb2ec; }
.guru .brandchips { display: flex; gap: 10px; margin-top: 26px; margin-bottom: 30px; flex-wrap: wrap; }
.guru .brandchip { font-size: 13px; font-weight: 700; letter-spacing:.04em; color: #cfe0f3; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: 8px 14px; border-radius: 999px; }
.guru .btn-secondary { background: transparent; color: #fff; border-color: #6f9fd4; }
.guru .btn-secondary:hover { background: rgba(255,255,255,.08); }
.guru .btn-form { background: var(--good); color: #fff; border-color: var(--good); }
.guru .ph { background: repeating-linear-gradient(45deg,#1c3f64 0 14px,#193a5d 14px 28px); border-color: rgba(255,255,255,.25); }
.guru .ph .ph-label { background: rgba(14,39,66,.8); color:#cfe0f3; border-color: rgba(255,255,255,.2); }
.guru .ph .ph-label strong { color:#8fc0f5; }
.guru .section-photo figcaption { color: #b9cde4; }
.guru-callout {
  display: flex; align-items: center; gap: 16px;
  margin: 22px 0; padding: 20px 24px;
  background: rgba(127,178,236,.10);
  border: 1.5px solid rgba(127,178,236,.35); border-left: 5px solid var(--orange);
  border-radius: var(--radius);
}
.guru-callout .gc-icon {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  background: var(--orange); display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(239,108,26,.35);
}
.guru-callout .gc-icon svg { width: 22px; height: 22px; color: #fff; }
.guru-callout p {
  margin: 0; font-family: var(--font-head); font-weight: 700;
  font-size: 19px; line-height: 1.4; color: #eaf2fb;
}
.guru-callout p strong { color: #fff; }
/* in this section, let the gap distribute above & below the callout */
.guru.block .align-bottoms .col-media { justify-content: flex-start; }
.guru.block .align-bottoms .col-media .guru-callout { margin-top: auto; }
.guru.block .align-bottoms .col-media > .section-photo:last-child { margin-top: auto; }
.guru.block .align-bottoms .col-text .cta-row { margin-top: 0; }

/* ---------- Who We Protect ---------- */
.panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.panel {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.panel .ph { border-radius: 0; border: none; background: #e7eef7; }
.panel .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.panel .p-body { padding: 26px; }
.panel h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.panel p { color: var(--muted); font-size: 16.5px; }
.panel-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-family: var(--font-head); font-weight: 800; font-size: 15px; color: var(--blue); }
.panel-link svg { width: 17px; height: 17px; transition: transform .15s; }
.panel-link:hover svg { transform: translateX(3px); }
.chooser-section { background: var(--bg); }
.chooser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.chooser-card { display: flex; gap: 20px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .14s ease, box-shadow .18s ease, border-color .15s; }
.chooser-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); }
.chooser-ic { flex: none; width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(150deg, var(--blue), var(--navy)); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.chooser-ic svg { width: 28px; height: 28px; color: #fff; }
.chooser-body { display: flex; flex-direction: column; gap: 7px; }
.chooser-body > strong { font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--ink); }
.chooser-body > span { color: var(--muted); font-size: 16px; line-height: 1.5; }
.chooser-go { display: inline-flex !important; align-items: center; gap: 7px; margin-top: 4px; color: var(--blue) !important; font-family: var(--font-head); font-weight: 800; font-size: 15px; }
.chooser-go svg { width: 17px; height: 17px; transition: transform .15s; }
.chooser-card:hover .chooser-go svg { transform: translateX(3px); }
@media (max-width: 760px) { .chooser-grid { grid-template-columns: 1fr; } }

/* ---------- Differentiation before/after ---------- */
.beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0 8px; }
.ba-item { position: relative; }
.ba-tag {
  position: absolute; top: 14px; left: 14px; z-index: 3; font-family: var(--font-head);
  font-weight: 800; font-size: 13px; letter-spacing: .12em; padding: 7px 14px; border-radius: 999px; color: #fff;
}
.ba-tag.before { background: var(--warn); }
.ba-tag.after  { background: var(--good); }
.ba-img { border: none; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.diff-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 36px; margin-top: 12px; }
.diff-bullets li { display: flex; gap: 13px; align-items: flex-start; font-size: 17px; }
.diff-bullets li svg { width: 22px; height: 22px; color: var(--good); flex: none; margin-top: 2px; }

/* ---------- Reviews + Map ---------- */
.mapwrap { margin-top: 40px; }
.mapwrap .gmap {
  width: 100%; height: 420px; border: 0; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
@media (max-width: 640px) { .mapwrap .gmap { height: 320px; } }
.map-ph { aspect-ratio: 21/8; }
.map-ph .ph-label { background: rgba(255,255,255,.85); }

/* ---------- FAQ ---------- */
.pricing-statement {
  background: var(--blue-tint); border: 1px solid #cfe0f3; border-radius: var(--radius);
  padding: 26px 28px; margin: 34px 0 40px; font-size: 18px; color: var(--navy);
}
.pricing-statement strong { color: var(--blue-700); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px; }
.faq-item { }
.faq-item h3 {
  font-size: 19px; font-weight: 800; color: var(--ink); margin-bottom: 8px;
  display: flex; gap: 11px; align-items: flex-start;
}
.faq-item h3 .q { color: var(--blue); flex: none; }
.faq-item p { color: var(--muted); font-size: 16.5px; }

/* ---------- Final CTA ---------- */
.finalcta {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(239,108,26,.16), transparent 55%),
    linear-gradient(180deg, #0e2742, #0a1c30);
  color: #fff; text-align: center;
}
.finalcta .eyebrow { color: #7fb2ec; }
.finalcta h2.headline { color: #fff; margin: 0 auto; max-width: 22ch; }
.finalcta .sub { color: #b9cde4; font-family: var(--font-head); font-weight: 600; font-size: var(--t-h3); margin-top: 16px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 54px 0 12px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); text-align: left; }
.step .num {
  width: 46px; height: 46px; border-radius: 12px; background: var(--orange);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 22px; color: #fff;
  margin-bottom: 16px; box-shadow: 0 8px 18px rgba(239,108,26,.35);
}
.step h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.step p { color: #aac2dd; font-size: 15.5px; }
.finalcta .cta-row { justify-content: center; margin-top: 44px; align-items: center; }
.finalcta .btn-primary { font-size: 19px; padding: 19px 34px; }   /* largest button on page */
.finalcta .btn-secondary { background: transparent; color:#fff; border-color:#6f9fd4; }
.finalcta .btn-secondary:hover { background: rgba(255,255,255,.08); }
.finalcta .btn-form { background: var(--good); color:#fff; border-color: var(--good); }
.ai-ref { margin: 46px auto 0; max-width: 850px; color: #7e98b4; font-size: 14px; line-height: 1.7; }

/* ---------- Contact form ---------- */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact .info p { color: var(--muted); margin-top: 16px; font-size: 17.5px; }
.contact .info .infolist { margin-top: 26px; display: grid; gap: 16px; }
.contact .info .infolist li { display: flex; gap: 14px; align-items: flex-start; }
.contact .info .infolist li > span:last-child { display: flex; flex-direction: column; gap: 3px; }
.contact .info .infolist svg { width: 22px; height: 22px; color: var(--blue); flex:none; margin-top: 2px; }
.contact .info .infolist .lbl { display: block; font-size: 13px; letter-spacing:.08em; text-transform:uppercase; color: var(--muted-2); font-weight:700; }
.contact .info .infolist .val { display: block; font-weight: 700; color: var(--ink); font-size: 17px; }
.contact .info .infolist a.val:hover { color: var(--blue); }
.contact-cta {
  margin-top: 30px; padding: 30px 28px; border-radius: var(--radius);
  background: linear-gradient(160deg, #14365c, #0e2742); color: #fff;
  box-shadow: var(--shadow);
}
.contact-cta h3 { color: #fff; font-size: 22px; font-weight: 800; line-height: 1.25; }
.contact-cta p { color: #b9cde4; font-size: 16.5px; margin-top: 10px; }
.contact-cta .btn-primary { margin-top: 20px; }
.contact-cta-note { display: block; margin-top: 14px; font-size: 14px; color: #8fb0d4; font-weight: 600; }
.form-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.form-card .fc-sub { color: var(--muted); font-size: 16px; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  padding: 13px 15px; border: 1px solid var(--border); border-radius: 10px; background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--blue); border-color: var(--blue); }
.radio-row { display: flex; gap: 12px; }
.radio-pill { flex: 1; }
.radio-pill input { position: absolute; opacity: 0; }
.radio-pill span { display: block; text-align: center; padding: 12px; border: 1px solid var(--border); border-radius: 10px; font-weight: 700; cursor: pointer; background: #fff; }
.radio-pill input:checked + span { border-color: var(--blue); background: var(--blue-tint); color: var(--blue-700); }
.form-card .btn-primary { width: 100%; margin-top: 6px; }
.form-note { text-align: center; font-size: 13px; color: var(--muted-2); margin-top: 14px; }

/* ---------- Footer ---------- */
.footer { background: #0c2138; color: #b7c8db; padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer .f-brand .bname { font-family: var(--font-head); font-weight: 700; color: #c7d6e6; font-size: 13px; letter-spacing:.06em; }
.footer-logo { width: 230px; max-width: 100%; height: auto; display: block; margin-bottom: 18px; }
.footer .f-brand .since { color: var(--orange); font-weight: 700; font-size: 14px; letter-spacing:.06em; margin-top: 6px; }
.footer .f-brand p { margin-top: 16px; font-size: 15px; color: #93a8c0; max-width: 34ch; }
.footer .f-social { display: flex; gap: 12px; margin-top: 20px; }
.footer .f-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); color: #c7d6e6; transition: background .18s ease, color .18s ease, transform .18s ease; }
.footer .f-social a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.footer .f-social svg { width: 19px; height: 19px; }

/* ---------- Profiles / Find Us Online page ---------- */
.profiles-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.profile-card { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .14s ease, box-shadow .16s ease, border-color .16s ease; height: 100%; }
.profile-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); }
.profile-card .pc-icon { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; flex: none; color: #fff; }
.profile-card .pc-icon svg { width: 27px; height: 27px; }
.profile-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--navy); }
.profile-card p { color: var(--muted); font-size: 15px; line-height: 1.5; flex: 1; }
.profile-card .pc-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 800; font-size: 14.5px; color: var(--blue); margin-top: 2px; }
.profile-card .pc-link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.profile-card:hover .pc-link svg { transform: translateX(3px); }
.pc-google { background: #4285f4; }
.pc-facebook { background: #1877f2; }
.pc-instagram { background: linear-gradient(135deg, #f9ce34, #ee2a7b 45%, #6228d7); }
.pc-bing { background: #008373; }
.pc-yelp { background: #d32323; }
.pc-bbb { background: #0a4f9c; }
.pc-mapquest { background: #1066c4; }
.pc-yellowpages { background: #ffcb00; color: #1a1a1a !important; }
.pc-chamber { background: #1f6b3b; }
@media (max-width: 860px) { .profiles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .profiles-grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-head); }
.footer ul.fcol { display: grid; gap: 11px; }
.footer ul.fcol a { font-size: 15.5px; color: #b7c8db; }
.footer ul.fcol a:hover { color: #fff; }
.footer .fcontact div { margin-bottom: 14px; }
.footer .fcontact .lbl { font-size: 12px; letter-spacing:.08em; text-transform:uppercase; color:#7990aa; font-weight:700; }
.footer .fcontact a, .footer .fcontact span { color: #e4edf6; font-weight: 600; font-size: 15.5px; }
.footer .fcontact a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: #7990aa;
}

/* ---------- Mobile sticky call bar ---------- */
.mobile-callbar { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  :root { --sp: 72px; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; padding: 0;
    margin-left: auto; order: 3;
  }
  .nav-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; margin: 0 auto; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav .container { flex-wrap: wrap; }
  .nav-links {
    display: none; order: 4; flex-basis: 100%; flex-direction: column; gap: 0;
    margin: 0; padding: 8px 0 14px; border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links { align-items: stretch; }
  .nav-links > a { padding: 13px 4px; font-size: 17px; border-bottom: 1px solid rgba(255,255,255,.12); border-radius: 0; background: transparent; border-top: none; border-left: none; border-right: none; color: #fff; }
  .nav-item { width: 100%; }
  .nav-drop-toggle { width: 100%; justify-content: space-between; padding: 13px 4px; font-size: 17px; border-bottom: 1px solid rgba(255,255,255,.12); border-radius: 0; background: transparent; border-top: none; border-left: none; border-right: none; color: #fff; }
  .dropdown a { color: #e6eef8 !important; }
  .dropdown a:hover, .dropdown a:active, .dropdown a:focus { background: rgba(127,178,236,.18) !important; color: #fff !important; }
  .dropdown {
    position: static; display: none; box-shadow: none; border: none; min-width: 0;
    padding: 4px 0 8px 14px; background: transparent;
  }
  .dropdown::before { display: none; }
  .nav-item:hover .dropdown { display: none; }
  .nav-item.open .dropdown { display: block; }
  .nav-item.open .nav-drop-toggle .chev { transform: rotate(180deg); }
  .dropdown a { font-size: 16px; padding: 9px 10px; }
  .nav-cta { order: 2; }
  .nav-cta .nav-call { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 38px; }
  .two-col.media-left .col-media { order: -1; }
  .hero .col-media { order: -1; }            /* keep media after text on mobile? spec: text top, video below */
  .hero .two-col .col-media { order: 0; }
  .panels { grid-template-columns: 1fr; }
  .review-strip { grid-template-columns: 1fr; }
  .includes { grid-template-columns: 1fr; }
  .diff-bullets { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid .form-card { order: -1; }
}

@media (max-width: 640px) {
  :root { --sp: 56px; --t-body: 17px; }
  .topbar .tb-addr { display: none; }        /* hide long address on mobile */
  .topbar .container { justify-content: center; padding: 0 12px; gap: 8px; font-size: 12px; flex-wrap: nowrap; }
  .topbar .tb-name { font-size: 12px; }
  .topbar a.tb-phone { font-size: 12.5px; }
  .container { padding: 0 16px; }

  /* media below text on mobile for two-col + hero */
  .two-col { display: flex; flex-direction: column; }
  .two-col .col-media { order: 2; }
  .two-col .col-text  { order: 1; }
  .hero .two-col .col-text { order: 1; }
  .hero .two-col .col-media { order: 2; }
  .hero-mobile-van { display: block; margin-bottom: 22px; }
  .hero-van-desktop { display: none; }

  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }             /* full-width buttons on mobile */
  .beforeafter { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer .f-brand { text-align: center; }
  .footer .f-brand .footer-logo { margin-left: auto; margin-right: auto; }
  .footer .f-brand p { margin-left: auto; margin-right: auto; }
  .footer .f-social { justify-content: center; }
  .rating-num { font-size: 38px; }
  .nav .container { gap: 12px; }
  .brand .btag { display: none; }

  /* sticky bottom call bar */
  .mobile-callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    box-shadow: 0 -6px 20px rgba(0,0,0,.16);
  }
  .mobile-callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 8px; font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff; white-space: nowrap; }
  .mobile-callbar a svg { width: 17px; height: 17px; flex: none; }
  @media (max-width: 380px){ .mobile-callbar a { font-size: 13.5px; padding: 14px 6px; gap: 6px; } }
  .mobile-callbar .mc-call { background: var(--orange); }
  .mobile-callbar .mc-text { background: var(--blue); }
  body { padding-bottom: 56px; }
}
