/* ===== Teva Électrique — shared stylesheet =====
   Brand palette: black, red, white. Dark-mode site-wide. */
:root {
  --navy: #0a0a0a;
  --navy-2: #1c1c1c;
  --ink: #ffffff;          /* on-dark default text */
  --orange: #e60a1a;
  --orange-2: #b8050f;
  --yellow: #ffffff;
  --gold: #ffc233;

  /* page chrome — dark-mode */
  --bg: #0a0a0a;           /* page background — black */
  --soft: #131313;         /* "soft" sections — slightly lighter than bg */
  --card: #161616;         /* cards / panels */
  --line: #2a2a2a;          /* hairlines on dark */

  --text: #ececec;
  --muted: #9a9a9a;
  --good: #25c685;
  --shadow:    0 12px 30px rgba(0,0,0,.55);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.70);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;     /* Prevent iOS Safari from auto-resizing text on rotate */
  -webkit-tap-highlight-color: rgba(230,10,26,.2);
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
/* Prevent iOS auto-zoom when tapping form inputs (triggers below 16px font) */
input, select, textarea, button { font-family: inherit; font-size: 16px; }
@supports (-webkit-touch-callout: none) {
  /* iOS-only: keep fonts at 16px on form inputs to block zoom */
  .quote-card input, .quote-card select, .quote-card textarea,
  .auth-card input, .calc-card input, .calc-card select { font-size: 16px !important; }
}
img { max-width: 100%; display: block; }
a { color: var(--orange-2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ----- Top bar ----- */
.topbar {
  background: var(--navy); color: #cfd9ec; font-size: 13px;
  padding: 8px 20px; display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: #fff; }
.topbar a.lang-toggle {
  display: inline-block; padding: 2px 10px; border: 1px solid rgba(255,255,255,.4);
  border-radius: 4px; font-weight: 700; font-size: 11px; letter-spacing: 1px;
  margin: 0 4px; transition: background .15s;
}
.topbar a.lang-toggle:hover { background: var(--orange); border-color: var(--orange); text-decoration: none; }

/* "Bêta / Beta" pill on portal links — flags pre-launch features */
.demo-pill {
  display: inline-block; margin-left: 5px;
  background: var(--orange); color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .8px;
  padding: 1px 5px; border-radius: 3px; vertical-align: middle;
}
.topbar .left span { margin-right: 18px; }

/* ----- Header ----- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.brand-name { color: #fff; }
header.site .brand-sub { color: #9a9a9a; }
.logo-img {
  height: 80px; width: auto; object-fit: contain; flex-shrink: 0;
  max-width: 360px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.logo-img--footer {
  height: 130px; width: auto; max-width: 200px;
  filter: none;
}
/* Header: the logo already contains TEVA + ELECTRIC & SECURITY wordmark,
   so hide the redundant brand-text node. Keep it in the DOM for SEO. */
.brand-text--header {
  position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden;
}
@media (max-width: 600px) {
  .logo-img { height: 60px; max-width: 240px; }
}
/* legacy text-monogram (still used as fallback if assets fail) */
.logo {
  width: 48px; height: 48px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--orange) 100%);
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 18px;
  box-shadow: var(--shadow);
}
.brand-name { font-weight: 800; font-size: 18px; letter-spacing: .2px; }
.brand-sub  { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

nav.main { display: flex; gap: 2px; align-items: center; flex-wrap: nowrap; }
nav.main > a, nav.main > .dropdown > a {
  color: #d6d6d6; text-decoration: none; padding: 10px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500; display: inline-block;
  white-space: nowrap;
}
nav.main > a:hover, nav.main > .dropdown > a:hover { background: rgba(255,255,255,.06); color: #fff; }
nav.main > a.current { color: var(--orange); }

.dropdown { position: relative; }
.dropdown:hover .menu, .dropdown:hover .mega { display: block; }
.menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 270px;
  background: #161616; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 60;
}
.menu a {
  display: block; padding: 10px 12px; border-radius: 8px; color: #d6d6d6;
  text-decoration: none; font-size: 14px; white-space: nowrap;
}
.menu a:hover { background: rgba(230,10,26,.10); color: #fff; }

/* ----- Mega menu (services dropdown grouped by pillar) ----- */
.mega {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #161616; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 22px; z-index: 60;
  grid-template-columns: repeat(3, max-content);
  gap: 28px;
  white-space: nowrap;
}
.dropdown:hover .mega { display: grid; }
.mega-col { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.mega-h {
  font-weight: 800; color: #fff; font-size: 12.5px; letter-spacing: .6px;
  text-transform: uppercase; padding: 4px 8px 8px;
  border-bottom: 2px solid var(--orange); margin-bottom: 6px;
  white-space: nowrap;
}
.mega-col a {
  display: block; padding: 7px 10px; border-radius: 6px; color: #d6d6d6;
  text-decoration: none; font-size: 13.5px; white-space: nowrap;
}
.mega-col a:hover { background: rgba(230,10,26,.10); color: #fff; }
.mega-col a.active { color: var(--orange); font-weight: 700; }
.mega-overview {
  font-weight: 700 !important; font-size: 12px !important;
  color: var(--orange) !important; padding: 6px 10px !important;
  border-bottom: 1px dashed var(--line); margin-bottom: 6px;
}

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.phone-link {
  display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 700;
  text-decoration: none; font-size: 15px; white-space: nowrap;
}
.phone-link span.label {
  font-size: 10.5px; color: var(--muted); font-weight: 500;
  text-transform: uppercase; letter-spacing: .6px; white-space: nowrap;
}
.btn {
  display: inline-block; background: var(--orange); color: #fff; padding: 12px 20px;
  border-radius: 8px; font-weight: 700; border: none; cursor: pointer; font-size: 15px;
  box-shadow: 0 6px 14px rgba(230,10,26,.32); transition: transform .1s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); background: var(--orange-2); text-decoration: none; color: #fff; }
.btn.outline { background: #fff; color: var(--navy); border: 2px solid var(--navy); box-shadow: none; }
.btn.outline:hover { background: var(--navy); color: #fff; }
.btn.lg { padding: 16px 26px; font-size: 16px; }
.btn.ghost { background: transparent; color: #fff; border: 2px solid #fff; box-shadow: none; }
.btn.ghost:hover { background: #fff; color: var(--navy); }

/* ----- Hero (home) ----- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0,0,0,.92) 0%, rgba(28,28,28,.78) 50%, rgba(0,0,0,.55) 100%),
    url('assets/photos/home-hero-bg.webp') center / cover no-repeat;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; padding: 80px 20px 90px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
/* Single-column variant — used when there's no form on the right */
.hero-inner--single {
  grid-template-columns: 1fr; max-width: 880px; padding: 100px 20px 110px;
  text-align: center;
}
.hero-inner--single .hero-text { display: flex; flex-direction: column; align-items: center; }
.hero-inner--single h1 { max-width: 800px; }
.hero-inner--single p.lead { max-width: 720px; }
.hero-inner--single .hero-actions { justify-content: center; }
.hero-inner--single .trust-row { justify-content: center; }
.hero h1 { font-size: 48px; line-height: 1.08; margin: 0 0 18px; font-weight: 800; }
.hero h1 .accent { color: var(--yellow); }
.hero p.lead { font-size: 18px; color: #d6dff0; margin: 0 0 28px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-row { display: flex; gap: 26px; flex-wrap: wrap; }
.trust { display: flex; align-items: center; gap: 10px; color: #cfd9ec; font-size: 14px; }
.trust .check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--orange);
  display: grid; place-items: center; color: #fff; font-size: 12px; font-weight: 800;
}

.quote-card {
  background: var(--card); color: var(--text); border-radius: 16px; padding: 26px;
  box-shadow: var(--shadow-lg); border-top: 6px solid var(--orange);
  border: 1px solid var(--line); border-top: 6px solid var(--orange);
}
.quote-card h3 { margin: 0 0 6px; color: #fff; font-size: 22px; }
.quote-card p.sub { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.quote-card .field { margin-bottom: 12px; }
.quote-card label { display: block; font-size: 12px; font-weight: 600; color: #d6d6d6; margin-bottom: 6px; }
.quote-card input, .quote-card select, .quote-card textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px;
  font-size: 14px; font-family: inherit; background: #0e0e0e; color: #fff;
}
.quote-card input::placeholder, .quote-card textarea::placeholder { color: #6a6a6a; }
.quote-card input:focus, .quote-card select:focus, .quote-card textarea:focus {
  outline: none; border-color: var(--orange); background: #161616;
}
.quote-card .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ----- Service page hero ----- */
.svc-hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0,0,0,.94) 0%, rgba(28,28,28,.86) 80%),
    var(--navy);
}
.svc-hero-inner {
  max-width: 1240px; margin: 0 auto; padding: 60px 20px 70px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
.crumbs { font-size: 13px; color: #9aabcb; margin-bottom: 14px; }
.crumbs a { color: #cfd9ec; }
.crumbs .sep { margin: 0 8px; color: #56688a; }
.svc-hero h1 { font-size: 42px; line-height: 1.1; margin: 0 0 16px; font-weight: 800; }
.svc-hero p.lead { font-size: 17px; color: #d6dff0; margin: 0 0 24px; max-width: 560px; }
.svc-hero .badge {
  display: inline-block; background: rgba(255,255,255,.1); color: var(--yellow);
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
}
.svc-hero-illust {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 30px; min-height: 240px; display: grid; place-items: center;
}
.svc-hero-illust .icon-xl {
  width: 120px; height: 120px; border-radius: 24px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-lg);
}

/* Product image variant — used when a service supplies hero_image (e.g., doorbell) */
.svc-hero-illust.hero-product {
  background:
    radial-gradient(60% 70% at 50% 55%, rgba(230,10,26,.18) 0%, rgba(230,10,26,.06) 40%, transparent 75%),
    radial-gradient(70% 75% at 50% 60%, rgba(255,255,255,.08) 0%, transparent 65%);
  border: none; padding: 24px; min-height: 320px;
}
.svc-hero-illust.hero-product img {
  display: block; max-width: 100%; max-height: 360px; height: auto;
  margin: 0 auto;
  filter:
    drop-shadow(0 0 1px rgba(255,255,255,.4))
    drop-shadow(0 24px 30px rgba(0,0,0,.55));
}
@media (max-width: 980px) {
  .svc-hero-illust.hero-product { min-height: 240px; padding: 16px; }
  .svc-hero-illust.hero-product img { max-height: 240px; }
}

/* ----- Van photo on services-hub hero ----- */
.hub-hero { padding-bottom: 0; overflow: hidden; }
.van-stage {
  position: relative;
  /* radial spotlight behind the van so dark areas of the wrap separate from the black hero */
  background:
    radial-gradient(60% 75% at 50% 55%, rgba(230,10,26,.18) 0%, rgba(230,10,26,.06) 35%, transparent 70%),
    radial-gradient(70% 80% at 50% 60%, rgba(255,255,255,.06) 0%, transparent 60%);
  display: flex; align-items: center; justify-content: center;
  min-height: 360px;
  /* let the van bleed slightly off the right edge */
  margin-right: -40px;
}
.van-photo {
  width: 110%; max-width: 760px; height: auto;
  display: block;
  filter:
    drop-shadow(0 4px 0 rgba(255,255,255,.08))
    drop-shadow(0 30px 40px rgba(0,0,0,.55))
    drop-shadow(0 0 1px rgba(255,255,255,.25));
  animation: vanFloat 7s ease-in-out infinite;
}
@keyframes vanFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (max-width: 980px) {
  .van-stage { margin-right: 0; min-height: 240px; }
  .van-photo { width: 100%; max-width: 540px; }
}

/* ----- Quick info bar ----- */
.info-bar {
  background: var(--soft); border-bottom: 1px solid var(--line);
  padding: 18px 20px;
}
.info-bar-inner {
  max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.info-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); }
.info-item .ico {
  width: 38px; height: 38px; border-radius: 10px; background: var(--card);
  display: grid; place-items: center; color: var(--orange); border: 1px solid var(--line);
}
.info-item strong { color: #fff; }

/* ----- Section base ----- */
section.block { padding: 72px 20px; }
.container { max-width: 1240px; margin: 0 auto; }
.eyebrow {
  display: inline-block; color: var(--orange); font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px;
}
h2.title { font-size: 34px; margin: 0 0 14px; color: #fff; line-height: 1.15; }

/* Title Case for all headings (capitalize first letter of every word) */
h1, h2, h3, h4, h5, h6, .title { text-transform: capitalize; }
/* Exception: keep eyebrows uppercase (designed style) */
.eyebrow, .stat-lbl { text-transform: uppercase; }
p.section-lead { color: var(--muted); font-size: 16px; max-width: 720px; margin: 0 auto 40px; text-align: center; }
.center { text-align: center; }

/* ----- Two-column body ----- */
.split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: start; }
.split h2 { font-size: 28px; color: #fff; margin: 0 0 14px; }
.split p { color: var(--text); margin: 0 0 14px; font-size: 15.5px; }
.split ul { padding-left: 0; list-style: none; }
.split ul li {
  position: relative; padding: 8px 0 8px 30px; font-size: 14.5px; color: var(--text);
  border-bottom: 1px solid var(--line);
}
.split ul li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  width: 20px; height: 20px; background: var(--orange); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800;
}
.aside-card {
  background: var(--card); border-radius: 14px; padding: 26px; border-top: 4px solid var(--orange);
}
.aside-card h3 { margin: 0 0 10px; color: #fff; font-size: 18px; }
.aside-card p { color: var(--muted); margin: 0 0 14px; font-size: 14px; }

/* ----- Services grid (smaller, dark cards with photo header) ----- */
.services { background: var(--soft); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .services-grid { grid-template-columns: 1fr; } }
.service {
  background: var(--card); border-radius: 12px; box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s;
  display: flex; flex-direction: column;
  overflow: hidden; padding: 0;
  border: 1px solid var(--line);
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.service .photo {
  width: 100%; aspect-ratio: 16/10; display: block;
  background: var(--navy-2);
}
.service .body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex-grow: 1; }
.service .icon {
  width: 44px; height: 44px; border-radius: 10px; background: rgba(230,10,26,.15);
  color: var(--orange); display: grid; place-items: center; margin-bottom: 10px;
  font-size: 18px;
}
.service h3 { margin: 0 0 6px; font-size: 16px; color: #fff; line-height: 1.25; }

/* Compact card variant — no hero image, just title + blurb + lightning bolt prefix */
.service-compact .photo { display: none; }
.service-compact .body { padding: 14px 16px 16px; }
.service-compact h3 {
  font-size: 15px; line-height: 1.3;
  display: flex; align-items: center; gap: 6px;
}
.service-compact h3 .bolt {
  flex-shrink: 0; vertical-align: middle;
}
.service-compact p { font-size: 12.5px; margin-bottom: 10px; }
.service-compact .more { font-size: 12px; }
.service p { margin: 0 0 12px; color: var(--muted); font-size: 13px; flex-grow: 1; line-height: 1.5; }
.service a.more, .service .more, .service span.more { font-weight: 700; font-size: 13px; color: var(--orange); }

/* ----- Pillar grid (3 main service pillars on home + services overview) ----- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar-card {
  background: var(--card); padding: 28px 24px; border-radius: 14px;
  box-shadow: var(--shadow); border-top: 4px solid var(--orange);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .15s, box-shadow .15s;
  border: 1px solid var(--line); border-top: 4px solid var(--orange);
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); text-decoration: none; border-color: var(--orange); }
.pillar-card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
  display: grid; place-items: center; color: #fff; margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.pillar-card h3 { margin: 0 0 8px; font-size: 20px; color: #fff; }
.pillar-card > p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.pillar-list {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 3px;
}
.pillar-list li {
  position: relative; padding: 3px 0 3px 22px; font-size: 12.5px; color: var(--text);
}
.pillar-list li::before {
  content: '✓'; position: absolute; left: 0; top: 3px;
  width: 16px; height: 16px; background: var(--orange); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-size: 10px; font-weight: 800;
}
.pillar-card .more { font-weight: 700; font-size: 13px; color: var(--orange); margin-top: auto; }
@media (max-width: 980px) { .pillar-grid { grid-template-columns: 1fr; } }

/* ----- Why grid ----- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.why-card {
  text-align: center; padding: 24px 18px; background: var(--card);
  border: 1px solid var(--line); border-radius: 12px;
}
.why-card .icon-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #1f1f1f, var(--orange));
  color: #fff; display: grid; place-items: center; margin: 0 auto 14px;
  box-shadow: var(--shadow); font-size: 22px;
}
.why-card h4 { margin: 0 0 6px; color: #fff; font-size: 15px; }
.why-card p { margin: 0; color: var(--muted); font-size: 13px; }

/* ----- Process steps ----- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 22px;
  position: relative;
}
.step .num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--orange); color: #fff;
  display: grid; place-items: center; font-weight: 800; margin-bottom: 12px;
}
.step h4 { margin: 0 0 6px; color: #fff; font-size: 15px; }
.step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

/* ----- FAQ ----- */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px;
  overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 22px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 15px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 22px; color: var(--orange); transition: transform .2s;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 22px 16px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ----- Stats band ----- */
.stats-band {
  background-image: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; padding: 50px 20px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1240px; margin: 0 auto; text-align: center;
}
.stat-num { font-size: 42px; font-weight: 800; color: var(--orange); }
.stat-lbl { font-size: 13px; color: #cfd9ec; text-transform: uppercase; letter-spacing: 1px; }

/* ----- Offers ----- */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.offer {
  background: var(--card); border: 2px dashed var(--orange); border-radius: 14px;
  padding: 26px; text-align: center;
}
.offer .save { color: var(--orange); font-weight: 800; font-size: 32px; line-height: 1; }
.offer h4 { margin: 8px 0 6px; color: #fff; font-size: 16px; }
.offer p { margin: 0 0 14px; color: var(--muted); font-size: 13px; }
.offer .expires { font-size: 11px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 10px; margin-top: 14px; }

/* ----- Reviews ----- */
.reviews { background: var(--soft); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
  background: var(--card); padding: 24px; border-radius: 12px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; border: 1px solid var(--line);
}
.stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; margin-bottom: 10px; }
.review p.body { margin: 0 0 16px; color: #d6d6d6; font-size: 14px; flex-grow: 1; line-height: 1.6; }
.review .who { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--orange);
  color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px;
}
.who-name { font-weight: 700; color: #fff; font-size: 13px; }
.who-loc  { font-size: 11.5px; color: var(--muted); }

/* ----- CTA band ----- */
.cta-band {
  background: linear-gradient(110deg, var(--orange) 0%, var(--orange-2) 70%);
  color: #fff; text-align: center; padding: 60px 20px;
}
.cta-band h3 { margin: 0 0 10px; font-size: 30px; }
.cta-band p { margin: 0 0 22px; opacity: .92; font-size: 16px; }
.cta-band .btn { background: #fff; color: var(--orange-2); box-shadow: 0 6px 14px rgba(0,0,0,.25); }
.cta-band .btn:hover { background: #0a0a0a; color: #fff; }
.cta-band .btn.ghost { background: transparent; color: #fff; border-color: #fff; }
.cta-band .btn.ghost:hover { background: #fff; color: var(--orange-2); }

/* ----- Service Area ----- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }
.area-list div {
  display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 15px;
}
.area-list div::before {
  content: ''; width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
}
.map-card { background: var(--navy); color: #fff; padding: 30px; border-radius: 16px; }
.map-card h3 { margin: 0 0 8px; }
.map-card p { color: #cfd9ec; }

/* ----- Footer ----- */
footer.site {
  background: var(--navy); color: #cfd9ec; padding: 60px 20px 24px;
}
.foot-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
footer.site h5 { color: #fff; font-size: 15px; margin: 0 0 14px; text-transform: uppercase; letter-spacing: 1px; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 8px; font-size: 14px; }
footer.site a { color: #cfd9ec; }
footer.site a:hover { color: #fff; }
.foot-bottom {
  max-width: 1240px; margin: 30px auto 0; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; font-size: 12px; color: #8d9bb9;
}

/* ----- Hamburger button (hidden on desktop) ----- */
.hamburger {
  display: none;
  background: transparent; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 10px; cursor: pointer;
  color: #fff; align-items: center; justify-content: center;
  height: 40px; width: 44px;
}
.hamburger:hover { border-color: var(--orange); }
.hamburger span {
  display: block; width: 22px; height: 2px; background: #fff;
  position: relative;
}
.hamburger span::before, .hamburger span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: #fff;
  transition: transform .2s;
}
.hamburger span::before { top: -7px; }
.hamburger span::after  { top:  7px; }
body.mobile-nav-open .hamburger span { background: transparent; }
body.mobile-nav-open .hamburger span::before { transform: translateY(7px) rotate(45deg); }
body.mobile-nav-open .hamburger span::after  { transform: translateY(-7px) rotate(-45deg); }

/* Body scroll lock when drawer open */
body.mobile-nav-open { overflow: hidden; }

/* ----- Responsive ----- */
@media (max-width: 1080px) {
  .hamburger { display: inline-flex; }
  .header-cta .phone-link { display: none; }
  .header-cta .btn { padding: 10px 14px; font-size: 13px; }

  /* nav.main becomes a full-screen drawer (iOS Safari hardened) */
  nav.main {
    display: none !important;
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;       /* iOS dynamic viewport (Safari 15.4+) */
    min-height: 100vh !important;
    z-index: 9999 !important;
    background: #0a0a0a !important;  /* solid black, no transparency */
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 80px 24px 40px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    margin: 0 !important;
  }
  body.mobile-nav-open nav.main { display: flex !important; }
  body.mobile-nav-open .hamburger {
    position: fixed !important;
    top: 14px; right: 14px;
    z-index: 10000 !important;
  }
  nav.main > a, nav.main > .dropdown > a {
    font-size: 17px; padding: 16px 12px; color: #fff !important;
    border-bottom: 1px solid var(--line); border-radius: 0;
    width: 100%;
  }
  nav.main > .dropdown { display: flex; flex-direction: column; }
  nav.main > .dropdown > a { font-weight: 700; color: var(--orange) !important; }

  /* Mega menu becomes an inline list under Services */
  .dropdown .mega, .dropdown .menu {
    display: grid !important;
    position: static; transform: none;
    background: transparent; border: none; box-shadow: none;
    padding: 8px 0 14px 0; min-width: 0;
    grid-template-columns: 1fr; gap: 12px;
    margin: 0; white-space: normal;
  }
  .mega-h {
    color: var(--orange); font-size: 12px; padding: 4px 8px;
    border-bottom: 1px solid var(--line); margin-bottom: 4px;
  }
  .mega-col a, .menu a {
    padding: 10px 16px; font-size: 15px; color: #d6d6d6 !important;
    border-radius: 6px;
  }
  .mega-overview { color: var(--orange) !important; }
}
@media (max-width: 980px) {
  .hero-inner, .svc-hero-inner, .split, .area-grid {
    grid-template-columns: 1fr; padding: 50px 20px 60px;
  }
  .hero h1, .svc-hero h1 { font-size: 32px; }
  .services-grid, .why-grid, .offers-grid, .reviews-grid, .stats-grid, .foot-grid, .steps, .info-bar-inner {
    grid-template-columns: 1fr 1fr;
  }
  section.block { padding: 56px 20px; }
  h2.title { font-size: 26px; }
  .topbar .left span:nth-child(2) { display: none; }
}
@media (max-width: 600px) {
  .services-grid, .why-grid, .offers-grid, .reviews-grid, .stats-grid, .foot-grid, .steps, .info-bar-inner {
    grid-template-columns: 1fr;
  }
  .quote-card .row2 { grid-template-columns: 1fr; }

  /* Header tightening — make room for hamburger on iPhone */
  .header-inner { padding: 10px 14px; gap: 10px; }
  .logo-img { height: 56px; max-width: 220px; }
  .header-cta { gap: 8px; }
  .header-cta .btn { display: none; }   /* rely on hamburger drawer for nav */
  .hamburger { width: 40px; height: 40px; padding: 6px 8px; }

  /* Topbar — strip down to essentials */
  .topbar { font-size: 11px; padding: 6px 12px; }
  .topbar .left span:first-child { display: none; }
  .topbar a.lang-toggle { padding: 1px 8px; font-size: 10px; }
  .topbar .right { display: flex; align-items: center; gap: 0; }

  /* Hero typography — smaller on tiny screens */
  .hero h1, .svc-hero h1 { font-size: 26px; }
  .hero p.lead, .svc-hero p.lead { font-size: 15px; }
  .hero-inner, .svc-hero-inner { padding: 36px 16px 50px; }
  .hero-actions { flex-direction: column; gap: 8px; }
  .hero-actions .btn.lg { width: 100%; text-align: center; }

  /* Sections more compact */
  section.block { padding: 44px 16px; }
  h2.title { font-size: 22px; }
  p.section-lead { font-size: 14px; }

  /* Quote card form less padding so it fills phone width */
  .quote-card { padding: 22px 18px; }
  .quote-card h3 { font-size: 19px; }

  /* Tier cards slightly tighter */
  .tier { padding: 24px 20px; }
  .tier .tier-price { font-size: 36px; }

  /* Footer single column with less gap */
  footer.site { padding: 40px 18px 18px; }
  .foot-grid { gap: 26px; }

  /* Map / contact card stacked nicer */
  .map-card { padding: 22px; }

  /* Stats band — smaller numbers, fit 2 per row visibly */
  .stats-band { padding: 36px 16px; }
  .stat-num { font-size: 32px; }
  .stat-lbl { font-size: 11px; }

  /* Service cards — restore 2 per row instead of 1 (better space use) */
  .services-grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .service .body { padding: 12px 14px 14px; }
