:root {
  --orange: #ff6a00;
  --orange-dark: #d94e00;
  --black: #0c0d0f;
  --ink: #17191d;
  --gray-900: #24272d;
  --gray-700: #4b515b;
  --gray-500: #858b95;
  --gray-200: #e7e9ed;
  --gray-100: #f5f6f8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(12, 13, 15, 0.18);
  --radius: 8px;
  --wrap: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--orange);
  color: var(--black);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 13, 15, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--orange);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 21px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--black);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.28);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-left: auto;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 14px 34px rgba(255, 106, 0, 0.22);
}

.btn-primary:hover {
  background: #ff7f1f;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: calc(100vh - 114px);
  color: var(--white);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg,
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1781276532606-12957bd9a930?auto=format&fit=crop&fm=jpg&q=75&w=2200");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: heroZoom 18s ease-in-out infinite alternate;
  z-index: -3;
}

.hero-overlay,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 13, 15, 0.92) 0%, rgba(12, 13, 15, 0.72) 48%, rgba(12, 13, 15, 0.36) 100%),
    linear-gradient(0deg, rgba(12, 13, 15, 0.95) 0%, rgba(12, 13, 15, 0.05) 50%);
  z-index: -2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: center;
  padding: 48px 0 72px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow span {
  width: 28px;
  height: 3px;
  background: currentColor;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5.6vw, 70px);
  line-height: 0.95;
  letter-spacing: 0;
  font-weight: 900;
  max-width: 900px;
}

.hero-lead {
  max-width: 680px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.82);
}

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

.live-board {
  background: rgba(12, 13, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.board-top,
.board-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.board-top span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.board-top strong {
  color: var(--orange);
}

.route-map {
  position: relative;
  height: 230px;
  margin: 18px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.pin,
.courier-dot {
  position: absolute;
  z-index: 2;
}

.pin {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 106, 0, 0.12);
}

.pin-a {
  left: 28px;
  top: 44px;
}

.pin-b {
  right: 62px;
  top: 82px;
}

.pin-c {
  left: 48%;
  bottom: 36px;
}

.route-line {
  position: absolute;
  inset: 42px 56px 54px 36px;
  border-top: 3px dashed rgba(255, 106, 0, 0.82);
  border-right: 3px dashed rgba(255, 106, 0, 0.82);
  transform: skewY(-12deg);
  animation: dashFlow 1.6s linear infinite;
}

.courier-dot {
  left: 40px;
  top: 44px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--black);
  border-radius: 50%;
  animation: courierMove 7s ease-in-out infinite;
}

.board-list {
  display: grid;
  gap: 8px;
}

.board-list p {
  margin: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}

.board-list span {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.75);
}

.board-list strong {
  color: var(--white);
}

.quote-dock {
  position: relative;
  z-index: 4;
  max-width: 760px;
  margin-top: 28px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 13px 12px;
  background: var(--white);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.quote-result {
  min-width: 0;
  min-height: 46px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--orange);
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 21px;
}

.quote-form .btn {
  width: 100%;
  grid-column: span 2;
}

.stats-band {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.stat-grid div {
  padding: 34px 22px;
  background: rgba(255, 255, 255, 0.04);
}

.stat-grid strong {
  display: block;
  color: var(--orange);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.stat-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.cta-content h2,
.page-hero h1,
.legal-hero h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 16px;
  font-weight: 900;
}

.section-head p {
  color: var(--gray-700);
  font-size: 18px;
}

.section-head.light p:not(.eyebrow),
.section-dark,
.city-section {
  color: rgba(255, 255, 255, 0.76);
}

.section-head.light h2,
.section-dark h2,
.city-section h2 {
  color: var(--white);
}

.service-grid,
.solution-grid,
.city-list,
.contact-cards {
  display: grid;
  gap: 18px;
}

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

.service-card,
.steps article,
.city-list article,
.contact-cards article,
.values-grid article {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.contact-cards article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 20px 45px rgba(12, 13, 15, 0.1);
}

.service-card svg,
.city-list svg,
.contact-cards svg,
.values-grid svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
  margin-bottom: 18px;
}

