/* ── HERO ── */
.section-hero {
  margin-top: 62px;
  min-height: calc(94vh - 62px);
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--cream);
}
.hero__left {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px,7vh,96px) clamp(24px,5vw,72px);
}
.hero__region {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero__h1 {
  font-family: var(--fontd); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 76px);
  color: var(--ink); line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: 28px;
  text-wrap: balance;
}
.hero__sub {
  font-size: 17px; color: var(--mid); line-height: 1.75;
  margin-bottom: 36px; max-width: 440px; font-weight: 300;
}
.hero__sub em { color: var(--ink2); font-style: normal; font-weight: 500; }
.hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats {
  display: flex; gap: 0;
  border-top: 1px solid var(--border); padding-top: 28px;
}
.hero__stat {
  padding-right: 28px; margin-right: 28px;
  border-right: 1px solid var(--border);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-family: var(--fontd); font-size: 28px;
  font-weight: 700; color: var(--ink); line-height: 1;
}
.hero__stat-label {
  font-size: 12px; color: var(--mid); margin-top: 3px;
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
}
.hero__right { position: relative; overflow: hidden; }
.hero__right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero__right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 18%);
}
.hero__emergency {
  position: absolute; bottom: 32px; right: 32px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 6px; padding: 14px 18px;
  z-index: 2;
}
.hero__emergency-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 4px;
}
.hero__emergency-phone {
  font-family: var(--fontd); font-size: 20px;
  font-weight: 700; color: var(--ink); letter-spacing: -0.01em;
}
.hero__emergency-sub { font-size: 12px; color: var(--mid); margin-top: 2px; }

/* ── STATS ── */
.section-stats {
  background: #1a3a6e;
  padding: clamp(28px,4vh,44px) clamp(20px,5vw,60px);
}
.section-stats .max-w {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; text-align: center;
}
.stat-item__num {
  font-family: var(--fontd); font-size: clamp(32px,3.5vw,48px);
  font-weight: 700; color: #fff; line-height: 1; letter-spacing: -0.02em;
}
.stat-item__label {
  font-size: 12px; color: rgba(255,255,255,0.45);
  margin-top: 6px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500;
}

/* ── PRODUCTS ── */
.section-products {
  padding: clamp(60px,8vh,110px) clamp(20px,5vw,60px);
  background: var(--parchment); border-top: 1px solid var(--border);
}
.products__header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 52px;
  flex-wrap: wrap; gap: 20px;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 4px rgba(24,22,15,0.04);
}
.product-card:hover {
  border-color: var(--ink);
  box-shadow: 0 8px 28px rgba(24,22,15,0.1);
}
.product-card__image {
  position: relative; padding-top: 62%; overflow: hidden;
  background: var(--cream);
}
.product-card__image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
  filter: brightness(0.95);
}
.product-card:hover .product-card__image img { transform: scale(1.04); }
.product-card__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--parchment); border: 1px solid var(--border);
  border-radius: 2px; padding: 3px 10px;
  font-size: 10px; font-weight: 600; color: var(--mid);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.product-card__body {
  padding: 20px 22px 24px;
  flex: 1; display: flex; flex-direction: column;
}
.product-card__title {
  font-family: var(--fontd); font-size: 22px; font-weight: 600;
  color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em;
}
.product-card__desc {
  font-size: 14px; color: var(--mid); line-height: 1.7;
  flex: 1; font-weight: 300;
}
.product-card__link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px; color: var(--ink2); font-weight: 500;
  font-size: 13px; letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  width: fit-content; transition: border-color 0.2s;
}
.product-card__link:hover { border-color: var(--ink); }

