:root {
  --ink: #17324d;
  --muted: #607889;
  --line: #cdeaf5;
  --snow: #f7fcff;
  --white: #ffffff;
  --navy: #17324d;
  --blue: #16a9e6;
  --aqua: #2ed0c3;
  --ice: #e9f9ff;
  --gold: #f2b84b;
  --sun: #ffd46b;
  --green: #20b486;
  --shadow: 0 18px 46px rgba(18, 132, 184, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 212, 107, .18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(46, 208, 195, .14), transparent 30%),
    linear-gradient(180deg, #ffffff, #f7fcff 46%, #ffffff);
  line-height: 1.5;
}
a { color: inherit; }
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 255, 255, .93);
  border-bottom: 1px solid rgba(205, 234, 245, .95);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand::before { display: none; }
.brand img {
  display: block;
  width: min(210px, 50vw);
  height: auto;
  max-height: 58px;
  object-fit: contain;
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; }
.brand small { color: var(--muted); font-size: .75rem; }
.nav { display: flex; gap: 20px; font-size: .92rem; font-weight: 750; }
.nav a { color: #28506a; text-decoration: none; }
.nav a:hover { color: var(--blue); }

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.72) 48%, rgba(255,255,255,.18)),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(238,250,255,.82));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 72px;
}
.eyebrow {
  margin: 0 0 12px;
  color: #0aa89b;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .95;
  letter-spacing: 0;
}
.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.button.primary {
  background: linear-gradient(135deg, #ffcf66, #ffb545);
  color: #17324d;
  box-shadow: 0 12px 24px rgba(242, 184, 75, .28);
}
.button.secondary {
  border-color: #8ddfee;
  background: rgba(255,255,255,.82);
  color: #087c9c;
  box-shadow: 0 8px 18px rgba(22, 169, 230, .1);
}
.button.dark {
  background: linear-gradient(135deg, #24c995, #51d6eb);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(32, 180, 134, .24);
}
.button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.section { padding: clamp(54px, 8vw, 94px) clamp(18px, 4vw, 56px); }
.section.muted { background: linear-gradient(180deg, #f7fcff, #ffffff); }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}
.section-heading p:not(.eyebrow) { margin: 15px 0 0; color: var(--muted); }

.trust-strip {
  background: linear-gradient(135deg, #fff8e8, #ecfbff 55%, #ffffff);
  color: var(--ink);
  padding-top: 30px;
  padding-bottom: 30px;
}
.trust-grid, .route-grid, .fleet-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.trust-grid article {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.trust-grid h2 { margin: 0 0 6px; font-size: 1.05rem; }
.trust-grid p { margin: 0; color: var(--muted); }

.route-card, .fleet-card, .faq-card, .quote-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 36px rgba(18, 132, 184, .09);
}
.route-card, .fleet-card, .faq-card { padding: 24px; border-radius: 8px; }
.route-card span, .fleet-card span {
  color: #0aa89b;
  font-weight: 900;
  font-size: .82rem;
  text-transform: uppercase;
}
.route-card h3, .fleet-card h3, .faq-card h3 { margin: 10px 0; font-size: 1.25rem; }
.route-card p, .fleet-card p, .faq-card p { margin: 0; color: var(--muted); }

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}
.quote-panel { padding: 24px; border-radius: 8px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.field { display: grid; gap: 7px; position: relative; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 850; font-size: .9rem; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(46, 208, 195, .18);
  border-color: #5ed7df;
}
.field small {
  color: var(--muted);
  font-size: .78rem;
}
textarea { min-height: 104px; resize: vertical; }
.suggestions {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  z-index: 5;
  display: none;
  max-height: 240px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.suggestions button {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid #edf2f6;
  background: var(--white);
  text-align: left;
  cursor: pointer;
}
.suggestions strong { display: block; }
.suggestions small { color: var(--muted); }
.price-box {
  margin: 0 0 18px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 212, 107, .32), rgba(255,255,255,.96) 48%, rgba(46, 208, 195, .18)),
    #ffffff;
  border: 1px solid #f3d28b;
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(242, 184, 75, .14);
}
.price-box strong { display: block; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1; }
.price-box span { color: var(--muted); }
.price-box.is-unavailable { background: #fff4f4; border-color: #f4b9b9; }
.note { color: var(--muted); font-size: .92rem; }
.lead {
  margin: 6px 0 8px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}
.vehicle-hint {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid #bceaf1;
  border-radius: 6px;
  background: linear-gradient(135deg, #f0fdff, #fffdf4);
  color: var(--navy);
  font-weight: 750;
}
.custom-quote-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #f3d28b;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 212, 107, .22), rgba(255,255,255,.92));
  color: var(--ink);
  font-weight: 800;
}
.custom-quote-note a {
  color: #087c9c;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.selected-vehicle-card {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 36px rgba(18, 132, 184, .08);
}
.selected-vehicle-card h2 {
  margin: 12px 0 8px;
  font-size: 1.35rem;
}
.selected-vehicle-card p:last-child {
  margin: 0;
  color: var(--muted);
}
.policy-box {
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid #bceaf1;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0fdff, #fffdf4);
}
.policy-box h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}
.policy-box p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .92rem;
}
.seo-routes {
  display: grid;
  gap: 18px;
}
.seo-routes article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 36px rgba(18, 132, 184, .08);
}
.seo-routes h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}
.seo-routes p {
  max-width: 820px;
  color: var(--muted);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.blog-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 36px rgba(18, 132, 184, .08);
}
.blog-card span {
  color: #0aa89b;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.blog-card h2 {
  margin: 12px 0;
  font-size: 1.35rem;
  line-height: 1.2;
}
.blog-card h2 a {
  text-decoration: none;
}
.blog-card p {
  margin: 0;
  color: var(--muted);
}
.narrow {
  max-width: 820px;
}
.article-page h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}
.article-page h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.article-page p {
  color: var(--muted);
}

