:root {
  --sky: #eaf6ff;
  --sky-strong: #8ccdf4;
  --blue: #0b63b6;
  --blue-deep: #083d77;
  --gold: #c49a3b;
  --white: #ffffff;
  --ink: #10263d;
  --muted: #5b7187;
  --line: rgba(16, 38, 61, 0.14);
  --shadow: 0 18px 60px rgba(8, 61, 119, 0.16);
  --radius: 8px;
  font-family: Arial, Helvetica, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

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

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

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

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

button,
input,
select,
textarea {
  border: 0;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-deep);
  padding: 10px 14px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  color: var(--blue-deep);
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 22px);
  color: var(--blue-deep);
  font-weight: 700;
}

.nav-links a {
  border-radius: var(--radius);
  padding: 10px 12px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--sky);
}

.nav-cta {
  background: var(--blue);
  color: var(--white);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--blue-deep);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--blue-deep);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 61, 119, 0.8) 0%, rgba(8, 61, 119, 0.58) 42%, rgba(8, 61, 119, 0.16) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(8, 61, 119, 0.3));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 128px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.hero-copy {
  max-width: 740px;
  color: var(--white);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-lead {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(196, 154, 59, 0.5);
  outline-offset: 2px;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(16, 38, 61, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d4aa4c;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.button-full {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
}

.hero-facts div {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-top: 2px;
  color: var(--white);
  font-weight: 900;
}

.form-panel,
.compact-form {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow);
}

.form-kicker {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-panel h2,
.final-cta h2 {
  color: var(--blue-deep);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--blue-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

.field textarea {
  min-height: 88px;
  resize: vertical;
}

p.cost-note,
.cost-note {
  border: 1px solid #b8d9ef;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  background: #f6fbff;
  color: #31546f;
  padding: 8px 10px;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
  box-shadow: none;
}

.final-cta .cost-note {
  color: #31546f;
  margin-top: 0;
  padding: 8px 10px;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
  border-left-width: 4px;
}


.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
  flex: 0 0 auto;
}

.form-status {
  min-height: 1.4em;
  color: var(--blue-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status.is-error {
  color: #9b1c1c;
}

.form-status.is-success {
  color: #166534;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-item {
  display: grid;
  gap: 3px;
  background: var(--white);
  padding: 22px clamp(18px, 4vw, 56px);
}

.strip-item strong {
  color: var(--blue-deep);
  font-size: 1.05rem;
}

.strip-item span {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 118px) 0;
}

.section-light {
  background: linear-gradient(180deg, var(--sky), #ffffff);
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.two-columns,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.section h2 {
  color: var(--blue-deep);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  text-wrap: balance;
}

.section-lead,
.section-heading p,
.final-cta p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.offer-card,
.info-card,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(8, 61, 119, 0.08);
}

.offer-card {
  padding: clamp(22px, 4vw, 34px);
}

.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue-deep);
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-top strong {
  color: var(--blue);
  font-size: 1.2rem;
}

.offer-card h3 {
  color: var(--blue-deep);
  font-size: 1.7rem;
  line-height: 1.15;
}

.offer-card p {
  margin-top: 14px;
  color: var(--muted);
}

.offer-list {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.offer-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  background: var(--white);
  padding: 14px;
}

.offer-list dt {
  color: var(--muted);
}

.offer-list dd {
  color: var(--blue-deep);
  font-weight: 900;
  text-align: right;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: route;
}

.route-list li {
  position: relative;
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
  color: var(--blue-deep);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(8, 61, 119, 0.07);
  counter-increment: route;
}

.route-list li::before {
  content: counter(route, decimal-leading-zero);
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 0.86rem;
}

.cards {
  display: grid;
  gap: 16px;
}

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

.info-card {
  padding: 24px;
}

.card-number {
  color: var(--gold);
  font-weight: 900;
}

.info-card h3 {
  margin-top: 18px;
  color: var(--blue-deep);
  font-size: 1.35rem;
}

.info-card p {
  margin-top: 10px;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  gap: 4px;
  padding: 20px;
}

.step strong {
  color: var(--blue-deep);
  font-size: 1.05rem;
}

.step span {
  color: var(--muted);
}

.final-cta {
  background: var(--blue-deep);
  color: var(--white);
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.compact-form {
  margin-top: 0;
}

.site-footer {
  background: #062a52;
  color: rgba(255, 255, 255, 0.78);
  padding: 28px 0;
}

.footer-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
}

.footer-inner img {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

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

.footer-inner address {
  font-style: normal;
  text-align: right;
}

.footer-inner a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .hero-inner,
  .two-columns,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: end;
    padding-top: 138px;
  }

  .form-panel {
    max-width: 640px;
  }

  .quick-strip,
  .cards.three {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 981px) and (max-height: 760px) {
  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero-inner {
    padding-top: 104px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.55rem);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 1.05rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-facts {
    margin-top: 24px;
  }

  .form-panel {
    padding: 18px;
  }

  .form-panel h2 {
    font-size: 1.55rem;
  }

  .inquiry-form {
    gap: 9px;
    margin-top: 14px;
  }

  .field {
    gap: 4px;
  }

  .field label {
    font-size: 0.8rem;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 9px 11px;
  }

  .field textarea {
    min-height: 58px;
  }

  .cost-note {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .consent {
    font-size: 0.8rem;
  }

  .button {
    min-height: 44px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: grid;
    gap: 12px;
    padding: 12px 18px;
  }

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

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.92rem;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.8rem);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 61, 119, 0.5) 0%, rgba(8, 61, 119, 0.84) 58%, rgba(8, 61, 119, 0.92) 100%),
      linear-gradient(90deg, rgba(8, 61, 119, 0.3), rgba(8, 61, 119, 0.18));
  }

  .hero-inner {
    width: min(100% - 28px, 640px);
    padding-top: 150px;
    padding-bottom: 34px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
  }

  .hero-lead {
    order: 3;
  }

  .hero-actions {
    order: 4;
  }

  .form-panel {
    order: 5;
  }

  .hero-facts {
    order: 6;
  }

  .hero-actions,
  .hero-facts,
  .field-grid,
  .route-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .route-list li {
    min-height: 92px;
  }

  .footer-inner {
    display: grid;
    align-items: start;
  }

  .footer-inner address {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
