:root {
  --navy: #0a1128;
  --navy-light: #1b263b;
  --slate: #415a77;
  --slate-soft: #dfe7f1;
  --amber: #f77f00;
  --amber-bright: #ff9f1c;
  --surface: #f8fafc;
  --white: #ffffff;
  --logo-cream: #fbf6ef;
  --green: #17b26a;
  --text-muted: #596a81;
  --shadow-soft: 0 24px 70px rgba(10, 17, 40, 0.12);
  --shadow-amber: 0 18px 32px rgba(247, 127, 0, 0.24);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
.button {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.02;
  font-weight: 800;
}

h1 span {
  display: block;
  color: var(--navy);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  font-weight: 800;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 800;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  max-width: 1.25em;
  max-height: 1.25em;
  flex: 0 0 auto;
  color: currentColor;
  fill: none;
  overflow: hidden;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 14px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(65, 90, 119, 0.14);
  background: rgba(251, 246, 239, 0.9);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}

section {
  scroll-margin-top: 118px;
}

.header-inner {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  display: block;
  object-fit: contain;
}

.brand-logo-shell {
  display: grid;
  width: 142px;
  height: 90px;
  place-items: center;
  overflow: hidden;
  background: var(--logo-cream);
  border: 1px solid rgba(183, 138, 73, 0.16);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(10, 17, 40, 0.08);
}

.brand-logo-header {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-powered {
  color: rgba(65, 90, 119, 0.66);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--slate);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.login-link:hover,
.login-link:focus-visible {
  color: var(--amber);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.login-link {
  color: var(--slate);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(65, 90, 119, 0.18);
  border-radius: 14px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button .icon {
  font-size: 1.1rem;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-bright) 100%);
  box-shadow: var(--shadow-amber);
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -120%;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: left 500ms ease;
}

.button-primary:hover::after,
.button-primary:focus-visible::after {
  left: 120%;
}

.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(65, 90, 119, 0.16);
  box-shadow: 0 18px 36px rgba(10, 17, 40, 0.08);
}

.button-compact {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 118px 0 84px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(247, 127, 0, 0.07), transparent 32%),
    linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}

.grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(65, 90, 119, 0.2) 0.8px, transparent 0.8px);
  background-size: 24px 24px;
  opacity: 0.32;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow-amber {
  top: -140px;
  right: -140px;
  width: 560px;
  height: 560px;
  background: rgba(247, 127, 0, 0.12);
}

.hero-glow-navy {
  bottom: -180px;
  left: -140px;
  width: 520px;
  height: 520px;
  background: rgba(10, 17, 40, 0.09);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: fadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.eyebrow-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  color: var(--slate);
  background: var(--white);
  border: 1px solid rgba(65, 90, 119, 0.14);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(10, 17, 40, 0.06);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow-pill span {
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(247, 127, 0, 0.12);
}

.hero-copy > p {
  max-width: 700px;
  color: var(--slate);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.phone-strip {
  display: grid;
  width: min(100%, 610px);
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(65, 90, 119, 0.15);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(10, 17, 40, 0.08);
}

.phone-strip > .icon {
  display: block;
  box-sizing: border-box;
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: 44px;
  min-height: 44px;
  max-height: 44px;
  padding: 11px;
  color: var(--white);
  background: var(--navy);
  border-radius: 16px;
}

.phone-strip div > span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-strip a {
  color: var(--navy);
  font-weight: 800;
}

.phone-strip > a {
  padding: 10px 13px;
  color: var(--white);
  background: var(--navy-light);
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 28px 0 0;
  padding-top: 34px;
  border-top: 1px solid rgba(65, 90, 119, 0.16);
}

.hero-stats div {
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
}

.hero-stats dt {
  color: rgba(65, 90, 119, 0.64);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  animation: fadeIn 1000ms ease-out forwards;
}

.tilt-frame {
  position: absolute;
  inset: 34px 8px;
  z-index: 0;
  border: 2px solid rgba(65, 90, 119, 0.13);
  border-radius: 58px;
}

.tilt-frame-one {
  transform: rotate(3deg);
}

.tilt-frame-two {
  transform: rotate(-2deg);
  opacity: 0.52;
}

.dispatch-card,
.complete-card,
.soft-card,
.workflow-list article,
.partner-card,
.lead-form-shell,
.phone-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.dispatch-card {
  position: relative;
  z-index: 2;
  margin: 56px 0 0 auto;
  max-width: 470px;
  padding: 32px;
  border-radius: 34px;
}

.dispatch-card header,
.assigned-pro {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.dispatch-card h2 {
  margin-top: 4px;
  font-size: 1.08rem;
}

.mini-label {
  display: block;
  color: rgba(65, 90, 119, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  color: #067647;
  background: rgba(23, 178, 106, 0.1);
  border: 1px solid rgba(23, 178, 106, 0.24);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-badge i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 999px;
}

.order-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.order-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--amber);
  background: rgba(247, 127, 0, 0.1);
  border-radius: 20px;
  font-size: 2rem;
}

.order-row strong {
  display: block;
  margin-top: 4px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.22rem;
}

.dispatch-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
  padding: 24px 0;
  border-block: 1px solid rgba(65, 90, 119, 0.12);
}

.dispatch-meta strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 7px;
  font-size: 0.87rem;
}

