/* ============================================================
   Cape Coral Electrician Pros — Premium Stylesheet v2
   "Live wire" electrician brand: deep navy + electric cyan/blue + amber
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@600;700;800&display=swap');

:root {
  --navy: #0a2540;
  --navy-deep: #06182d;
  --navy-mid: #0e3055;
  --blue: #1565c0;
  --blue-light: #2b8eff;
  --cyan: #21d4fd;
  --amber: #ffc233;
  --amber-deep: #f5a600;
  --ink: #16212e;
  --gray: #5b6b7b;
  --gray-light: #8298ad;
  --line: #e4e9f0;
  --bg: #f4f7fb;
  --white: #ffffff;
  --green: #1faa53;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow: 0 8px 30px rgba(10, 37, 64, 0.09);
  --shadow-lg: 0 26px 70px rgba(10, 37, 64, 0.22);
  --glow-amber: 0 8px 30px rgba(245, 166, 0, 0.45);
  --glow-cyan: 0 0 0 rgba(33, 212, 253, 0);
  --grad-wire: linear-gradient(100deg, var(--cyan) 0%, var(--blue-light) 50%, var(--blue) 100%);
  --grad-amber: linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
  --grad-navy: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  --max: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: 'Sora', var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
h1, h2, h3, h4, .display { font-family: var(--display); }

/* circuit-grid texture utility for dark sections */
.wire-bg { position: relative; }
.wire-bg::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(43, 142, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 142, 255, .07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 0%, #000 30%, transparent 75%);
}

/* ---------- Top utility bar ---------- */
.topbar { background: var(--navy-deep); color: #bdd2ea; font-size: 0.84rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 9px 22px; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; }
.topbar .badges span { margin-right: 18px; white-space: nowrap; }
.topbar .badges span b { color: var(--cyan); font-weight: 700; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.88); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(10,37,64,0.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 13px 22px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; color: var(--navy); font-size: 1.2rem; letter-spacing: -0.4px; }
.brand:hover { text-decoration: none; }
.brand .bolt {
  width: 42px; height: 42px; border-radius: 12px; background: var(--grad-navy);
  display: grid; place-items: center; color: var(--amber); font-size: 1.4rem; flex: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 6px 16px rgba(10,37,64,.25);
  position: relative; overflow: hidden;
}
.brand .bolt::after { content:""; position:absolute; inset:0; background: var(--grad-wire); opacity:.0; }
.brand small { display: block; font-family: var(--font); font-size: 0.64rem; font-weight: 600; color: var(--gray); letter-spacing: 1.8px; text-transform: uppercase; margin-top: 1px; }
nav.main-nav ul { list-style: none; display: flex; gap: 24px; align-items: center; }
nav.main-nav a { color: var(--ink); font-weight: 600; font-size: 0.94rem; position: relative; }
nav.main-nav a:not(.nav-cta):hover { color: var(--blue); text-decoration: none; }
nav.main-nav a:not(.nav-cta)::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background: var(--grad-wire); transition: width .25s ease; border-radius: 2px; }
nav.main-nav a:not(.nav-cta):hover::after { width:100%; }
.nav-cta {
  background: var(--grad-amber); color: var(--navy) !important; padding: 11px 19px; border-radius: 10px;
  font-weight: 800; white-space: nowrap; box-shadow: var(--glow-amber); transition: transform .1s ease, box-shadow .2s;
}
.nav-cta:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(245,166,0,.55); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.7rem; color: var(--navy); cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: 12px; font-weight: 800; font-family: var(--display);
  font-size: 1rem; cursor: pointer; border: 0; transition: transform .1s ease, box-shadow .25s ease, background .2s;
  text-align: center; position: relative; overflow: hidden;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn::after { content:""; position:absolute; top:0; left:-120%; width:60%; height:100%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent); transition: left .6s ease; }
