:root {
  --bg: #f6f0e7;
  --bg-soft: #fff9f2;
  --surface: #ffffff;
  --surface-strong: #f4e2cf;
  --text: #1c2430;
  --muted: #55606d;
  --accent: #d46d2c;
  --accent-strong: #b95316;
  --accent-soft: rgba(212, 109, 44, 0.14);
  --secondary: #0f3556;
  --secondary-soft: rgba(15, 53, 86, 0.08);
  --line: rgba(28, 36, 48, 0.12);
  --shadow: 0 24px 55px rgba(22, 25, 33, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --container: min(1180px, calc(100vw - 32px));
  --font-body: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Trebuchet MS", "Aptos Display", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(212, 109, 44, 0.12), transparent 32%),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 100%);
  line-height: 1.6;
}

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

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

p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem;
  line-height: 1.08;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

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

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 0.85rem 1rem;
  background: var(--secondary);
  color: #fff;
  border-radius: 999px;
  z-index: 1000;
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 0;
  font-size: 0.98rem;
  color: var(--muted);
  text-align: center;
}

.topbar__text {
  margin: 0;
}

.topbar__links {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-weight: 700;
}

.topbar__links a {
  color: var(--secondary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 242, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(18, 24, 33, 0.08);
}

.navbar {
  display: grid;
  gap: 0.85rem;
  padding: 0.75rem 0 1rem;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.35rem;
  box-shadow: 0 12px 30px rgba(20, 25, 32, 0.1);
}

.brand span {
  display: grid;
  gap: 0.15rem;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.brand small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 0.15rem;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.site-nav__link {
  display: inline-flex;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-active {
  background: var(--surface);
  color: var(--secondary);
}

.site-nav__cta {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav__cta--header {
  flex-wrap: nowrap;
  align-items: center;
}

.menu-toggle {
  display: none;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.96rem;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 16px 32px rgba(180, 83, 22, 0.24);
  cursor: pointer;
}

.site-nav__cta .button {
  min-height: 42px;
  padding: 0.68rem 1.05rem;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(180, 83, 22, 0.18);
  white-space: nowrap;
  width: auto;
  flex: 0 0 auto;
}

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

.button--ghost {
  background: rgba(255, 255, 255, 0.65);
  color: var(--secondary);
  border-color: rgba(15, 53, 86, 0.18);
  box-shadow: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid rgba(212, 109, 44, 0.18);
  color: var(--accent-strong);
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.section {
  padding: 5.6rem 0;
}

.section--tight {
  padding: 4rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.15rem;
}

.breadcrumbs {
  padding-top: 1rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.65rem;
  color: rgba(85, 96, 109, 0.5);
}

.breadcrumbs a {
  color: var(--secondary);
}

.hero {
  padding: 4rem 0 5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero__content p {
  max-width: 58ch;
  font-size: 1.16rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero__proof,
.inline-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__proof span,
.inline-proof span {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 53, 86, 0.1);
  font-weight: 700;
  color: var(--secondary);
}

.hero-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--secondary) 0%, #163f65 55%, #204f74 100%);
  border-radius: 32px;
  color: #fff;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero-card::before {
  width: 220px;
  height: 220px;
  right: -90px;
  top: -90px;
}

.hero-card::after {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -70px;
}

.hero-card__media,
.media-frame {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 18px 32px rgba(7, 18, 30, 0.35);
}

.hero-card__media img,
.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-card__grid {
  display: grid;
  gap: 0.85rem;
}

.hero-card__grid div {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-card__grid strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.metrics,
.cards,
.route-grid,
.segment-grid,
.service-grid,
.feature-grid,
.contact-grid,
.trust-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.route-grid,
.segment-grid,
.contact-grid,
.trust-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.route-card,
.contact-card,
.feature-card,
.trust-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 16px 35px rgba(18, 24, 33, 0.06);
}

.card--accent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 226, 207, 0.95));
}

.metric {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.35rem;
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--secondary);
  margin-bottom: 0.35rem;
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 0.9rem;
  font-size: 1.4rem;
  background: var(--accent-soft);
}

.card p,
.route-card p,
.contact-card p,
.feature-card p,
.trust-card p,
.metric p {
  margin-bottom: 0;
  color: var(--muted);
}

.card h2,
.card h3,
.route-card h2,
.route-card h3,
.contact-card h2,
.contact-card h3,
.feature-card h2,
.feature-card h3,
.trust-card h2,
.trust-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.14;
}

.panel h2,
.quote-band h2,
.page-hero__panel h2,
.page-hero__aside h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.list-check,
.list-plain {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.list-check li,
.list-plain li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.6rem;
}

.list-check li::before,
.list-plain li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 1.5rem;
  align-items: stretch;
}

.panel {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 32px;
  border: 1px solid var(--line);
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(18, 24, 33, 0.08);
}

