/* ═══════════════════════════════════════════
   BK WIRELESS — GLOBAL STYLESHEET
   Mobile-first. Brand: #c41e3a
   Fonts: Syne (display) / DM Sans (body)
═══════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --red:     #c41e3a;
  --red-dark:#a01629;
  --black:   #0A0A0A;
  --charcoal:#141414;
  --dark2:   #1c1c1c;
  --light:   #F5F5F5;
  --white:   #ffffff;
  --text:    #111111;
  --text2:   #3d3d3d;
  --text3:   #666666;
  --border:  #e2e2e2;
  --fd: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --max: 1100px;
  --gap: 3px;          /* between grid cards */
  --section: 44px;     /* mobile section padding */
  --side: 18px;        /* mobile side padding */
}

/* ─── RESET ─── */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
  padding-bottom: 64px; /* sticky bar clearance */
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--black);
  border-bottom: 3px solid var(--red);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--side); height: 58px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; flex-shrink: 0;
}
.logo-ph {
  width: 32px; height: 32px;
  border: 1.5px dashed rgba(196,30,58,.5); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd); font-size: 7px; font-weight: 700;
  color: rgba(196,30,58,.55); text-align: center; line-height: 1.3;
  flex-shrink: 0;
}
/* swap .logo-ph for <img src="/images/logo.png" alt="BK Wireless" height="32"> when ready */
.wordmark {
  font-family: var(--fd); font-size: 18px; font-weight: 800;
  letter-spacing: 1.5px; color: var(--white);
}
.wordmark span { color: var(--red); }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 42px; height: 42px; cursor: pointer;
  padding: 9px; background: none;
  border: 1.5px solid #282828; border-radius: 3px; flex-shrink: 0;
}
.hamburger span {
  display: block; height: 2px; background: var(--white);
  border-radius: 2px; transition: all .28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Slide-in nav panel */
.nav-panel {
  position: fixed; top: 61px; right: 0;
  width: min(280px, 85vw);
  background: var(--black);
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  z-index: 999;
  transform: translateX(110%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 8px 24px rgba(0,0,0,.6);
}
.nav-panel.open { transform: translateX(0); }
.nav-panel a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--fd); font-size: 14px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  color: #ccc; padding: 15px 22px; text-decoration: none;
  border-bottom: 1px solid #1a1a1a; transition: all .2s;
}
.nav-panel a::after { content: '›'; color: var(--red); font-size: 16px; }
.nav-panel a:hover, .nav-panel a.active {
  color: var(--white); background: rgba(196,30,58,.1);
}
.panel-cta {
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid #1a1a1a; margin-top: 4px;
}
.panel-cta a {
  font-family: var(--fd); font-weight: 700; font-size: 13px;
  letter-spacing: .8px; text-transform: uppercase;
  text-decoration: none; padding: 13px 14px;
  text-align: center; display: block;
  border: none !important;
}
.panel-cta a::after { display: none !important; }
.pc-call { background: var(--red); color: var(--white) !important; }
.pc-dir  { background: #1a1a1a; color: #aaa !important; border: 1px solid #2a2a2a !important; }

.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 998; display: none; }
.overlay.open { display: block; }

/* ─── LAYOUT ─── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--side); }

/* Page offset */
main { padding-top: 0; min-height: 100vh; }

.sec   { padding: var(--section) 0; }
.sec-light { background: var(--light); }
.sec-dark  { background: var(--black); }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  font-family: var(--fd); font-size: 10px; font-weight: 700;
  letter-spacing: 3.5px; color: var(--red); text-transform: uppercase;
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--red); flex-shrink: 0; }

.h1 {
  font-family: var(--fd);
  font-size: clamp(52px,15vw,88px);
  line-height: .88; font-weight: 800; letter-spacing: -3px;
  color: var(--white); margin-bottom: 20px;
}
.h1 em { color: var(--red); font-style: normal; }

.h2 {
  font-family: var(--fd);
  font-size: clamp(26px,7vw,44px);
  line-height: 1.0; font-weight: 800; letter-spacing: -1px;
  margin-bottom: 12px; color: var(--text);
}
.h2.on-dark { color: var(--white); }