.vehicle-visual {
  height: 150px;
  margin: 18px 0;
  border-radius: 8px;
  background: linear-gradient(#f8fbfd, #e8f1f8);
  position: relative;
  overflow: hidden;
}
.vehicle-visual::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 28px;
  height: 52px;
  border-radius: 18px 28px 8px 8px;
  background: #f7fbff;
  border: 2px solid #7bcdf0;
  box-shadow: inset 34px 0 0 #dff5ff, inset -34px 0 0 #dff5ff;
}
.vehicle-visual::before {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 56px;
  height: 28px;
  border-radius: 10px 10px 2px 2px;
  background: #bde8fa;
  z-index: 1;
}
.vehicle-visual .wheel {
  position: absolute;
  bottom: 16px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #7ba4bb;
  z-index: 2;
}
.vehicle-visual .wheel.left { left: 24%; }
.vehicle-visual .wheel.right { right: 24%; }

.footer { padding: 28px clamp(18px, 4vw, 56px); background: linear-gradient(135deg, #f3faff, #ffffff); color: var(--ink); border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); }
.footer strong { color: var(--ink); }

@media (max-width: 860px) {
  .site-header {
    position: fixed;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 104px;
    padding: 10px 14px 12px;
  }
  .brand img {
    width: min(176px, 62vw);
    max-height: 48px;
  }
  .nav {
    display: flex;
    order: 2;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 1px;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid #cdeaf5;
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    color: #28506a;
    font-size: .84rem;
    box-shadow: 0 6px 14px rgba(18,132,184,.08);
  }
  .nav a:first-child,
  .nav a:last-child {
    border-color: transparent;
    background: linear-gradient(135deg, #ffcf66, #ffb545);
    color: #17324d;
  }
  .hero { min-height: 760px; }
  .hero-content { margin-left: 18px; padding-top: 134px; }
  .hero-actions .button { width: 100%; }
  .trust-grid, .route-grid, .fleet-grid, .faq-grid, .blog-grid, .quote-layout, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .button { width: 100%; min-height: 52px; }
  .footer-inner { flex-direction: column; }
  .section[style*="padding-top"] { padding-top: 136px !important; }
}
