:root {
  --ink: #0d1b2a;
  --ink-soft: #4a5e72;
  --blue: #1e3a5f;
  --blue-mid: #2b5fa5;
  --orange: #e85d26;
  --orange-dark: #c74d1a;
  --paper: #f2f5f9;
  --surface: #ffffff;
  --mist: #ebf0f6;
  --steel: #d0dcec;
  --line: #c0cedf;
  --mint: #ebf4f8;
  --shadow: 0 4px 24px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(13, 27, 42, 0.14);
  --grid-color: rgba(43, 95, 165, 0.07);
  --grid-size: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'IBM Plex Sans', Arial, sans-serif;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

/* ── HEADER ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  padding: 12px 0;
  background: rgba(242, 245, 249, 0.94);
  backdrop-filter: blur(14px);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -50vw;
  right: -50vw;
  height: 1px;
  background: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--blue);
  border-radius: 2px;
  color: var(--orange);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  color: var(--ink-soft);
  transition: color 0.2s, border-color 0.2s;
}

.nav a:hover {
  color: var(--ink);
  border-color: var(--orange);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--blue);
  white-space: nowrap;
}

.phone-cta-label {
  display: none;
}

.icon {
  color: var(--orange);
}

/* ── SECTIONS ── */

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

/* ── EYEBROW ── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--blue-mid);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: '//';
  color: var(--orange);
  font-weight: 400;
  letter-spacing: 0;
}

/* ── TYPOGRAPHY ── */

h1,
h2,
h3 {
  margin-top: 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 90px);
  line-height: 0.93;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.01em;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.1;
}

p {
  margin-top: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.lead {
  max-width: 600px;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.6;
}

/* ── HERO ── */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 72px);
  padding-top: 40px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── BUTTONS ── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 2px;
  font: inherit;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(232, 93, 38, 0.28);
}

.button-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 6px 28px rgba(232, 93, 38, 0.38);
}

/* ── HERO MARKERS ── */

.hero-markers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 680px;
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}

.hero-markers span {
  display: grid;
  align-items: center;
  min-height: 68px;
  padding: 12px 14px;
  color: var(--blue);
  background: var(--surface);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  border-right: 1px solid var(--line);
}

.hero-markers span:last-child {
  border-right: none;
}

/* ── HERO MEDIA ── */

.hero-media {
  position: relative;
  min-height: 580px;
  border-radius: 2px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(242, 245, 249, 0.72), rgba(242, 245, 249, 0.04) 40%),
    url("assets/hero-chimney.png") center / cover;
  box-shadow: var(--shadow-lg);
}

.hero-media::before,
.hero-media::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--orange);
  border-style: solid;
  z-index: 1;
}

.hero-media::before {
  top: 16px;
  right: 16px;
  border-width: 2px 2px 0 0;
}

.hero-media::after {
  bottom: 16px;
  left: 16px;
  border-width: 0 0 2px 2px;
}

/* ── COVERAGE ── */

.coverage {
  padding-top: 20px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 20px;
}

.map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  background: #1a3248;
  aspect-ratio: 200 / 130;
  min-height: 240px;
}

.map-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.8) contrast(1.08);
  z-index: 0;
}

.map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ── Pulsing center dot ── */

.map-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 0 0 2px rgba(232, 93, 38, 0.35);
}

.map-pulse::before,
.map-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  animation: map-pulse 2.2s ease-out infinite;
}

.map-pulse::after {
  inset: -6px;
  animation-delay: 0.8s;
}

@keyframes map-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ── Radius measurement label ── */

.map-radius-label {
  position: absolute;
  top: 44%;
  left: 80%;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  color: rgba(232, 93, 38, 0.95);
  letter-spacing: 0.14em;
  white-space: nowrap;
  transform: translateY(-50%);
  z-index: 4;
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

/* ── City labels ── */

.map-center,
.map-city {
  position: absolute;
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  border-radius: 2px;
  background: rgba(5, 15, 28, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  backdrop-filter: blur(6px);
  z-index: 4;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.map-center {
  top: 50%;
  left: 50%;
  background: var(--orange);
  border-color: var(--orange-dark);
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  transform: translate(-50%, calc(-100% - 13px));
}

.city-1 { top: 62%; left: 34%; }
.city-2 { top: 48%; left: 36%; }
.city-3 { top: 47%; left: 23%; }
.city-4 { top: 65%; left: 37%; }
.city-5 { top: 53%; left: 52%; }
.city-6 { top: 65%; left: 27%; }
.city-7 { top: 59%; left: 21%; }

/* ── STATS ── */

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--line);
}

.stats div {
  display: grid;
  align-content: center;
  min-height: 120px;
  padding: 22px 20px;
  background: var(--blue);
}

.stats strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.stats span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

.stats small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* ── CARDS ── */

.cards {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--line);
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  background: var(--surface);
  overflow: hidden;
  transition: background 0.2s;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--orange);
  transition: height 0.3s ease;
}