.lead  { font-size: 15px; color: var(--text2); line-height: 1.75; margin-bottom: 24px; }
.lead.light { color: #999; }

/* ─── BUTTONS ─── */
.btn {
  font-family: var(--fd); font-weight: 700; font-size: 13px;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 15px 24px; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: all .2s; border: none; min-height: 50px;
}
.btn-red        { background: var(--red);     color: var(--white); }
.btn-red:hover  { background: var(--red-dark); }
.btn-dark       { background: var(--black);   color: var(--white); }
.btn-dark:hover { background: #1e1e1e; }
.btn-ghost-w    { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.3) !important; }
.btn-ghost-w:hover { border-color: var(--white) !important; }
.btn-ghost-r    { background: transparent; color: var(--red); border: 2px solid var(--red) !important; }
.btn-ghost-r:hover { background: var(--red); color: var(--white); }
.btn-white      { background: var(--white); color: var(--black); }
.btn-white:hover{ background: #f0f0f0; }

/* Button row — stack on mobile, row on wider */
.brow { display: flex; flex-direction: column; gap: 10px; }
.brow .btn { width: 100%; }

/* ─── HERO ─── */
.hero {
  background: var(--black); position: relative; overflow: hidden;
  padding: 44px var(--side) 40px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,30,58,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,30,58,.07) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-glow {
  position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(196,30,58,.2) 0%, transparent 68%);
  pointer-events: none;
}
.hero-body { position: relative; z-index: 2; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 22px; }
.hcheck {
  font-family: var(--fd); font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; color: #bbb;
  display: flex; align-items: center; gap: 5px;
}
.hcheck::before { content: '✓'; color: var(--red); }
.hero-stats { position: relative; z-index: 2; display: flex; gap: 8px; margin-top: 28px; }
.stat {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--red);
  padding: 13px 14px; flex: 1;
}
.stat-n { font-family: var(--fd); font-size: 32px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-n em { color: var(--red); font-style: normal; }
.stat-l { font-size: 10px; color: #666; letter-spacing: 1px; text-transform: uppercase; margin-top: 1px; }

/* ─── BADGE STRIP ─── */
.badge-strip { background: var(--charcoal); display: grid; grid-template-columns: repeat(2,1fr); }
.bs {
  padding: 14px 12px; text-align: center;
  border-right: 1px solid #202020; border-bottom: 1px solid #202020;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.bs:nth-child(2) { border-right: none; }
.bs:nth-child(3), .bs:nth-child(4) { border-bottom: none; }
.bs-ico   { font-size: 20px; margin-bottom: 2px; }
.bs-lbl   { font-family: var(--fd); font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--white); }
.bs-sub   { font-size: 11px; color: #555; }

/* ─── CARD GRIDS (mobile-first) ─── */
/* Services: 2-col mobile → 4-col desktop */
.grid-svc { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--gap); }
/* Pricing: 1-col mobile → 2-col → 3-col desktop */
.grid-price { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
/* Reviews: 1-col mobile → 2-col tablet → 4-col desktop */
.grid-reviews { display: grid; grid-template-columns: 1fr; gap: 12px; }
/* Before/After: 1-col mobile → 3-col desktop */
.grid-ba { display: grid; grid-template-columns: 1fr; gap: var(--gap); }

/* ─── SERVICE CARDS ─── */
.svc {
  background: var(--white); padding: 22px 18px;
  border-top: 3px solid var(--border);
  display: flex; flex-direction: column; gap: 9px;
  text-decoration: none; color: inherit;
  transition: border-color .2s;
}
.svc:active, .svc:hover { border-top-color: var(--red); }
.svc-ico {
  width: 38px; height: 38px; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  clip-path: polygon(0 0,calc(100% - 7px) 0,100% 7px,100% 100%,7px 100%,0 calc(100% - 7px));
}
.svc h3 { font-family: var(--fd); font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.2; }
.svc p  { font-size: 13px; color: var(--text2); line-height: 1.65; flex: 1; }

/* ─── TRUST ROW ─── */
.trust-row { background: var(--black); display: grid; grid-template-columns: repeat(2,1fr); }
.tc {
  padding: 22px 18px;
  border-right: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; gap: 12px; align-items: flex-start;
}
.tc:nth-child(2) { border-right: none; }
.tc-ico   { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.tc-title { font-family: var(--fd); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 3px; display: block; }
.tc-body  { font-size: 12px; color: #666; line-height: 1.55; }

/* ─── PRICING CARDS ─── */
.pcrd {
  background: var(--white); padding: 22px 18px;
  border: 1px solid var(--border); border-top: 3px solid var(--border);
  display: flex; flex-direction: column; gap: 7px;
  transition: border-top-color .2s;
}
.pcrd:hover { border-top-color: var(--red); }
.pcrd h3    { font-family: var(--fd); font-size: 14px; font-weight: 700; color: var(--text); }
.pcrd-from  { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #aaa; }
.pcrd-price { font-family: var(--fd); font-size: 28px; font-weight: 800; color: var(--red); line-height: 1; }
.pcrd p     { font-size: 13px; color: var(--text2); line-height: 1.65; flex: 1; }
.pcrd-link  { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--red); text-decoration: none; margin-top: 4px; }

/* ─── CASH FOR PHONES ─── */
.cash-hero {
  background: var(--black); padding: 44px var(--side);
  position: relative; overflow: hidden;
}
.cash-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(196,30,58,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,30,58,.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cash-glow {
  position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(196,30,58,.15) 0%, transparent 68%);
  pointer-events: none;
}
.cash-body { position: relative; z-index: 2; margin-bottom: 32px; }
.cash-accept { position: relative; z-index: 2; }
.accepts { margin-bottom: 20px; }
.accepts-title { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.accepts-list { display: flex; flex-wrap: wrap; gap: 6px; }
.acc {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  font-family: var(--fd); font-size: 11px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; color: #ccc; padding: 7px 12px;
}
.cond-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; margin-bottom: 22px; }
.cond {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  padding: 16px 14px; display: flex; flex-direction: column; gap: 5px;
}
.cond-grade { font-family: var(--fd); font-size: 28px; font-weight: 800; color: var(--red); line-height: 1; }
.cond-name  { font-family: var(--fd); font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: .5px; }
.cond-desc  { font-size: 12px; color: #666; line-height: 1.5; }

.cash-why { background: var(--light); padding: 40px var(--side); }
.why-grid  { display: grid; grid-template-columns: repeat(2,1fr); gap: 3px; margin-top: 24px; }
.why-item {
  background: var(--white); padding: 20px 16px;
  border-top: 3px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
  transition: border-top-color .2s;
}
.why-item:hover { border-top-color: var(--red); }
.why-ico   { font-size: 22px; }
.why-title { font-family: var(--fd); font-size: 13px; font-weight: 700; color: var(--text); }
.why-desc  { font-size: 13px; color: var(--text2); line-height: 1.6; }

.cash-seo { background: var(--white); padding: 36px var(--side); border-top: 3px solid var(--red); }
.cash-seo h3 { font-family: var(--fd); font-size: clamp(18px,4vw,26px); font-weight: 800; color: var(--text); margin-bottom: 12px; line-height: 1.1; }
.cash-seo p  { font-size: 14px; color: var(--text2); line-height: 1.85; margin-bottom: 14px; }
.cash-seo strong { color: var(--text); }
.cash-steps { display: flex; flex-direction: column; gap: 0; }
.cstep { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cstep:last-child { border-bottom: none; }
.cstep-n     { font-family: var(--fd); font-size: 32px; font-weight: 800; color: #e8e8e8; line-height: 1; flex-shrink: 0; min-width: 36px; }
.cstep-title { font-family: var(--fd); font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.cstep-desc  { font-size: 13px; color: var(--text2); line-height: 1.65; }

/* ─── BEFORE / AFTER ─── */
.ba-card { background: var(--dark2); border: 1px solid #1e1e1e; overflow: hidden; display: flex; flex-direction: column; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; height: 140px; }
.ba-side { display: flex; align-items: center; justify-content: center; position: relative; }
.ba-side.bef { background: #111; border-right: 2px solid var(--red); }
.ba-side.aft { background: #0b160b; }
.ba-ph {
  width: 44px; height: 76px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-family: var(--fd); font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; text-align: center; line-height: 1.4;
}
.ba-ph.brk {
  background: #111; border: 2px dashed #2a2a2a; color: #282828; position: relative;
}
.ba-ph.brk::after {
  content: ''; position: absolute; inset: 0; border-radius: 3px;
  background: repeating-linear-gradient(135deg,transparent,transparent 5px,rgba(196,30,58,.1) 5px,rgba(196,30,58,.1) 6px);
}
.ba-ph.fxd  { background: #0d1f0d; border: 2px solid #1a3a1a; color: #2d7a2d; }
.ba-lbl {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  font-family: var(--fd); font-size: 8px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 2px 7px;
}
.ba-lbl.b { background: rgba(196,30,58,.85); color: #fff; }
.ba-lbl.a { background: rgba(30,100,30,.85); color: #fff; }
.ba-info  { padding: 12px 14px; }
.ba-dev   { font-family: var(--fd); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.ba-desc  { font-size: 12px; color: #555; }
.ba-hint  { padding: 8px 14px; background: #0d0d0d; border-top: 1px solid #181818; font-family: var(--fd); font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #252525; text-align: center; }

/* ─── ABOUT ─── */
.about-wrap { display: grid; grid-template-columns: 1fr; }
.about-l { background: var(--black); padding: 44px var(--side); }
.about-r {
  background: var(--charcoal); border-top: 3px solid var(--red);
  padding: 36px var(--side);
  display: flex; flex-direction: column; justify-content: center; gap: 24px;
}
.astat { display: flex; align-items: flex-start; gap: 14px; }
.astat-n     { font-family: var(--fd); font-size: 40px; font-weight: 800; color: var(--red); line-height: 1; flex-shrink: 0; min-width: 72px; }
.astat-title { font-family: var(--fd); font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.astat-sub   { font-size: 12px; color: #555; line-height: 1.5; }

/* ─── REVIEWS ─── */
.rv {
  background: var(--white);
  border: 1px solid var(--border); border-top: 3px solid var(--red);
  padding: 20px 18px; display: flex; flex-direction: column;
}
.rv-head  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.rv-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.rv-q     { font-family: var(--fd); font-size: 32px; font-weight: 800; color: #ececec; line-height: .8; margin-bottom: 7px; }
.rv-text  { font-size: 14px; color: var(--text2); line-height: 1.72; font-style: italic; flex: 1; margin-bottom: 14px; }
.rv-hr    { height: 1px; background: var(--border); margin-bottom: 12px; }
.rv-foot  { display: flex; align-items: center; gap: 10px; }
.rv-av    { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 13px; font-weight: 800; color: var(--white); flex-shrink: 0; }
.rv-name  { font-family: var(--fd); font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.2; }
.rv-loc   { font-size: 11px; color: #aaa; margin-top: 1px; }
.rv-svc   { display: inline-block; margin-top: 9px; background: var(--light); font-family: var(--fd); font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #888; padding: 3px 8px; border: 1px solid var(--border); }
.g-ico    { width: 16px; height: 16px; opacity: .5; flex-shrink: 0; }

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--red); padding: 44px var(--side);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,.07) 1px,transparent 1px), linear-gradient(90deg,rgba(0,0,0,.07) 1px,transparent 1px);
  background-size: 38px 38px;
}
.cta-band .h2  { color: var(--white) !important; font-size: clamp(22px,6vw,42px); position: relative; z-index: 1; margin-bottom: 10px; }
.cta-band .lead { color: rgba(255,255,255,.88); position: relative; z-index: 1; margin: 0 auto 22px; max-width: 420px; }
.cta-band .brow { position: relative; z-index: 1; justify-content: center; }

/* ─── FAQ ─── */
.faq-cols { display: grid; grid-template-columns: 1fr; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 17px 0; cursor: pointer; gap: 14px; min-height: 52px;
}
.faq-q h4   { font-family: var(--fd); font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--text); }
.faq-tog    { font-size: 24px; color: var(--red); flex-shrink: 0; transition: transform .28s; user-select: none; width: 28px; text-align: center; line-height: 1; }
.faq-item.open .faq-tog { transform: rotate(45deg); }
.faq-a      { display: none; padding: 0 0 17px; font-size: 14px; color: var(--text2); line-height: 1.8; }
.faq-item.open .faq-a { display: block; }

/* ─── COVERAGE ─── */
.cov-split { display: grid; grid-template-columns: 1fr; gap: 3px; margin-top: 6px; }
.cov { padding: 28px var(--side); display: flex; flex-direction: column; gap: 13px; }
.cov-walkin { background: var(--black); }
.cov-mailin { background: var(--charcoal); border-left: 3px solid var(--red); }
.cov-lbl    { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); }
.cov-title  { font-family: var(--fd); font-size: clamp(17px,4vw,22px); font-weight: 800; color: var(--white); line-height: 1.1; }
.cov-desc   { font-size: 14px; color: #888; line-height: 1.7; }
.cov-list   { display: flex; flex-direction: column; gap: 8px; }
.cov-row    { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: #aaa; line-height: 1.5; }
.cov-row::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cov-tags   { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px; }
.cov-tag    { font-family: var(--fd); font-size: 9px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #3a3a3a; border: 1px solid #222; padding: 3px 8px; cursor: default; }
.seo-prose  { margin-top: 22px; padding: 20px 22px; background: var(--white); border-left: 3px solid var(--red); }
.seo-prose h3 { font-family: var(--fd); font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 7px; }
.seo-prose p  { font-size: 13px; color: var(--text2); line-height: 1.85; }

/* ─── GUARANTEE ─── */
.gbar { background: var(--black); border-left: 4px solid var(--red); padding: 24px var(--side); display: flex; align-items: flex-start; gap: 16px; }
.gbar-ico   { font-size: 28px; flex-shrink: 0; }
.gbar-title { font-family: var(--fd); font-size: clamp(16px,3vw,21px); font-weight: 800; color: var(--white); margin-bottom: 5px; }
.gbar-body  { font-size: 13px; color: #777; line-height: 1.7; }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr; }
.contact-info { background: var(--light); padding: 44px var(--side); }
.contact-form { padding: 44px var(--side); }
.info-block   { margin-bottom: 28px; }
.info-label   { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #aaa; margin-bottom: 7px; }
.info-val     { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.5; }
.info-val a   { color: var(--text); text-decoration: none; }
.info-val a:hover { color: var(--red); }
.hours-table  { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { font-size: 14px; color: var(--text2); padding: 7px 0; border-bottom: 1px solid var(--border); }
.hours-table td:last-child { font-weight: 600; text-align: right; }
.form-group   { margin-bottom: 16px; }
.form-group label { display: block; font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px; border: 2px solid var(--border);
  background: var(--white); font-family: var(--fb);
  font-size: 16px; /* prevents iOS auto-zoom */
  color: var(--text); outline: none; transition: border-color .2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── FOOTER ─── */
footer { background: var(--black); padding: 44px var(--side) 20px; border-top: 3px solid var(--red); }
.ft-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 28px; }
.ft-logo   { font-family: var(--fd); font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: 2px; display: block; margin-bottom: 9px; text-decoration: none; }
.ft-logo span { color: var(--red); }
.ft-about  { font-size: 13px; color: #555; line-height: 1.8; margin-bottom: 11px; }
.ft-nap    { font-size: 13px; color: #444; line-height: 1.9; }
.ft-nap a  { color: var(--red); text-decoration: none; }
.ft-col h4 { font-family: var(--fd); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.ft-col ul { list-style: none; }
.ft-col ul li { margin-bottom: 8px; }
.ft-col ul li a { font-size: 13px; color: #444; text-decoration: none; transition: color .2s; }
.ft-col ul li a:hover { color: var(--red); }
.ft-bottom { padding-top: 14px; border-top: 1px solid #181818; display: flex; flex-direction: column; gap: 10px; }
.ft-copy   { font-size: 11px; color: #333; }
.ft-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.fbadge    { font-family: var(--fd); font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 8px; border: 1px solid; }
.fbadge.r  { color: var(--red); border-color: var(--red); }
.fbadge.g  { color: #333; border-color: #333; }

/* ─── STICKY MOBILE BAR ─── */
.sbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  background: var(--black); border-top: 2px solid var(--red);
  display: flex; gap: 4px; padding: 5px;
}
.sbar a {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  padding: 9px 2px; font-family: var(--fd); font-weight: 700;
  font-size: 9px; letter-spacing: .2px; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  text-align: center; line-height: 1.2; min-height: 46px;
}
.sb-call { background: var(--red);   color: var(--white); }
.sb-dir  { background: #1a1a1a; color: #ccc; border: 1px solid #252525; }
.sb-rep  { background: #1a1a1a; color: #ccc; border: 1px solid #252525; }
.sb-cash { background: var(--white); color: var(--black); }

/* ─── WHATSAPP ─── */
.wa {
  position: fixed; bottom: 76px; right: 14px; z-index: 996;
  width: 46px; height: 46px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
  animation: wap 3s infinite;
}
@keyframes wap {
  0%,100% { box-shadow: 0 4px 14px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 24px rgba(37,211,102,.65); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════ */

/* ── Tablet 560px ── */
@media(min-width:560px) {
  .grid-price { grid-template-columns: repeat(2,1fr); }
  .grid-reviews { grid-template-columns: repeat(2,1fr); }
  .cov-split { grid-template-columns: 1fr 1fr; }
  .cov { padding: 32px 26px; }
}

/* ── Tablet 640px ── */
@media(min-width:640px) {
  :root { --section: 56px; --side: 28px; }
  .badge-strip { grid-template-columns: repeat(4,1fr); }
  .bs:nth-child(2) { border-right: 1px solid #202020; }
  .bs:nth-child(3), .bs:nth-child(4) { border-bottom: none; }
  .bs:last-child { border-right: none; }
  .grid-ba { grid-template-columns: repeat(3,1fr); }
  .about-l { padding: 52px 40px; }
  .about-r { padding: 44px 36px; }
  .cash-why  { padding: 52px 40px; }
  .cash-seo  { padding: 44px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .cash-seo h3 { margin-top: 0; }
  footer { padding: 52px 32px 22px; }
  .gbar  { padding: 30px 40px; align-items: center; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-info { padding: 52px 40px; }
  .contact-form { padding: 52px 40px; }
  .faq-cols { grid-template-columns: 1fr 1fr; gap: 0 32px; }
}

/* ── Desktop 768px ── */
@media(min-width:768px) {
  :root { --section: 64px; }
  .wrap { padding: 0 28px; }
  .brow { flex-direction: row; }
  .brow .btn { width: auto; }
  .hero { display: grid; grid-template-columns: 1fr 220px; gap: 40px; align-items: center; padding: 68px 40px 60px; }
  .hero-stats { flex-direction: column; margin-top: 0; }
  .stat { text-align: right; padding: 16px 20px; }
  .stat-n { font-size: 40px; }
  .cash-hero { padding: 60px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .cash-body { margin-bottom: 0; }
  .about-wrap { grid-template-columns: 1.1fr .9fr; }
  .about-r { border-top: none; border-left: 3px solid var(--red); padding: 56px 36px; }
}

/* ── Wide 860px ── */
@media(min-width:860px) {
  :root { --section: 72px; }
  .wrap { padding: 0 40px; }
  .grid-svc { grid-template-columns: repeat(4,1fr); }
  .grid-price { grid-template-columns: repeat(3,1fr); }
  .trust-row { grid-template-columns: repeat(4,1fr); }
  .tc:nth-child(2) { border-right: 1px solid rgba(255,255,255,.05); }
  .tc:last-child { border-right: none; }
  .ft-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 32px; }
}

/* ── Extra-wide 1000px ── */
@media(min-width:1000px) {
  .grid-reviews { grid-template-columns: repeat(4,1fr); }
}

/* ── Touch states ── */
@media(hover:none) {
  .svc:active     { border-top-color: var(--red); }
  .pcrd:active    { border-top-color: var(--red); }
  .why-item:active{ border-top-color: var(--red); }
  .btn-red:active { background: var(--red-dark); }
}

/* =========================================
   GLOBAL DESKTOP WIDTH FIX (Prevents Stretching)
   ========================================= */

/* 1. Lock the width of the content inside sections so it centers neatly */
section > div, 
header > nav, 
footer > div,
.container {
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 2. Keep paragraphs and main headings at a comfortable reading width */
section h1,
section h2, 
section h3, 
section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 3. Stop images from stretching past their natural size */
img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
