:root {
  --ink: #12213f;
  --muted: #5a667c;
  --line: #dbe3ee;
  --blue: #244a9b;
  --navy: #0f2c59;
  --sky: #1d8fc7;
  --sun: #f59d26;
  --paper: #ffffff;
  --soft: #f4f8fb;
  --shadow: 0 18px 45px rgba(18, 33, 63, 0.14);
}

* {
  box-sizing: border-box;
}

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

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

.topbar {
  background: #0f2143;
  color: #fff;
  font-size: 14px;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.brand span span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.nav-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  font-weight: 900;
}

.btn-primary {
  background: var(--sun);
  color: #111827;
}

.btn-secondary {
  background: var(--blue);
  color: #fff;
}

.hero {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(15, 44, 89, 0.9), rgba(15, 44, 89, 0.55)),
    url("hero-travel-partner.jpg?v=20260602") center / cover no-repeat;
}

.hero-inner {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
}

.hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

section {
  padding: 54px 0;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(18, 33, 63, 0.06);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.cta-band {
  background: #f4f8fb;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.cta-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer {
  padding: 30px 0;
  background: #09152f;
  color: #cdd8e7;
}

@media (max-width: 760px) {
  .nav-inner,
  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .nav-inner {
    display: grid;
  }

  .nav-actions,
  .hero-actions,
  .btn {
    width: 100%;
  }

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