/* ── ABOUT ── */
.section-about {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-about .max-w {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
}
.about__image {
  position: relative; overflow: hidden; min-height: 380px;
}
.about__image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.92) saturate(0.85);
}
.about__text {
  padding: clamp(48px,6vh,80px) clamp(36px,4vw,64px);
  display: flex; flex-direction: column; justify-content: center;
}
.about__text p { font-size: 16px; color: var(--mid); line-height: 1.85; font-weight: 300; margin-bottom: 16px; }
.about__bullets { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.about__bullet { display: flex; gap: 10px; align-items: flex-start; }
.about__bullet-dash { color: var(--gold); font-weight: 600; flex-shrink: 0; margin-top: 2px; }
.about__bullet-text { font-size: 14px; color: var(--ink2); line-height: 1.6; }
.about__ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.about__entity {
  font-size: 14px; color: var(--mid); line-height: 1.8; font-weight: 300;
  border-top: 1px solid var(--border); padding-top: 16px;
}

/* ── CLIENTS ── */
.section-clients {
  padding: clamp(48px,6vh,72px) clamp(20px,5vw,60px);
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.clients__heading {
  text-align: center;
  font-family: var(--fontd); font-weight: 700;
  font-size: clamp(24px,3vw,36px); color: var(--ink);
  letter-spacing: -0.02em; margin-bottom: 40px;
}
.clients__grid {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; align-items: center;
}
.client-logo {
  height: 80px; width: 140px;
  display: flex; align-items: center; justify-content: center;
  padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 4px; background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.client-logo:hover {
  border-color: var(--ink2);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.client-logo img {
  max-height: 48px; width: auto; max-width: 110px; object-fit: contain;
}

/* ── LOCATION ── */
.section-location {
  border-top: 1px solid var(--border); background: var(--parchment);
}
.location__header {
  padding: clamp(56px,7vh,96px) clamp(20px,5vw,60px) 40px;
}
.location__sub {
  font-size: 16px; color: var(--mid); max-width: 520px;
  font-weight: 300; line-height: 1.7;
}
.location__map-wrap {
  position: relative; height: 400px;
  border-top: 1px solid var(--border);
}
.location__map-wrap iframe {
  border: 0; display: block; width: 100%; height: 400px;
  filter: grayscale(20%) contrast(1.05);
}
.location__card {
  position: absolute; top: 24px; left: 40px;
  background: rgba(250,247,243,0.97);
  backdrop-filter: blur(8px); border-radius: 4px;
  padding: 18px 22px;
  box-shadow: 0 4px 24px rgba(24,22,15,0.12);
  border: 1px solid var(--border); z-index: 10;
}
.location__card-name {
  font-family: var(--fontd); font-weight: 700; font-size: 17px;
  color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em;
}
.location__card-info { font-size: 13px; color: var(--mid); line-height: 2.1; }
.location__card-info a { color: var(--accent); font-weight: 600; }
.location__card-emergency { color: var(--gold); font-weight: 600; }

/* ── NETWORK MAP ── */
.section-network-map {
  padding: clamp(60px,8vh,100px) clamp(20px,5vw,60px);
  background: var(--white); border-top: 1px solid var(--border);
}
.network-map__grid {
  display: grid; grid-template-columns: 260px 1fr;
  gap: clamp(40px,6vw,80px); align-items: center;
}
.network-map__sub {
  font-size: 15px; color: var(--mid); line-height: 1.75;
  font-weight: 300; margin-bottom: 28px;
}
.network-map__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.network-map__city {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--mid); font-weight: 400;
  transition: color 0.2s;
}
.network-map__city:hover,
.network-map__city.hovered { color: var(--ink); font-weight: 600; }
.network-map__dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
}
.network-map__dot--master { background: var(--gold); }
.network-map__dot--active  { background: var(--accent); }
.network-map__dot--muted   { background: #b0a898; }
.network-map__visual { position: relative; max-width: 520px; }
.network-map__visual img { width: 100%; display: block; user-select: none; }
/* Pins rendered via JS */
.map-pin {
  position: absolute; transform: translate(-50%,-50%);
  text-decoration: none;
}
.map-pin__circle {
  display: block; width: 16px; height: 16px;
  border-radius: 50%; border: 2px solid white;
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s; position: relative; z-index: 2;
}
.map-pin:hover .map-pin__circle,
.map-pin.hovered .map-pin__circle { transform: scale(1.3); }
.map-pin__label {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.97); border: 1px solid var(--border);
  border-radius: 3px; padding: 3px 8px; white-space: nowrap;
  font-size: 11px; font-weight: 700; color: var(--ink2);
  font-family: var(--font); letter-spacing: 0.04em;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1); z-index: 3;
  transition: color 0.2s;
}

/* ── FAQ ── */
.section-faq {
  padding: clamp(60px,8vh,100px) clamp(20px,5vw,60px);
  background: var(--cream); border-top: 1px solid var(--border);
}
.faq__grid {
  display: grid; grid-template-columns: 300px 1fr;
  gap: clamp(40px,6vw,80px);
}
.faq__sticky {
  position: sticky; top: 110px; height: fit-content;
}
.faq__intro { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 24px; font-weight: 300; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; gap: 24px; text-align: left; cursor: pointer;
}
.faq__question-text {
  font-size: 15px; font-weight: 500; color: var(--ink2); line-height: 1.45;
  transition: color 0.2s;
}
.faq__item.open .faq__question-text { color: var(--accent); }
.faq__icon {
  color: var(--mid); font-size: 18px; flex-shrink: 0;
  transition: transform 0.2s; line-height: 1;
  display: block; font-style: normal;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  display: none; padding-bottom: 20px;
  font-size: 15px; color: var(--mid); line-height: 1.8; font-weight: 300;
}
.faq__item.open .faq__answer { display: block; }

/* ── CTA STRIP ── */
.section-cta {
  background: #1a3356;
  padding: clamp(40px,5vh,60px) clamp(20px,5vw,60px);
  text-align: center;
}
.cta__pretitle {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 14px;
}
.cta__heading {
  font-family: var(--fontd); font-size: clamp(32px,5vw,62px);
  font-weight: 700; color: #fff; letter-spacing: -0.02em;
  margin-bottom: 12px; line-height: 1.0;
}
.cta__sub {
  font-size: 17px; color: rgba(255,255,255,0.5);
  margin-bottom: 32px; font-weight: 300;
}
.cta__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta__btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--ink); padding: 14px 28px;
  border-radius: var(--r); font-weight: 600; font-size: 15px;
  transition: opacity 0.2s;
}
.cta__btn-primary:hover { opacity: 0.88; }
.cta__btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 24px; border-radius: var(--r);
  font-weight: 400; font-size: 15px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .section-hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__right { height: 360px; }
  .hero__right-overlay { background: linear-gradient(to bottom, var(--cream) 0%, transparent 30%); }

  .section-about .max-w { grid-template-columns: 1fr; }
  .about__image { height: 300px; min-height: unset; }

  .faq__grid { grid-template-columns: 1fr; }
  .faq__sticky { position: static; }

  .network-map__grid { grid-template-columns: 1fr; }
  .network-map__visual { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section-stats .max-w { grid-template-columns: repeat(2,1fr); }

  .products__header { flex-direction: column; align-items: flex-start; }

  .location__card { left: 16px; top: 16px; }
}

@media (max-width: 480px) {
  .section-stats .max-w { grid-template-columns: repeat(2,1fr); }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
  .hero__stat { border-right: none; padding-right: 0; margin-right: 0; }
}
