:root {
  --black: #050507;
  --ink: #111114;
  --panel: #17171b;
  --red: #d80f1e;
  --red-dark: #990711;
  --white: #ffffff;
  --paper: #f4f4f2;
  --muted: #6b6d73;
  --line: #d9d9d6;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

svg {
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 60px);
  background: rgba(5, 5, 7, 0.97);
  color: var(--white);
  border-bottom: 3px solid var(--red);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark,
.logo-symbol {
  display: grid;
  grid-template-columns: 38px 48px 38px;
  align-items: center;
  color: var(--white);
}

.brand-mark strong,
.logo-symbol b {
  display: grid;
  place-items: center;
  height: 48px;
  font-size: 44px;
  font-style: italic;
  line-height: 1;
}

.wing,
.logo-symbol span {
  height: 22px;
  background:
    linear-gradient(var(--red), var(--red)) 0 0 / 100% 5px no-repeat,
    linear-gradient(var(--red), var(--red)) 18% 8px / 82% 5px no-repeat,
    linear-gradient(var(--red), var(--red)) 36% 16px / 64% 5px no-repeat;
}

.wing-left,
.logo-symbol span:first-child {
  transform: skewX(22deg);
}

.wing-right,
.logo-symbol span:last-child {
  transform: scaleX(-1) skewX(22deg);
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text span {
  font-size: 1.5rem;
  font-weight: 900;
}

.brand-text small {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 4px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 34px);
  color: #e8e8e8;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--red);
}

.header-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-cta,
.primary-action {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(216, 15, 30, 0.24);
}

.secondary-action {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  min-height: 680px;
  padding: clamp(38px, 6vw, 86px);
  background:
    linear-gradient(135deg, rgba(216, 15, 30, 0.16), transparent 28%),
    radial-gradient(circle at 75% 12%, rgba(216, 15, 30, 0.22), transparent 28%),
    var(--black);
  color: var(--white);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
}

.logo-lockup {
  max-width: 610px;
}

.logo-symbol {
  grid-template-columns: 84px 108px 84px;
  margin-bottom: 12px;
}

.logo-symbol b {
  height: 98px;
  font-size: 94px;
}

.logo-symbol span {
  height: 42px;
  background:
    linear-gradient(var(--red), var(--red)) 0 0 / 100% 9px no-repeat,
    linear-gradient(var(--red), var(--red)) 18% 15px / 82% 9px no-repeat,
    linear-gradient(var(--red), var(--red)) 36% 30px / 64% 9px no-repeat;
}

.logo-lockup h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-style: italic;
  font-weight: 950;
  line-height: 0.86;
}

.logo-lockup p {
  margin: 14px 0 0;
  color: var(--red);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 950;
  letter-spacing: 8px;
}

.headline h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.3vw, 3.5rem);
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

strong,
.headline strong {
  color: var(--red);
}

.headline p {
  max-width: 650px;
  margin: 0;
  color: #d7d7d7;
  font-size: 1.13rem;
}

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

.dispatch-panel {
  align-self: center;
  min-height: 530px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    #121216;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-top span,
.detail-kicker {
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-top strong {
  color: var(--white);
  font-size: 1.35rem;
}

.coverage-map {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.real-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #101014;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.real-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: saturate(0.95) contrast(1.04);
}

.map-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: rgba(5, 5, 7, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  color: var(--white);
  backdrop-filter: blur(8px);
}

.map-overlay strong {
  color: var(--white);
}

.map-overlay span {
  color: #d7d7d7;
  font-size: 0.95rem;
}

.coverage-info {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(230px, 1fr);
  gap: 14px;
}

.map-card-note {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.map-card-note strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.map-card-note span {
  color: #d7d7d7;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
  padding: 16px;
  background: rgba(216, 15, 30, 0.1);
  border: 1px solid rgba(216, 15, 30, 0.24);
  border-radius: 8px;
}

.coverage-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
}

.map-open-link {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.live-grid article {
  min-height: 96px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.live-grid strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
}

.live-grid span {
  color: #cfcfd2;
}

.intro-grid,
.split-section,
.quote-section,
.services,
.mvv-section {
  width: min(1180px, calc(100% - 40px));
  margin: 44px auto;
}

.intro-grid,
.split-section,
.quote-section,
.mvv-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

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

.info-block,
.benefits-panel,
.why-panel,
.quote-card,
.service-detail,
.mvv-section article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

.mvv-section article {
  position: relative;
  overflow: hidden;
  min-height: 290px;
}

.mvv-section article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--red);
}

.mvv-section span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  background: var(--black);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mvv-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.mvv-section p {
  margin: 0;
  color: #3b3b40;
  font-size: 1.04rem;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-title h2,
.center-title h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-title.compact h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.title-icon {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.98rem;
  font-weight: 950;
}

.info-block p,
.quote-copy p {
  margin: 0 0 20px;
  font-size: 1.08rem;
}

.area-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.area-button {
  min-height: 40px;
  padding: 0 14px;
  background: #eeeeec;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
}

.area-button.active,
.area-button:hover,
.service-card.active,
.service-card:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.area-text {
  min-height: 72px;
  padding: 18px;
  background: #f7f7f5;
  border-left: 5px solid var(--red);
  border-radius: 8px;
  font-weight: 700;
}

.center-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}

.center-title::before,
.center-title::after {
  content: "";
  flex: 1 1 80px;
  height: 1px;
  background: #aaa;
}

.service-workspace {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.service-list {
  display: grid;
  gap: 10px;
}

.service-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: transform 0.16s ease, background 0.16s ease;
}

.service-card:hover {
  transform: translateX(5px);
}

.service-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-weight: 950;
}