.panel--dark {
  background: linear-gradient(180deg, #13304d 0%, #10263c 100%);
  color: #fff;
}

.panel--dark p,
.panel--dark li {
  color: rgba(255, 255, 255, 0.84);
}

.process {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.process li {
  list-style: none;
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 4rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}

.quote-band {
  background: linear-gradient(135deg, rgba(15, 53, 86, 0.96), rgba(18, 42, 64, 0.96));
  border-radius: 34px;
  padding: 2.1rem;
  color: #fff;
  box-shadow: var(--shadow);
}

.quote-band p,
.quote-band li {
  color: rgba(255, 255, 255, 0.84);
}

.quote-band a {
  color: #fff;
}

.quote-form {
  display: grid;
  gap: 1.25rem;
}

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

.field-span-2 {
  grid-column: span 2;
}

.quote-form label {
  display: grid;
  gap: 0.5rem;
}

.quote-form span {
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
}

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

.quote-form select {
  color: inherit;
}

.quote-form option {
  color: var(--text);
}

.captcha-box {
  display: grid;
  align-content: center;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.captcha-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.captcha-box__question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.quote-form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.quote-form__actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.quote-form__status {
  margin-bottom: 0;
}

.status-message {
  padding: 1rem 1.15rem;
  border-radius: 18px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.status-message--error {
  background: rgba(180, 20, 20, 0.09);
  border: 1px solid rgba(180, 20, 20, 0.18);
  color: #7a2727;
}

.page-hero {
  padding: 3rem 0 4rem;
}

.page-hero__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  align-items: stretch;
}

.page-hero__panel {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  padding: 2rem;
  border-radius: 32px;
  box-shadow: 0 18px 38px rgba(18, 24, 33, 0.08);
}

.page-hero__panel p {
  color: var(--muted);
  font-size: 1.1rem;
}

.page-hero__aside {
  background: linear-gradient(135deg, rgba(15, 53, 86, 0.97), rgba(16, 38, 60, 0.96));
  color: #fff;
  border-radius: 32px;
  padding: 1.7rem;
}

.page-hero__aside p,
.page-hero__aside li {
  color: rgba(255, 255, 255, 0.82);
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.comparison .panel {
  height: 100%;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(18, 24, 33, 0.12);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 1.15rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item div {
  padding-bottom: 1rem;
  color: var(--muted);
}

.site-footer {
  padding: 4rem 0 7rem;
  background: #14202d;
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-meta {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
}

.footer-meta p {
  margin: 0;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: min(540px, calc(100vw - 20px));
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(20, 32, 45, 0.94);
  border-radius: 20px;
  box-shadow: 0 24px 40px rgba(10, 12, 18, 0.28);
  z-index: 60;
}

@supports (content-visibility: auto) {
  main > .section,
  .section--faq,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }

  .hero,
  .page-hero,
  .breadcrumbs {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }
}

.sticky-cta a {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}

.sticky-cta a:nth-child(2) {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

@media (max-width: 1080px) {
  .cards,
  .service-grid,
  .feature-grid,
  .metrics,
  .route-grid,
  .segment-grid,
  .contact-grid,
  .trust-grid,
  .comparison,
  .page-hero__wrap,
  .split-panel,
  .hero__grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    gap: 0.75rem;
  }

  .menu-toggle {
    display: inline-grid;
    gap: 4px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.8rem;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary);
    border-radius: 99px;
  }

  .header-main {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .site-nav__cta--header {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    margin: 0 auto;
    width: var(--container);
    padding: 1rem;
    background: rgba(251, 247, 242, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 18px 34px rgba(18, 24, 33, 0.12);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav ul,
  .site-nav__cta {
    flex-direction: column;
  }

  .site-nav__link {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .topbar {
    padding: 0.45rem 0;
    font-size: 0.92rem;
  }

  .navbar {
    padding: 0.45rem 0 0.65rem;
    gap: 0.55rem;
  }

  .header-main {
    gap: 0.75rem;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.9rem;
  }

  .menu-toggle {
    padding: 0.68rem;
  }

  .site-nav__cta--header {
    gap: 0.65rem;
  }

  .site-nav__cta--header .button {
    min-width: 210px;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .hero,
  .section,
  .page-hero {
    padding: 3rem 0;
  }

  .header-main {
    grid-template-columns: 1fr auto;
    column-gap: 0.75rem;
    align-items: center;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .site-nav__cta--header {
    display: none;
  }

  .hero-card,
  .panel,
  .page-hero__panel,
  .page-hero__aside,
  .quote-band,
  .card,
  .contact-card,
  .route-card,
  .trust-card,
  .feature-card {
    padding: 1.35rem;
    border-radius: 24px;
  }

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

  .field-span-2 {
    grid-column: auto;
  }

  .quote-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions,
  .cta-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav__cta--header .button {
    width: auto;
    flex: 0 1 auto;
    min-width: 0;
  }

  .button,
  button.button {
    width: 100%;
  }

  .sticky-cta {
    display: grid;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }

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