.dispatch-meta .icon {
  color: var(--amber);
  font-size: 1rem;
}

.distance-pill {
  padding: 5px 8px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  text-transform: uppercase;
}

.assigned-pro {
  padding: 16px;
  color: var(--white);
  background: var(--navy-light);
  border-radius: 22px;
}

.assigned-pro .mini-label {
  color: rgba(255, 255, 255, 0.45);
}

.assigned-pro strong {
  display: block;
  margin-top: 2px;
}

.assigned-pro em {
  color: var(--amber);
  font-style: normal;
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.complete-card {
  position: absolute;
  left: 0;
  bottom: 34px;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 22px;
}

.complete-card > .icon {
  display: block;
  box-sizing: border-box;
  width: 34px;
  min-width: 34px;
  max-width: 34px;
  height: 34px;
  min-height: 34px;
  max-height: 34px;
  padding: 8px;
  color: var(--white);
  background: var(--green);
  border-radius: 12px;
}

.complete-card div > span {
  display: block;
  color: rgba(65, 90, 119, 0.6);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.complete-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.8rem;
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.floating-slow {
  animation: float 6s ease-in-out 1s infinite;
}

.section {
  padding: 96px 0;
}

.section-white {
  background: var(--white);
}

.section-wash {
  background: linear-gradient(180deg, var(--surface) 0%, #eef4f9 100%);
}

.section-navy {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 12%, rgba(247, 127, 0, 0.18), transparent 28%),
    var(--navy);
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.section-heading.align-left {
  justify-items: start;
  text-align: left;
}

.section-kicker {
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-kicker.light {
  color: var(--amber);
}

.section-heading p,
.contact-copy > p {
  max-width: 690px;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.section-navy .section-heading p,
.section-navy .section-heading a {
  color: rgba(255, 255, 255, 0.78);
}

.section-navy .section-heading a {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.soft-card {
  padding: 30px;
  border-radius: 30px;
}

.soft-card > .icon {
  display: block;
  box-sizing: border-box;
  width: 54px;
  min-width: 54px;
  max-width: 54px;
  height: 54px;
  min-height: 54px;
  max-height: 54px;
  padding: 14px;
  margin-bottom: 26px;
  color: var(--amber);
  background: rgba(247, 127, 0, 0.1);
  border-radius: 18px;
  font-size: 1.8rem;
}

.soft-card p {
  margin-top: 12px;
  color: var(--text-muted);
}

.split-layout,
.partner-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.workflow-list {
  display: grid;
  gap: 16px;
}

.workflow-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border-radius: 26px;
}

.workflow-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--amber), var(--amber-bright));
  border-radius: 14px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
}

.workflow-list p {
  margin-top: 6px;
  color: var(--text-muted);
}

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

.service-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 22px;
  background: #f8fbff;
  border: 1px solid rgba(65, 90, 119, 0.12);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(10, 17, 40, 0.06);
}

.service-grid .icon {
  display: block;
  width: 34px;
  min-width: 34px;
  max-width: 34px;
  height: 34px;
  min-height: 34px;
  max-height: 34px;
  flex: 0 0 34px;
  color: var(--amber);
}

.service-grid strong {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.partner-stack {
  display: grid;
  gap: 18px;
}

.partner-card {
  display: grid;
  gap: 6px;
  padding: 28px;
  border-radius: 28px;
}

.partner-card span {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-card strong {
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.55rem;
}

.partner-card p {
  max-width: 540px;
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-section {
  padding-bottom: 112px;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.phone-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  margin-top: 20px;
  padding: 24px;
  border-radius: 30px;
}

.phone-card > .icon {
  display: block;
  box-sizing: border-box;
  width: 54px;
  min-width: 54px;
  max-width: 54px;
  height: 54px;
  min-height: 54px;
  max-height: 54px;
  padding: 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 18px;
}

.phone-card div > span {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-card a {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
}

.phone-card p {
  margin-top: 8px;
  color: var(--text-muted);
}

.contact-commercial {
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  color: var(--text-muted);
  background: rgba(10, 17, 40, 0.04);
  border-left: 3px solid var(--navy);
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-commercial strong {
  color: var(--navy);
}

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

.lead-form-shell {
  min-height: 858px;
  padding: 8px;
  overflow: hidden;
  border-radius: 34px;
}

.lead-form-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 28px;
}

.site-footer {
  color: var(--white);
  background: var(--navy);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: 64px;
  padding: 88px 0 72px;
}

.footer-logo-frame {
  display: block;
  width: 176px;
  padding: 10px;
  background: rgba(255, 253, 250, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
}

.brand-logo-footer {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.footer-main p {
  max-width: 400px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.54);
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.footer-main nav div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-main nav span {
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible {
  color: var(--amber);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 1rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--amber);
}

.legal-main,
.not-found-main {
  min-height: 72vh;
  padding: 156px 0 96px;
  background: radial-gradient(circle at 85% 12%, rgba(247, 127, 0, 0.08), transparent 30%),
    linear-gradient(180deg, var(--white) 0%, var(--surface) 100%);
}

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

.legal-content h1,
.not-found-panel h1 {
  margin-top: 16px;
}

.legal-updated {
  margin-top: 12px;
  color: var(--text-muted);
  font-weight: 800;
}

.legal-content section {
  margin-top: 42px;
}

.legal-content h2 {
  font-size: 1.35rem;
}

.legal-content p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.legal-content a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.not-found-panel {
  display: grid;
  max-width: 820px;
  gap: 22px;
}

.not-found-panel p {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1080px) {
  .site-nav,
  .login-link {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: absolute;
    inset: 80px 24px auto;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(65, 90, 119, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(65, 90, 119, 0.1);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero-grid,
  .split-layout,
  .partner-grid,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .dispatch-card {
    margin-inline: auto;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    height: 84px;
  }

  .site-nav {
    inset: 84px 16px auto;
  }

  .header-actions .button {
    display: none;
  }

  .brand-powered {
    max-width: 150px;
  }

  .brand-logo-shell {
    width: 112px;
    height: 71px;
    border-radius: 18px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 58px;
  }

  html {
    scroll-padding-top: 104px;
  }

  section {
    scroll-margin-top: 104px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-actions,
  .phone-actions,
  .button {
    width: 100%;
  }

  .phone-strip {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .phone-strip > a {
    grid-column: 1 / -1;
    text-align: center;
  }

  .hero-stats,
  .feature-grid,
  .service-grid,
  .footer-main nav {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 450px;
  }

  .dispatch-card {
    padding: 24px;
  }

  .dispatch-meta {
    grid-template-columns: 1fr;
  }

  .complete-card {
    left: 12px;
    right: 12px;
    bottom: 4px;
  }

  .section {
    padding: 70px 0;
  }

  .workflow-list article,
  .phone-card {
    grid-template-columns: 1fr;
  }

  .lead-form-shell {
    min-height: 858px;
  }

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

@media (max-width: 420px) {
  .brand-logo-shell {
    width: 96px;
    height: 61px;
    border-radius: 16px;
  }

  .brand-powered {
    display: none;
  }

  .phone-card a {
    font-size: 2rem;
  }
}
