/* ================================================================
   BPCS ELECTRICAL SERVICES — style.css v11
   Hybrid: AB Electricians layout + Daylight design + Family theme
   ================================================================ */

/* ─── CSS CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --green:        #1A3B2F;
  --green-dark:   #0f2720;
  --green-mid:    #8EAF7A;
  --green-light:  #EBF3E6;
  --green-pale:   #F5F9F3;
  --text:         #1a2118;
  --text-muted:   #4a5a46;
  --border:       #dde8d8;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
  --shadow-md:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.14);
  --radius:       10px;
  --radius-lg:    16px;
  --transition:   all .22s ease;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ─── RESET / BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--text); background: #fff; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }
select, input, textarea { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 50px;
  font-weight: 700; font-size: 0.92rem; letter-spacing: .02em;
  transition: var(--transition); white-space: nowrap; cursor: pointer;
  border: 2px solid transparent;
}
.btn-lg { padding: 15px 32px; font-size: 0.98rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--green); color: #fff; border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,59,47,.3); }

.btn-green {
  background: var(--green); color: #fff; border-color: var(--green);
}
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(26,59,47,.3); }

.btn-white {
  background: #fff; color: var(--green); border-color: #fff;
}
.btn-white:hover { background: var(--green-light); border-color: var(--green-light); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,.18); }

.btn-outline-white {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }

/* ─── 4-BOX DIFFERENTIATORS ──────────────────────────────── */
.diff-section {
  background: var(--green);
  padding: 0;
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.diff-box {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.diff-box:last-child { border-right: none; }
.diff-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px; flex-shrink: 0;
}
.diff-title {
  font-size: 1rem; font-weight: 800; color: #fff; line-height: 1.25;
}
.diff-desc {
  font-size: 0.82rem; color: rgba(255,255,255,.68); line-height: 1.55;
}

/* ─── CONTACT WHY LIST ───────────────────────────────────── */
.contact-why { margin-top: 28px; }
.contact-why-title {
  font-size: 0.78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.contact-why-list {
  display: flex; flex-direction: column; gap: 10px;
}
.contact-why-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--text);
}

/* ─── TOPBAR ─────────────────────────────────────────────── */
.topbar { background: var(--green-dark); padding: 9px 0; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.topbar-text {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; color: rgba(255,255,255,.78); letter-spacing: .025em;
}
.topbar-text svg { flex-shrink: 0; }
.topbar-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; color: #fff; letter-spacing: .025em;
  transition: var(--transition);
}
.topbar-phone:hover { color: var(--green-mid); }

/* ─── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: #fff; border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.10); }
.nav-inner {
  display: flex; align-items: center;
  height: 68px; gap: 24px;
}
.logo { flex-shrink: 0; }
.logo-img { height: 46px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-link {
  padding: 8px 14px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600; color: var(--text-muted);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--green); background: var(--green-pale); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-call-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: 8px;
  background: var(--green); color: #fff;
  font-size: 0.84rem; font-weight: 700; letter-spacing: .02em;
  transition: var(--transition); white-space: nowrap;
}
.nav-call-btn:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(26,59,47,.28); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px; transition: var(--transition);
}
.hamburger:hover { background: var(--green-pale); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--green); border-radius: 2px;
  transition: var(--transition);
}
.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); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  filter: brightness(1.15) saturate(1.1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    112deg,
    rgba(6,18,12,0.82) 0%,
    rgba(6,18,12,0.65) 30%,
    rgba(6,18,12,0.38) 55%,
    rgba(6,18,12,0.10) 80%,
    transparent 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 600px;
  padding-top: 80px; padding-bottom: 110px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.10); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  font-size: 0.75rem; font-weight: 600; letter-spacing: .06em;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.12;
  color: #fff; margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-headline em {
  font-style: italic; color: var(--green-mid);
}
.hero-sub {
  font-size: 1.08rem; color: rgba(255,255,255,.82);
  line-height: 1.7; margin-bottom: 28px; max-width: 500px;
}
.hero-checks {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 36px;
}
.hero-checks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,.90);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trust bar */
.hero-trust-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: rgba(6,18,12,0.72); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 15px 0;
}
.hero-trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.htb-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: .03em;
  color: rgba(255,255,255,.82);
  padding: 6px 18px;
}
.htb-div {
  width: 1px; height: 20px;
  background: rgba(255,255,255,.18); flex-shrink: 0;
}