.service-card h3,
.steps h3,
.city-list h3,
.solution-grid h3,
.contact-cards h3,
.values-grid h3 {
  margin-bottom: 9px;
  line-height: 1.15;
}

.service-card p,
.steps p,
.city-list p,
.solution-grid p,
.contact-cards p,
.values-grid p,
.mission-panel p {
  color: var(--gray-700);
  margin-bottom: 0;
}

.section-dark,
.city-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.section-dark::before,
.city-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.12), transparent 42%),
    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, 54px 54px, 54px 54px;
  pointer-events: none;
}

.split-flow,
.city-grid,
.values-grid {
  position: relative;
  z-index: 1;
}

.split-flow {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
}

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

.steps article {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.steps span {
  display: inline-block;
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 18px;
}

.steps p,
.city-list p,
.values-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.steps h3,
.city-list h3,
.values-grid h3 {
  color: var(--white);
}

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

.solution-grid article {
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(12, 13, 15, 0.06);
}

.solution-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.solution-grid div {
  padding: 22px;
}

.city-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.city-list {
  grid-template-columns: repeat(3, 1fr);
}

.city-list article {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-section {
  max-width: 960px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0 18px;
  background: var(--white);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

summary::after {
  content: "+";
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  color: var(--gray-700);
  padding-bottom: 18px;
}

.cta-band {
  background: var(--gray-100);
  padding: 46px 0;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-content h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.74);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 34px;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 14px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-brand {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-bottom {
  margin-top: 42px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.page-hero,
.legal-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.about-hero .page-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&q=75&w=2200");
}

.contact-hero .page-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1556745757-8d76bdb6984b?auto=format&fit=crop&q=75&w=2200");
}

.page-hero-content {
  padding: 130px 0 90px;
}

.page-hero-content p:not(.eyebrow),
.legal-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline article {
  padding: 24px;
  border-left: 4px solid var(--orange);
  background: var(--gray-100);
  border-radius: var(--radius);
}

.timeline span {
  color: var(--orange);
  font-weight: 900;
  font-size: 24px;
}

.timeline p {
  color: var(--gray-700);
}

.values-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.values-grid article {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.mission-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 36px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.mission-panel h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-cards {
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(12, 13, 15, 0.08);
}

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

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--orange-dark);
  font-weight: 800;
}

.legal-hero {
  min-height: 420px;
  background: var(--black);
}

.legal-hero .wrap {
  padding: 120px 0 80px;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 106, 0, 0.22), transparent 45%),
    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, 48px 48px, 48px 48px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.legal-index {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.legal-index a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--gray-700);
  font-weight: 800;
}

.legal-index a:hover {
  background: var(--gray-100);
  color: var(--orange-dark);
}

.legal-content {
  max-width: 860px;
}

.legal-content.single {
  max-width: 920px;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 26px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--gray-700);
  font-size: 17px;
}

.legal-content a {
  color: var(--orange-dark);
  font-weight: 800;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quote-dock[data-animate] {
  transform: translateY(24px);
}

.quote-dock[data-animate].is-visible {
  transform: translateY(0);
}

@keyframes heroZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes courierMove {
  0% {
    transform: translate(0, 0);
  }
  35% {
    transform: translate(210px, 44px);
  }
  68% {
    transform: translate(128px, 145px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes dashFlow {
  to {
    background-position: 24px 0;
  }
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split-flow,
  .city-grid,
  .contact-layout,
  .mission-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-bottom: 70px;
  }

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

  .quote-form .btn {
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  :root {
    --wrap: min(100% - 28px, 1160px);
  }

  .promo {
    font-size: 12px;
    text-align: center;
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 104px 14px auto;
    display: grid;
    gap: 0;
    padding: 14px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 60px 0 72px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .live-board {
    display: none;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-result {
    width: 100%;
  }

  .quote-form .btn {
    grid-column: 1;
  }

  .stat-grid,
  .service-grid,
  .steps,
  .solution-grid,
  .city-list,
  .timeline,
  .values-grid,
  .contact-cards,
  .footer-grid,
  .form-row,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

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

  .page-hero,
  .legal-hero {
    min-height: 420px;
  }

  .page-hero-content,
  .legal-hero .wrap {
    padding: 96px 0 64px;
  }

  .legal-index {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