.service-card.active span,
.service-card:hover span {
  background: var(--white);
  color: var(--red);
}

.service-detail {
  display: grid;
  align-content: center;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(216, 15, 30, 0.08), transparent 44%),
    var(--white);
}

.service-detail h3 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.service-detail p {
  max-width: 620px;
  color: #3b3b40;
  font-size: 1.08rem;
}

.service-detail ul,
.benefit-list,
.why-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-detail li,
.why-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  font-weight: 750;
}

.service-detail li::before,
.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 13px;
  height: 13px;
  background: var(--red);
  border-radius: 50%;
}

.quote-section {
  align-items: center;
  padding: clamp(26px, 4vw, 46px);
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-copy p {
  color: #d7d7d7;
}

.quote-card {
  color: var(--ink);
}

.quote-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #2c2d32;
  font-weight: 850;
}

.quote-card input[type="text"],
.quote-card input[type="tel"],
.quote-card select,
.quote-card input[type="range"] {
  width: 100%;
}

.quote-card input[type="text"],
.quote-card input[type="tel"],
.quote-card select {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f8f8f7;
  color: var(--ink);
}

.quote-card input[type="range"] {
  accent-color: var(--red);
}

.quote-result {
  margin-top: 22px;
  padding: 18px;
  background: #f7f7f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-result span,
.quote-result strong,
.quote-result p {
  display: block;
  margin-bottom: 12px;
}

.quote-result strong {
  color: var(--ink);
}

.quote-result p {
  color: var(--muted);
}

.benefits-panel,
.why-panel {
  min-height: 360px;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 800;
}

.benefit-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 950;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(260px, 0.9fr) minmax(220px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px) clamp(18px, 4vw, 60px);
  background: var(--black);
  color: var(--white);
  border-top: 4px solid var(--red);
}

.whatsapp-card strong,
.promise strong {
  display: block;
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1.12;
  text-transform: uppercase;
}

.whatsapp-card span,
.promise span {
  display: block;
  margin-top: 8px;
  color: #e8e8e8;
}

address {
  display: grid;
  gap: 10px;
  padding: 0 28px;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  font-style: normal;
  font-size: 1.05rem;
}

address a:first-child {
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 950;
}

address a:hover,
address a:focus-visible {
  color: var(--red);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.social-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promise {
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .site-header {
    flex-wrap: wrap;
  }

  .top-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .intro-grid,
  .split-section,
  .quote-section,
  .mvv-section,
  .service-workspace,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .dispatch-panel {
    min-height: 470px;
  }

  .footer-cta address {
    padding: 22px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    gap: 14px;
  }

  .brand-mark {
    grid-template-columns: 28px 36px 28px;
  }

  .brand-mark strong {
    height: 38px;
    font-size: 36px;
  }

  .brand-text span {
    font-size: 1.2rem;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 0;
    padding: 36px 20px;
  }

  .logo-symbol {
    grid-template-columns: 52px 72px 52px;
  }

  .logo-symbol b {
    height: 70px;
    font-size: 68px;
  }

  .logo-lockup h1 {
    font-size: clamp(3.35rem, 18vw, 5.5rem);
  }

  .logo-lockup p {
    letter-spacing: 5px;
  }

  .dispatch-panel {
    min-height: 420px;
  }

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

  .real-map,
  .real-map iframe {
    min-height: 300px;
    height: 300px;
  }

  .coverage-info {
    grid-template-columns: 1fr;
  }

  .service-detail h3 {
    font-size: 2rem;
  }
}

@media (max-width: 460px) {
  .top-nav {
    font-size: 0.78rem;
  }

  .intro-grid,
  .split-section,
  .quote-section,
  .services,
  .mvv-section {
    width: min(100% - 24px, 1180px);
  }

  .info-block,
  .benefits-panel,
  .why-panel,
  .quote-card,
  .service-detail,
  .mvv-section article {
    padding: 22px 18px;
  }

  .hero-actions {
    display: grid;
  }

}