/* ─── SERVICES SECTION ───────────────────────────────────── */
.services-section {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 90px 0;
}
.section-hdr { text-align: center; margin-bottom: 52px; }
.section-hdr--on-dark .section-headline { color: #fff; }
.section-hdr--on-dark .section-sub { color: rgba(255,255,255,.72); }
.section-headline {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.18;
  color: var(--text); margin-bottom: 12px;
}
.section-sub { font-size: 1.05rem; color: var(--text-muted); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.svc-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.20); }
.svc-photo { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.svc-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.svc-card:hover .svc-photo img { transform: scale(1.05); }
.svc-icon {
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
  padding: 26px 16px 20px;
}
.svc-icon-wrap {
  width: 64px; height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26,59,47,.28);
}
.svc-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.svc-title { font-size: 0.88rem; font-weight: 800; color: var(--text); margin-bottom: 6px; line-height: 1.3; }
.svc-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; flex: 1; margin-bottom: 12px; }
.btn-call-now {
  display: inline-block;
  background: var(--green); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: .07em;
  padding: 8px 14px; border-radius: 6px;
  transition: var(--transition); width: fit-content;
}
.btn-call-now:hover { background: var(--green-dark); transform: translateX(2px); }

/* ─── FEATURE SECTIONS ────────────────────────────────────── */
.features { }

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.feature:nth-child(odd) { background: var(--green-pale); }
.feature:nth-child(even) { background: #fff; }

.feature-photo { overflow: hidden; }
.feature-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.feature:hover .feature-photo img { transform: scale(1.03); }

.feature--flip .feature-photo { order: 2; }
.feature--flip .feature-text { order: 1; }

.feature-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 64px;
}
.feature-tag {
  display: inline-block;
  background: var(--green-light); color: var(--green);
  font-size: 0.72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 22px; width: fit-content;
}
.feature-headline {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900; line-height: 1.18; letter-spacing: -.025em;
  color: var(--text); margin-bottom: 20px;
}
.feature-body {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.78; margin-bottom: 14px; max-width: 420px;
}
.feature-body:last-of-type { margin-bottom: 32px; }