.btn:hover::after { left: 130%; }
.btn-primary { background: var(--grad-amber); color: var(--navy); box-shadow: var(--glow-amber); }
.btn-primary:hover { box-shadow: 0 14px 36px rgba(245,166,0,.55); }
.btn-call { background: var(--green); color: #fff; box-shadow: 0 8px 24px rgba(31,170,83,.4); }
.btn-call:hover { background: #18914a; box-shadow: 0 14px 32px rgba(31,170,83,.5); }
.btn-outline { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-outline:hover { background: rgba(255,255,255,.16); border-color: #fff; }
.btn-block { display: flex; width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; padding: 86px 0 96px; overflow: hidden; isolation: isolate; }
.hero .hero-photo { position: absolute; inset: 0; z-index: -2; }
.hero .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero::before { /* color overlay */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(6,24,45,.96) 0%, rgba(10,37,64,.86) 42%, rgba(10,37,64,.35) 100%),
    radial-gradient(1200px 500px at 85% -10%, rgba(33,212,253,.22), transparent 60%);
}
.hero::after { /* bottom fade */
  content:""; position:absolute; left:0; right:0; bottom:0; height:130px; z-index:-1;
  background: linear-gradient(transparent, var(--white));
}
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 50px; align-items: center; }
.hero .pill {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(33,212,253,.14);
  border: 1px solid rgba(33,212,253,.4); color: #cdf3ff; padding: 7px 15px; border-radius: 100px;
  font-size: .82rem; font-weight: 700; letter-spacing: .3px; margin-bottom: 20px; backdrop-filter: blur(4px);
}
.hero .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(33,212,253,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(33,212,253,.6);} 70%{box-shadow:0 0 0 9px rgba(33,212,253,0);} 100%{box-shadow:0 0 0 0 rgba(33,212,253,0);} }
.hero h1 { font-size: 3.1rem; line-height: 1.08; letter-spacing: -1.4px; margin-bottom: 18px; font-weight: 800; }
.hero h1 .accent { background: var(--grad-amber); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lede { font-size: 1.2rem; color: #d3e3f5; margin-bottom: 26px; max-width: 560px; }
.hero-points { list-style: none; margin: 22px 0 32px; display: grid; gap: 12px; }
.hero-points li { padding-left: 34px; position: relative; color: #eaf3fc; font-weight: 600; }
.hero-points li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; border-radius: 50%; background: rgba(31,170,83,.25); color: #6fe6a0; font-size: .8rem; font-weight: 900; display: grid; place-items: center; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-row { margin-top: 32px; display: flex; gap: 30px; flex-wrap: wrap; color: #bcd2ea; font-size: .9rem; }
.trust-row > div { position: relative; padding-left: 2px; }
.trust-row strong { color: #fff; font-family: var(--display); font-size: 1.5rem; display: block; line-height: 1.1; }
.trust-row .stars { color: var(--amber); }

/* ---------- Quote form card (glass) ---------- */
.quote-card {
  background: rgba(255,255,255,.97); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-lg); color: var(--ink); border: 1px solid rgba(255,255,255,.6);
  position: relative;
}
.quote-card::before { content:""; position:absolute; inset:0; border-radius: var(--radius-lg); padding:2px;
  background: var(--grad-wire); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity:.6; pointer-events:none; }
.quote-card h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: 3px; }
.quote-card p.sub { font-size: .9rem; color: var(--gray); margin-bottom: 18px; }
.form-group { margin-bottom: 13px; }
.form-group label { display: block; font-size: .8rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: .98rem; font-family: var(--font); color: var(--ink); background: #fbfcfe; transition: border .2s, box-shadow .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue-light); background: #fff; box-shadow: 0 0 0 4px rgba(43,142,255,.13);
}
.form-note { font-size: .76rem; color: var(--gray); margin-top: 11px; text-align: center; }

/* ---------- Sections ---------- */
section { padding: 76px 0; }
section.tight { padding: 50px 0; }
.section-head { text-align: center; max-width: 740px; margin: 0 auto 50px; }
.eyebrow { display:inline-block; color: var(--blue); font-family: var(--display); font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; font-size: .78rem; }
.eyebrow::before { content:"⚡ "; }
h2.section-title { font-size: 2.3rem; color: var(--navy); letter-spacing: -.9px; margin: 10px 0 14px; line-height: 1.12; font-weight: 800; }
.section-head p { color: var(--gray); font-size: 1.08rem; }
.bg-soft { background: var(--bg); }
.bg-navy { background: var(--grad-navy); color: #fff; }
.bg-navy h2.section-title, .bg-navy .eyebrow { color: #fff; }
.bg-navy .eyebrow { color: var(--cyan); }
.bg-navy .section-head p { color: #c4d6ec; }

/* ---------- Service grid ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .25s ease, border-color .25s; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.svc-card::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background: var(--grad-wire); transform: scaleX(0); transform-origin:left; transition: transform .3s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #e8f3ff, #d4e8ff); display: grid; place-items: center; font-size: 1.6rem; margin-bottom: 16px; box-shadow: inset 0 0 0 1px rgba(43,142,255,.12); }
.svc-card h3 { color: var(--navy); font-size: 1.22rem; margin-bottom: 9px; }
.svc-card p { color: var(--gray); font-size: .96rem; margin-bottom: 16px; flex: 1; }
.svc-card .more { font-weight: 800; color: var(--blue); font-family: var(--display); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.svc-card .more:hover { gap: 11px; text-decoration: none; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--grad-navy); color: #fff; padding: 54px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .n { font-family: var(--display); font-size: 2.8rem; font-weight: 800; line-height: 1; background: var(--grad-amber); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { color: #c4d6ec; font-weight: 600; margin-top: 8px; font-size: .95rem; }
.stats-divider { width: 1px; }

/* ---------- Feature / why-us ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature { text-align: center; padding: 22px; border-radius: var(--radius); transition: background .25s; }
.feature .fi { font-size: 2.1rem; margin-bottom: 12px; width: 64px; height: 64px; margin-inline:auto; display:grid; place-items:center; border-radius: 16px; background: rgba(43,142,255,.12); border: 1px solid rgba(43,142,255,.2); }
.feature h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 7px; }
.feature p { color: var(--gray); font-size: .92rem; }
.bg-navy .feature .fi { background: rgba(33,212,253,.14); border-color: rgba(33,212,253,.3); }
.bg-navy .feature h3 { color: #fff; }
.bg-navy .feature p { color: #bdd0e8; }
.bg-navy .feature:hover { background: rgba(255,255,255,.04); }

/* ---------- Split content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .media {
  border-radius: var(--radius-lg); min-height: 380px; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden; background: var(--grad-navy);
}
.split .media img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.split .media::after { content:""; position:absolute; inset:0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); pointer-events:none; }
.split .media .ph-label { position:absolute; inset:0; display:grid; place-items:center; color: rgba(255,255,255,.55); font-weight: 700; font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; text-align:center; padding:20px; }
.split .badge-float {
  position: absolute; bottom: 18px; left: 18px; background: rgba(255,255,255,.96); color: var(--navy);
  padding: 12px 16px; border-radius: 12px; font-weight: 800; font-family: var(--display); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px; font-size: .9rem;
}
.split .badge-float .ico { color: var(--amber-deep); font-size: 1.3rem; }
.split h2 { font-size: 2.1rem; color: var(--navy); letter-spacing: -.7px; margin-bottom: 16px; line-height: 1.15; }
.split p { color: var(--gray); margin-bottom: 15px; }
.check-list { list-style: none; display: grid; gap: 12px; margin: 20px 0; }
.check-list li { padding-left: 32px; position: relative; color: var(--ink); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%; background: rgba(31,170,83,.14); color: var(--green); font-weight: 900; font-size: .8rem; display: grid; place-items: center; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.step { text-align: center; position: relative; }
.step .num { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-wire); color: #fff; font-family: var(--display); font-weight: 800; display: grid; place-items: center; margin: 0 auto 16px; font-size: 1.3rem; box-shadow: 0 10px 24px rgba(43,142,255,.4); }
.step h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 7px; }
.step p { color: var(--gray); font-size: .92rem; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); position: relative; }
.review::before { content:"\201C"; position:absolute; top:6px; right:20px; font-family: Georgia, serif; font-size: 4rem; color: rgba(43,142,255,.12); line-height:1; }
.review .stars { color: var(--amber-deep); font-size: 1.05rem; margin-bottom: 12px; letter-spacing: 2px; }
.review p { color: var(--ink); font-style: italic; margin-bottom: 16px; }
.review .who { font-weight: 800; color: var(--navy); font-family: var(--display); font-size: .95rem; }
.review .where { color: var(--gray); font-size: .85rem; }

/* ---------- Info table ---------- */
.info-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.info-table th, .info-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.info-table th { background: var(--grad-navy); color: #fff; font-family: var(--display); font-size: .92rem; }
.info-table td { color: var(--gray); }
.info-table tr:last-child td { border-bottom: 0; }
.info-table tr:nth-child(even) td { background: #fafcfe; }
.info-table td:first-child { font-weight: 700; color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-navy); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 300px at 50% -30%, rgba(33,212,253,.25), transparent 70%); }
.cta-band .container { position: relative; }
.cta-band h2 { font-size: 2.2rem; margin-bottom: 12px; letter-spacing: -.6px; }
.cta-band p { color: #d3e2f4; font-size: 1.12rem; margin-bottom: 28px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 13px; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq-item[open] { box-shadow: var(--shadow); border-color: rgba(43,142,255,.35); }
.faq-item summary { padding: 19px 24px; font-weight: 700; font-family: var(--display); color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1.04rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: #fff; background: var(--grad-wire); width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; font-weight: 400; flex: none; transition: transform .2s; }
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--gray); }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; color: #fff; padding: 72px 0 64px; overflow: hidden; isolation: isolate; }
.page-hero .hero-photo { position:absolute; inset:0; z-index:-2; }
.page-hero .hero-photo img { width:100%; height:100%; object-fit: cover; }
.page-hero::before { content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(100deg, rgba(6,24,45,.96) 0%, rgba(10,37,64,.84) 55%, rgba(10,37,64,.55) 100%),
  radial-gradient(900px 400px at 90% -20%, rgba(33,212,253,.2), transparent 65%); }
.page-hero .crumb { font-size: .85rem; color: #a9c6e6; margin-bottom: 14px; font-weight: 600; }
.page-hero .crumb a { color: #d7e4f3; }
.page-hero h1 { font-size: 2.6rem; letter-spacing: -1px; max-width: 800px; line-height: 1.12; margin-bottom: 14px; font-weight: 800; }
.page-hero p { font-size: 1.14rem; color: #d3e2f4; max-width: 660px; }
.page-hero .hero-actions { margin-top: 26px; }

/* ---------- Content layout w/ sidebar ---------- */
.content-wrap { display: grid; grid-template-columns: 1fr 350px; gap: 50px; align-items: start; }
.prose > img, .prose .inline-img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 8px 0 26px; width: 100%; }
.prose h2 { font-size: 1.8rem; color: var(--navy); margin: 36px 0 15px; letter-spacing: -.5px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.28rem; color: var(--navy); margin: 26px 0 11px; }
.prose p { color: var(--gray); margin-bottom: 16px; }
.prose ul { margin: 0 0 18px 4px; color: var(--gray); list-style: none; }
.prose ul li { margin-bottom: 10px; padding-left: 30px; position: relative; }
.prose ul li::before { content:"⚡"; position:absolute; left:0; color: var(--amber-deep); font-size: .9rem; top: 3px; }
.prose strong { color: var(--ink); }
.callout { background: linear-gradient(135deg, #eaf4ff, #f3f9ff); border-left: 4px solid var(--blue-light); padding: 20px 24px; border-radius: 0 12px 12px 0; margin: 24px 0; color: var(--ink); box-shadow: var(--shadow); }
.callout strong { color: var(--navy); }
.sidebar { position: sticky; top: 100px; display: grid; gap: 22px; }
.sidebar-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.sidebar-card.accent { background: var(--grad-navy); color: #fff; position: relative; overflow: hidden; }
.sidebar-card.accent::before { content:""; position:absolute; inset:0; background: radial-gradient(400px 200px at 80% -20%, rgba(33,212,253,.3), transparent 70%); }
.sidebar-card.accent > * { position: relative; }
.sidebar-card h3 { color: var(--navy); font-size: 1.18rem; margin-bottom: 14px; }
.sidebar-card.accent h3 { color: #fff; }
.sidebar-card.accent p { color: #cfe0f2; font-size: .95rem; margin-bottom: 16px; }
.sidebar-card ul { list-style: none; display: grid; gap: 10px; }
.sidebar-card ul li a { color: var(--ink); font-weight: 600; display: flex; align-items: center; gap: 9px; transition: gap .2s, color .2s; }
.sidebar-card ul li a::before { content: "→"; color: var(--blue); font-weight: 800; }
.sidebar-card ul li a:hover { gap: 13px; color: var(--blue); text-decoration: none; }
.phone-big { font-family: var(--display); font-size: 1.9rem; font-weight: 800; color: #fff; display: block; margin: 6px 0 16px; }

/* ---------- Areas list ---------- */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.area-grid a { background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 16px 18px; color: var(--ink); font-weight: 700; font-family: var(--display); box-shadow: var(--shadow); transition: transform .15s, border-color .2s, color .2s; display:flex; align-items:center; gap:9px; }
.area-grid a::before { content:"📍"; font-size:1rem; }
.area-grid a:hover { border-color: var(--blue-light); color: var(--blue); text-decoration: none; transform: translateY(-3px); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info .info-row { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-info .info-row .ci { width: 50px; height: 50px; border-radius: 13px; background: linear-gradient(135deg,#e8f3ff,#d4e8ff); display: grid; place-items: center; font-size: 1.35rem; flex: none; box-shadow: inset 0 0 0 1px rgba(43,142,255,.12); }
.contact-info .info-row h3 { color: var(--navy); font-size: 1.06rem; margin-bottom: 3px; }
.contact-info .info-row p, .contact-info .info-row a { color: var(--gray); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #b3c6dc; padding: 64px 0 0; font-size: .94rem; position: relative; }
.site-footer::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: var(--grad-wire); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.site-footer h4 { color: #fff; font-family: var(--display); font-size: 1.02rem; margin-bottom: 17px; }
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a { color: #b3c6dc; }
.site-footer a:hover { color: var(--cyan); }
.footer-brand { display: flex; align-items: center; gap: 11px; color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.18rem; margin-bottom: 15px; }
.footer-brand .bolt { width: 38px; height: 38px; border-radius: 10px; background: var(--grad-navy); display: grid; place-items: center; color: var(--amber); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.footer-phone { font-family: var(--display); font-size: 1.5rem; font-weight: 800; color: var(--amber); display: inline-block; margin: 10px 0; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; font-size: .8rem; color: #7d93ad; line-height: 1.65; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: #7d93ad; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar { display: none; }

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); animation: rise .7s ease forwards; animation-timeline: view(); animation-range: entry 0% cover 22%; }
  @keyframes rise { to { opacity: 1; transform: none; } }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .content-wrap, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .card-grid, .card-grid.two { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .steps, .review-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sidebar { position: static; }
  nav.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 22px 18px; }
  nav.main-nav ul li { border-bottom: 1px solid var(--line); }
  nav.main-nav ul li:last-child { border: 0; padding-top: 12px; }
  nav.main-nav a:not(.nav-cta) { display: block; padding: 14px 0; }
  nav.main-nav a:not(.nav-cta)::after { display:none; }
  .nav-cta { text-align: center; justify-content: center; }
  .nav-toggle { display: block; }
  .hero { padding: 64px 0 76px; }
  .hero h1 { font-size: 2.3rem; }
  h2.section-title, .split h2, .page-hero h1 { font-size: 1.9rem; }
  .stat .n { font-size: 2.2rem; }
}
@media (max-width: 600px) {
  .card-grid, .card-grid.two, .feature-grid, .steps, .review-grid, .stats-grid, .area-grid { grid-template-columns: 1fr; }
  .topbar .badges { display: none; }
  section { padding: 52px 0; }
  body { padding-bottom: 66px; }
  .hero h1 { font-size: 2rem; }
  .mobile-call-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    background: var(--green); color: #fff; align-items: center; justify-content: center;
    gap: 9px; padding: 16px; font-weight: 800; font-family: var(--display); font-size: 1.06rem; box-shadow: 0 -6px 20px rgba(0,0,0,.22);
  }
  .mobile-call-bar:hover { text-decoration: none; color: #fff; }
}
