:root {
  --red: #df101a;
  --red-dark: #a90911;
  --ink: #111419;
  --muted: #60646c;
  --line: #e7e8eb;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --shadow: 0 24px 70px rgba(17, 20, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 2px solid rgba(17, 20, 25, 0.12);
  border-radius: 12px;
}

.brand-mark img {
  width: 120%;
  height: 120%;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: #30343a;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transition: width 180ms ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-call {
  min-width: max-content;
  padding: 11px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-weight: 900;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 79px);
  padding: clamp(42px, 8vw, 94px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: #08090b;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58) 44%, rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 42%);
}

.hero::after {
  background: radial-gradient(circle at 18% 42%, rgba(223, 16, 26, 0.28), transparent 28%);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: heroSlide 24s infinite;
}

.slide-1 {
  animation-delay: 0s;
}

.slide-2 {
  animation-delay: 6s;
}

.slide-3 {
  animation-delay: 12s;
}

.slide-4 {
  animation-delay: 18s;
}

@keyframes heroSlide {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }

  5%,
  23% {
    opacity: 1;
    transform: scale(1);
  }

  28% {
    opacity: 0;
    transform: scale(1.02);
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.slider-copy {
  padding-top: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1::first-line {
  color: inherit;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: #e7e8eb;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 950;
}

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 16px 34px rgba(223, 16, 26, 0.28);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.slider-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 670px;
}

.slider-stats span {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 5px solid var(--red);
  border-radius: 14px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.slider-stats strong {
  color: var(--red);
  font-size: 1.9rem;
  line-height: 1;
}

.slider-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(22px, 5vw, 58px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: min(440px, calc(100% - 36px));
  padding: 16px 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(18px);
}

.slider-panel span {
  display: block;
  color: #cfd2d8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slider-panel strong {
  display: block;
  margin-top: 3px;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dots span {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  animation: dotPulse 24s infinite;
}

.slider-dots span:nth-child(2) {
  animation-delay: 6s;
}

.slider-dots span:nth-child(3) {
  animation-delay: 12s;
}

.slider-dots span:nth-child(4) {
  animation-delay: 18s;
}

@keyframes dotPulse {
  0%,
  24%,
  100% {
    width: 9px;
    background: rgba(255, 255, 255, 0.48);
  }

  5%,
  23% {
    width: 28px;
    background: var(--red);
  }
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual::before {
  position: absolute;
  inset: 6% -14% -8% 8%;
  content: "";
  background: var(--ink);
  border-radius: 40px 0 0 40px;
  transform: skewX(-8deg);
}

.hero-visual img {
  position: relative;
  width: 100%;
  height: min(72vh, 690px);
  object-fit: cover;
  object-position: 64% 46%;
  border: 10px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.coverage-card {
  position: absolute;
  right: -10px;
  bottom: 34px;
  display: grid;
  width: 178px;
  padding: 18px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border: 8px solid #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  text-align: center;
  text-transform: uppercase;
}

.coverage-card span,
.coverage-card small {
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.coverage-card strong {
  font-size: 4.4rem;
  line-height: 0.85;
}

.intro-section,
.services,
.split-section,
.coverage,
.contact {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
  background: var(--ink);
  color: #fff;
}

.intro-section p:last-child {
  margin: 0;
  color: #e7e8eb;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin: 0 auto 34px;
  text-align: center;
}

.services {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.panel,
.map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(17, 20, 25, 0.08);
}

.service-card {
  min-height: 295px;
  padding: 24px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon-box {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 18px;
}

.icon-box svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

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

.panel {
  padding: clamp(26px, 4vw, 46px);
}

.panel.dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(223, 16, 26, 0.9), rgba(17, 20, 25, 0.96)),
    var(--ink);
  border-color: transparent;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #30343a;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  content: "";
  background: var(--red);
  border-radius: 999px;
}

.check-list li::after {
  position: absolute;
  left: 7px;
  top: 6px;
  width: 8px;
  height: 4px;
  content: "";
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.commitment-list span {
  min-height: 86px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  font-weight: 900;
}

.coverage {
  background: #fff;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
}

.rdc-shape {
  display: grid;
  min-height: 320px;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(223, 16, 26, 0.92), rgba(223, 16, 26, 0.92)),
    repeating-linear-gradient(35deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 16px);
  clip-path: polygon(17% 18%, 42% 6%, 76% 15%, 86% 36%, 72% 47%, 91% 71%, 65% 82%, 45% 94%, 24% 84%, 8% 62%, 18% 43%);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 950;
  line-height: 1;
}

.map-card p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(17, 20, 25, 0.96), rgba(17, 20, 25, 0.84)),
    linear-gradient(135deg, var(--ink), #2b0b0e);
}

.contact p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 28px;
  color: #e7e8eb;
}

.phone-cta {
  display: grid;
  gap: 4px;
  min-width: min(100%, 390px);
  padding: 22px 28px;
  color: #fff;
  background: var(--red);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.phone-cta span {
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-cta strong {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: #f2f3f6;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  font: inherit;
  outline: none;
}

.form-row textarea {
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(223, 16, 26, 0.22);
}

.site-footer {
  padding: clamp(44px, 7vw, 78px) clamp(18px, 5vw, 72px) 28px;
  color: #d5d7db;
  background:
    linear-gradient(135deg, #08090b 0%, #15181f 58%, #30070a 100%);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(190px, 0.7fr) minmax(250px, 0.9fr);
  gap: clamp(34px, 7vw, 90px);
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-logo {
  margin-bottom: 22px;
  color: #fff;
}

.footer-logo .brand-mark {
  background: #fff;
  border-color: transparent;
}

.footer-logo small {
  color: #d5d7db;
}

.footer-brand p,
.footer-col p {
  max-width: 670px;
  margin-bottom: 22px;
  color: #d8dce7;
  font-size: 1.02rem;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-weight: 950;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-col h2 {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a {
  color: #eef1f7;
  font-size: 1rem;
}

.footer-col a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
}

.footer-bottom p {
  margin: 0;
  color: #eef1f7;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.58);
}

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

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual img {
    height: 560px;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .header-call {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 36px;
  }

  .slider-stats,
  .intro-section,
  .split-section,
  .map-card,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 760px;
    align-items: flex-start;
  }

  .slider-panel {
    left: 18px;
    right: 18px;
    bottom: 20px;
    justify-content: space-between;
  }

  .hero-visual::before {
    inset: 12% -12% -4% 10%;
    border-radius: 26px;
  }

  .hero-visual img {
    height: 430px;
    border-width: 6px;
    border-radius: 22px;
  }

  .coverage-card {
    right: 8px;
    bottom: 18px;
    width: 142px;
    border-width: 5px;
  }

  .coverage-card strong {
    font-size: 3.2rem;
  }

  .service-grid,
  .commitment-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .brand {
    width: 100%;
  }

  .nav {
    gap: 16px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 3.6rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .slider-panel {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-visual img {
    height: 360px;
  }

  .rdc-shape {
    min-height: 230px;
  }
}