/* ─── STATS SECTION ──────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0b1e17 100%);
  padding: 100px 0;
  text-align: center;
}
.stats-inner { max-width: 900px; margin: 0 auto; }
.stats-eyebrow {
  display: inline-block;
  font-size: 0.73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 16px;
}
.stats-headline {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.2; letter-spacing: -.025em;
  color: #fff; margin-bottom: 60px;
}
.stats-grid {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; margin-bottom: 50px;
}
.stat-card {
  flex: 1; padding: 0 40px; text-align: center;
}
.stat-num {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 900; letter-spacing: -.03em;
  color: var(--green-mid); line-height: 1; margin-bottom: 14px;
}
.stat-label {
  font-size: 0.9rem; color: rgba(255,255,255,.68);
  line-height: 1.55; max-width: 180px; margin: 0 auto;
}
.stat-div {
  width: 1px; background: rgba(255,255,255,.12);
  align-self: stretch; flex-shrink: 0;
}
.stats-cta-copy {
  font-size: 1rem; color: rgba(255,255,255,.72);
  margin-bottom: 26px; line-height: 1.6;
}

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.how-section { background: #fff; padding: 100px 0; }
.how-eyebrow {
  display: inline-block;
  font-size: 0.73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.how-headline {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 900; line-height: 1.2; letter-spacing: -.025em;
  color: var(--text); margin-bottom: 12px;
}
.how-sub {
  font-size: 1.05rem; color: var(--text-muted);
  margin-bottom: 60px;
}
.section-hdr .how-eyebrow,
.section-hdr .how-headline,
.section-hdr .how-sub { display: block; }

.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.step-card {
  background: var(--green-pale); border-radius: var(--radius-lg);
  padding: 40px 34px; position: relative;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-mid); }
.step-num {
  font-size: 4.5rem; font-weight: 900; line-height: 1;
  color: var(--green-light); letter-spacing: -.04em;
  position: absolute; top: 24px; right: 28px;
  pointer-events: none; user-select: none;
}
.step-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: #fff; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; box-shadow: var(--shadow-sm);
}
.step-title {
  font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 10px;
}
.step-body {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
}

/* ─── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section {
  background: var(--green-pale); padding: 100px 0;
  border-top: 1px solid var(--border);
}
.testimonials-section .section-hdr { margin-bottom: 52px; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.testi-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 32px; border: 1.5px solid var(--border);
  transition: var(--transition); display: flex; flex-direction: column;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green-mid); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-text {
  font-size: 0.93rem; color: var(--text); line-height: 1.7;
  margin-bottom: 22px; flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c, var(--green)); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800; flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.testi-role { font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  position: relative; min-height: 440px;
  display: flex; align-items: center; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,18,12,.88) 0%, rgba(6,18,12,.72) 45%, rgba(6,18,12,.40) 100%);
}
.cta-body {
  position: relative; z-index: 1;
  max-width: 580px; padding-top: 80px; padding-bottom: 80px;
}
.cta-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 12px;
}
.cta-headline {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900; line-height: 1.18; letter-spacing: -.025em;
  color: #fff; margin-bottom: 16px;
}
.cta-sub {
  font-size: 1rem; color: rgba(255,255,255,.8);
  line-height: 1.7; margin-bottom: 36px; max-width: 440px;
}

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact-section { background: #fff; padding: 100px 0; }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px;
  align-items: start;
}
.contact-eyebrow {
  font-size: 0.73rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px; display: block;
}
.contact-headline {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 900; line-height: 1.2; letter-spacing: -.025em;
  color: var(--text); margin-bottom: 16px;
}
.contact-desc {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 30px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-info-row {
  display: flex; align-items: flex-start; gap: 12px;
}
.contact-info-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.73rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text-muted); display: block; margin-bottom: 2px;
}
.contact-info-value {
  font-size: 0.92rem; font-weight: 600; color: var(--text);
  transition: var(--transition);
}
a.contact-info-value:hover { color: var(--green); }
.contact-hours-box {
  background: var(--green-pale); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 20px 22px;
}
.contact-hours-box h4 {
  font-size: 0.78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.contact-hours-box ul { display: flex; flex-direction: column; gap: 8px; }
.contact-hours-box li {
  display: flex; justify-content: space-between;
  font-size: 0.86rem; color: var(--text-muted);
}
.contact-hours-box li span:first-child { font-weight: 600; color: var(--text); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem; font-weight: 700; color: var(--text); letter-spacing: .02em;
}
.form-group label span { color: var(--green); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.91rem; color: var(--text); background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,59,47,.10);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }
.form-success {
  display: none; align-items: center; gap: 10px;
  background: var(--green-light); color: var(--green);
  font-size: 0.88rem; font-weight: 600;
  padding: 14px 18px; border-radius: 8px;
}
.form-success.show { display: flex; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
}
.footer-inner { padding-top: 56px; padding-bottom: 0; }
.footer-logo-row { margin-bottom: 36px; }
.footer-logo-img { height: 42px; width: auto; }
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-col-title {
  font-size: 0.72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text); margin-bottom: 12px; margin-top: 22px;
}
.footer-col-title:first-child { margin-top: 0; }
.footer-col-list {
  display: flex; flex-direction: column; gap: 7px;
}
.footer-col-list li, .footer-col-list li a {
  font-size: 0.83rem; color: var(--text-muted); line-height: 1.5;
}
.footer-col-list--links li a {
  transition: var(--transition);
}
.footer-col-list--links li a:hover { color: var(--green); padding-left: 3px; }
.payment-icons { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.footer-bottom {
  padding: 18px 0;
}
.footer-copy {
  font-size: 0.76rem; color: var(--text-muted); line-height: 1.6;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
  .feature-text { padding: 56px 48px; }
}
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-content { max-width: 520px; }
  .feature { grid-template-columns: 1fr; min-height: auto; }
  .feature--flip .feature-photo { order: 0; }
  .feature--flip .feature-text { order: 0; }
  .feature-photo { min-height: 340px; }
  .feature-text { padding: 48px 40px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .stats-grid { flex-direction: column; align-items: center; gap: 32px; }
  .stat-div { width: 80px; height: 1px; background: rgba(255,255,255,.14); }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-inner { justify-content: space-between; }
}
@media (max-width: 820px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .diff-box:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .diff-box:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  .hero-content { padding-top: 60px; padding-bottom: 80px; }
  .hero-btns { flex-direction: column; }
  .htb-item { padding: 4px 10px; font-size: 0.69rem; }
  .htb-div { display: none; }
  .feature-text { padding: 36px 24px; }
  .stats-section { padding: 70px 0; }
  .cta-body { padding-top: 60px; padding-bottom: 60px; }
  .topbar-inner { flex-direction: column; gap: 4px; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}

/* Mobile nav open state */
.nav-open .nav-links {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 888; padding: 96px 28px 28px;
  box-shadow: 4px 0 40px rgba(0,0,0,.12);
}
.nav-open .nav-link {
  width: 100%; padding: 14px 18px; font-size: 1.05rem; border-radius: 10px;
}
.nav-open .nav-actions {
  display: flex; flex-direction: column; gap: 10px;
  position: fixed; bottom: 28px; left: 28px; right: 28px; z-index: 889;
}
.nav-open .nav-call-btn,
.nav-open .nav-actions .btn {
  width: 100%; justify-content: center; text-align: center;
}