.card:hover::before {
  height: 100%;
}

.card p {
  margin-bottom: 0;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--orange);
  font-size: 22px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.accent-card {
  background: var(--blue);
}

.accent-card::before {
  background: var(--orange);
}

.accent-card h3,
.accent-card p {
  color: #fff;
}

.accent-card .card-icon {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--orange);
}

.tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 8px;
  border-radius: 2px;
  color: var(--orange);
  background: rgba(232, 93, 38, 0.1);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.text-link::after {
  content: '→';
}

/* ── RISK BLOCK ── */

.risk-block {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 32px;
  margin-top: 20px;
  padding: 36px;
  border-radius: 2px;
  color: #fff;
  background: var(--blue);
}

.risk-block h3,
.risk-block p {
  color: #fff;
}

.risk-block .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.risk-block .eyebrow::before {
  color: var(--orange);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
  color: inherit;
  line-height: 1.5;
  font-size: 15px;
}

.check-list li::before {
  content: '';
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--orange);
  transform: rotate(45deg);
}

.norms {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.norms span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

/* ── TRUST ── */

.trust-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-cards .card {
  min-height: 220px;
  padding: 22px;
}

.trust-cards h3 {
  font-size: 18px;
}

.trust-note {
  margin-top: 20px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--mist);
}

.trust-note p {
  max-width: 860px;
  color: var(--ink);
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.check-list.inline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--ink-soft);
}

/* ── APPROACH ── */

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: start;
}

.approach-copy {
  position: sticky;
  top: 90px;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--line);
}

.approach-steps article {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.approach-img {
  width: 100%;
  height: 180px;
  flex-shrink: 0;
  background-color: var(--blue);
  background-image:
    linear-gradient(135deg, rgba(43, 95, 165, 0.6) 0%, rgba(13, 27, 42, 0.9) 100%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, 20px 20px, 20px 20px;
  background-position: center, 0 0, 0 0;
  background-repeat: no-repeat, repeat, repeat;
}

.approach-img[style*="url("] {
  background-image: attr(style);
}

/* override when real photo is set */
.approach-img[style] {
  background-size: cover;
  background-position: center;
  background-color: var(--blue);
}

.approach-steps article > span,
.approach-steps article > h3,
.approach-steps article > p {
  padding-left: 24px;
  padding-right: 24px;
}

.approach-steps article > span {
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--orange);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.approach-steps article > h3 {
  margin-bottom: 8px;
}

.approach-steps article > p {
  padding-bottom: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── CASES ── */

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--line);
}

.case-card {
  overflow: hidden;
  background: var(--surface);
}

.case-card h3 {
  min-height: 68px;
  margin: 0;
  padding: 16px 18px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.case-photo {
  display: block;
  aspect-ratio: 1.34 / 1;
  background-image: url("assets/cases-collage.png");
  background-repeat: no-repeat;
  background-size: 300% 200%;
  transition: transform 0.4s ease;
}

.case-card:hover .case-photo {
  transform: scale(1.04);
}

.photo-1 { background-position: 0% 0%; }
.photo-2 { background-position: 50% 0%; }
.photo-3 { background-position: 100% 0%; }
.photo-4 { background-position: 0% 100%; }
.photo-5 { background-position: 50% 100%; }
.photo-6 { background-position: 100% 100%; }

/* ── PRICE ── */

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--line);
}

.price-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 270px;
  padding: 26px;
  background: var(--surface);
}

.price-card strong {
  color: var(--orange);
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.price-card span {
  color: var(--ink-soft);
  font-size: 13px;
}

.price-card.muted {
  background: var(--mist);
}

/* ── FAQ ── */

.faq-list {
  columns: 2;
  column-gap: 1px;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  background: var(--line);
}

details {
  display: inline-block;
  width: 100%;
  margin: 0 0 1px;
  background: var(--surface);
  break-inside: avoid;
  border: none;
  border-radius: 0;
}

details:last-child {
  margin: 0;
}

summary {
  position: relative;
  min-height: 60px;
  padding: 18px 52px 18px 20px;
  color: var(--blue);
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
  transition: transform 0.22s;
  line-height: 1;
}

details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

details[open] summary {
  background: var(--mist);
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

/* ── CONTACTS ── */

.contacts {
  padding-bottom: 40px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  border-radius: 2px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 27, 42, 0.97) 0%, rgba(30, 58, 95, 0.93) 100%),
    url("assets/hero-chimney.png") center / cover;
}

