:root {
  --ink: #06111d;
  --navy: #0b1d2d;
  --navy-2: #102b41;
  --paper: #f4f7fb;
  --white: #ffffff;
  --muted: #647386;
  --line: #dde5ee;
  --blue: #0aa7ee;
  --orange: #ff6a14;
  --slate: #607080;
  --shadow: 0 24px 70px rgba(9, 29, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

[id] {
  scroll-margin-top: 110px;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 11px 15px;
  color: #fff;
  background: var(--ink);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 86px;
  padding: 14px clamp(18px, 4vw, 60px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand picture {
  display: flex;
  flex: 0 0 auto;
}

.brand img {
  width: 58px;
  height: 52px;
  object-fit: contain;
  border-radius: 6px;
}

.brand strong {
  display: block;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: #39495a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.nav a {
  padding: 12px 0;
}

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

.call-chip {
  display: grid;
  min-width: 178px;
  padding: 12px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(6, 17, 29, 0.18);
}

.call-chip span {
  color: #aebccb;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.call-chip strong {
  font-size: 19px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 86px) 24px 56px;
}

.kicker,
.section-title p,
.contact-strip p {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 0.98;
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: #516173;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

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

.hero-contact-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-contact-note a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  white-space: nowrap;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff7d22, #f05a0b);
  box-shadow: 0 18px 38px rgba(255, 106, 20, 0.28);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 630px;
  margin-top: 36px;
}

.proof-row div {
  min-height: 88px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-row strong {
  display: block;
  font-size: 26px;
}

.proof-row span {
  color: var(--muted);
  font-size: 14px;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(10, 167, 238, 0.2), transparent 34%),
    linear-gradient(160deg, var(--navy), #071421);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -90px -120px auto;
  width: 330px;
  height: 330px;
  background: rgba(255, 106, 20, 0.16);
  border-radius: 999px;
}

.logo-plate {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 18px;
  background: #fff;
  border-radius: 8px;
}

.logo-plate picture {
  display: grid;
  place-items: center;
  width: 100%;
}

.logo-plate img {
  width: min(100%, 520px);
  max-height: 390px;
  object-fit: contain;
}

.dispatch-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.live-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 999px;
  background: #24d39b;
  box-shadow: 0 0 0 7px rgba(36, 211, 155, 0.12);
}

.dispatch-card strong {
  font-size: 20px;
}

.dispatch-card p {
  margin: 6px 0 0;
  color: #b9c9d7;
}

.dispatch-card a {
  min-width: max-content;
  padding: 12px 16px;
  color: #fff;
  background: var(--orange);
  border-radius: 8px;
  font-weight: 900;
}

.service-band,
.detail-section,
.locality-section,
.partner-section,
.split-section,
.faq-section,
.special-strip,
.contact-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 62px 24px;
}

.locality-section {
  padding-top: 34px;
}

.locality-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 14px;
}

.locality-copy {
  padding: 30px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.locality-copy p {
  margin: 0 0 24px;
  color: #c2ced9;
  font-size: 17px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 17px;
  color: #fff;
  background: var(--orange);
  border-radius: 8px;
  font-weight: 900;
}

.locality-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.locality-list li {
  min-height: 132px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.locality-list strong,
.locality-list span {
  display: block;
}

.locality-list strong {
  margin-bottom: 9px;
  font-size: 18px;
}

.locality-list span {
  color: var(--muted);
  line-height: 1.5;
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

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

.service-grid article {
  min-height: 210px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(9, 29, 45, 0.06);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  font-size: 25px;
  font-weight: 900;
  background: #f2f6fa;
}

.blue {
  color: var(--blue);
}

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

.slate {
  color: var(--slate);
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.service-grid p,
.detail-grid p,
.detail-grid li,
.partner-copy p,
.partner-grid p,
.faq-grid p,
.special-strip strong,
.split-section p,
.steps span,
.footer span,
.footer a {
  color: var(--muted);
  line-height: 1.55;
}

.detail-section {
  padding-top: 34px;
}

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

.detail-grid article {
  min-height: 330px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(9, 29, 45, 0.06);
}

.detail-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.detail-head .icon {
  flex: 0 0 auto;
  margin: 0;
}

.detail-grid p {
  margin: 0 0 18px;
}

.detail-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-grid li {
  position: relative;
  padding-left: 20px;
}

.detail-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 999px;
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 14px;
  align-items: stretch;
}

.partner-copy {
  padding: 36px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 167, 238, 0.24), transparent 42%),
    var(--ink);
  border-radius: 8px;
}

.partner-copy h2 {
  color: #fff;
}

.partner-copy p:not(.kicker) {
  margin: 22px 0 0;
  color: #b9c9d7;
}

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

.partner-grid article {
  min-height: 260px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 50px;
  align-items: start;
}

.split-section > div:first-child {
  padding: 36px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.split-section > div:first-child p:not(.kicker) {
  margin: 22px 0 0;
  color: #b9c9d7;
}

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

.steps div {
  min-height: 160px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps b {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 14px;
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.special-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 18px;
}

.special-strip div {
  min-height: 160px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.special-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.special-strip strong {
  display: block;
  font-size: 20px;
}

.faq-section {
  padding-top: 34px;
}

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

.faq-grid article {
  min-height: 210px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(9, 29, 45, 0.06);
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 167, 238, 0.28), rgba(255, 106, 20, 0.18)),
    var(--navy);
  border-radius: 8px;
}

.contact-strip h2 {
  color: #fff;
}

.footer {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 170px minmax(270px, 1.15fr) 210px;
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 24px 58px;
  border-top: 1px solid var(--line);
}

.footer div {
  display: grid;
  gap: 9px;
}

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

.company-details span {
  line-height: 1.4;
}

.cookie-settings {
  justify-self: start;
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  font: inherit;
  line-height: 1.55;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(6, 17, 29, 0.34);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.cookie-banner p {
  margin: 0;
  color: #c6d1dc;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-button {
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.cookie-button-primary {
  color: #fff;
  background: var(--orange);
}

.cookie-button-secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.mobile-call-bar {
  display: none;
}

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

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .detail-grid,
  .locality-layout,
  .partner-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 700px) {
  body {
    padding-bottom: 76px;
  }

  [id] {
    scroll-margin-top: 18px;
  }

  .topbar {
    position: relative;
    padding: 14px 16px;
  }

  .brand {
    width: 100%;
  }

  .brand img {
    width: 54px;
    height: 48px;
  }

  .call-chip {
    width: 100%;
  }

  .hero {
    padding: 36px 16px 34px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-actions,
  .btn,
  .dispatch-card,
  .contact-strip {
    width: 100%;
  }

  .proof-row,
  .service-grid,
  .detail-grid,
  .partner-grid,
  .steps,
  .faq-grid,
  .special-strip,
  .contact-strip,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 14px;
  }

  .logo-plate {
    min-height: 320px;
  }

  .dispatch-card {
    align-items: stretch;
    flex-direction: column;
  }

  .service-band,
  .detail-section,
  .locality-section,
  .partner-section,
  .split-section,
  .faq-section,
  .special-strip,
  .contact-strip {
    padding: 44px 16px;
  }

  .split-section > div:first-child,
  .partner-copy,
  .locality-copy {
    padding: 26px;
  }

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

  .cookie-banner {
    right: 12px;
    bottom: 82px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mobile-call-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 70px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    color: #fff;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -10px 28px rgba(6, 17, 29, 0.24);
  }

  .mobile-call-bar span,
  .mobile-call-bar small,
  .mobile-call-bar strong {
    display: block;
  }

  .mobile-call-bar small {
    color: #b8c5d2;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .mobile-call-bar strong {
    margin-top: 2px;
    font-size: 17px;
  }

  .mobile-call-bar a {
    min-height: 46px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--orange);
    border-radius: 8px;
    font-weight: 900;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