.contact-copy {
  padding: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-copy h2,
.contact-copy p {
  color: #fff;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.contact-links a,
.contact-links span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s;
}

.contact-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
}

.contact-markers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.contact-markers li {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
}

/* ── CONTACT CTA ── */

.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.contact-cta .call-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 0;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  padding: 0 28px;
  background: var(--orange);
  border: none;
  border-radius: 2px;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(232, 93, 38, 0.35);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.call-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 93, 38, 0.45);
}

.call-btn svg {
  flex-shrink: 0;
}

.cta-phone-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

/* ── CONTACT MAP ── */

.contact-map {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-map .map-card {
  aspect-ratio: 200 / 70;
  min-height: 200px;
  border-radius: 0;
  border: none;
}

/* ── FOOTER ── */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
}

.footer a {
  color: var(--orange);
  font-weight: 500;
}

/* ══════════════════════════════════
   RESPONSIVE — TABLET (≤1060px)
══════════════════════════════════ */

@media (max-width: 1060px) {
  .nav {
    display: none;
  }

  .hero,
  .coverage-grid,
  .approach {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 450px;
  }

  .trust-cards,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approach-copy {
    position: static;
  }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE (≤760px)
══════════════════════════════════ */

@media (max-width: 760px) {

  /* Header */
  .site-header {
    width: min(100% - 24px, 1180px);
    min-height: 60px;
    gap: 12px;
    padding: 10px 0;
  }

  .brand-name {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-phone {
    gap: 7px;
    padding: 10px 14px;
    background: var(--orange);
    border-radius: 2px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.04em;
  }

  .header-phone .icon {
    color: #fff;
    font-size: 14px;
  }

  .phone-cta-label {
    display: inline;
  }

  /* Sections */
  .section {
    width: min(100% - 24px, 1180px);
    padding: 44px 0;
  }

  /* Typography */
  h1 {
    font-size: clamp(36px, 10vw, 52px);
    line-height: 0.96;
    margin-bottom: 18px;
  }

  h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  h3 {
    font-size: 19px;
  }

  .lead {
    font-size: 16px;
    margin-bottom: 24px;
  }

  /* Hero */
  .hero {
    gap: 28px;
    padding-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 56px;
    font-size: 15px;
  }

  .hero-markers {
    grid-template-columns: 1fr;
    margin-top: 24px;
    max-width: 100%;
  }

  .hero-markers span {
    min-height: 52px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .hero-markers span:last-child {
    border-bottom: none;
  }

  .hero-media {
    min-height: 260px;
  }

  /* Coverage */
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stats div {
    min-height: 90px;
    padding: 16px 12px;
  }

  .stats strong {
    font-size: 32px;
  }

  .stats span {
    font-size: 10px;
    letter-spacing: 0.04em;
  }

  .stats small {
    font-size: 9px;
  }

  .map-card {
    aspect-ratio: 4 / 3;
    min-height: 220px;
  }

  /* Services */
  .cards.three {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
    padding: 22px;
  }

  /* Trust */
  .trust-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-cards .card {
    min-height: auto;
    padding: 20px;
  }

  .check-list.inline {
    grid-template-columns: 1fr 1fr;
  }

  .trust-note {
    padding: 22px;
  }

  .trust-note p {
    font-size: 19px;
  }

  /* Risk block */
  .risk-block {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 20px;
  }

  /* Approach */
  .approach {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .approach-img {
    height: 200px;
  }

  /* Cases */
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Price */
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
    padding: 20px;
  }

  /* FAQ */
  .faq-list {
    columns: 1;
  }

  summary {
    font-size: 16px;
    min-height: 52px;
    padding: 14px 48px 14px 16px;
  }

  /* Contacts */
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding: 28px 22px;
  }

  .contact-cta {
    padding: 28px 22px;
  }

  .call-btn {
    font-size: 16px;
    min-height: 58px;
  }

  .cta-phone-number {
    font-size: 16px;
  }

  .contact-map .map-card {
    aspect-ratio: 16 / 9;
    min-height: 180px;
  }

  .contact-markers {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */
  .footer {
    width: min(100% - 24px, 1180px);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ══════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤400px)
══════════════════════════════════ */

@media (max-width: 400px) {
  .header-phone {
    font-size: 11px;
    padding: 9px 10px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stats div {
    min-height: 72px;
    padding: 14px 16px;
  }

  .trust-cards {
    grid-template-columns: 1fr;
  }

  .check-list.inline {
    grid-template-columns: 1fr;
  }

  .contact-markers {
    grid-template-columns: 1fr;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }
}
