:root {
  --navy-900: #0f2340;
  --navy-800: #17345c;
  --charcoal-900: #1f2732;
  --charcoal-700: #3d4b5c;
  --green-800: #1f4d43;
  --green-700: #2d6a5f;
  --white: #ffffff;
  --ice: #eef2f6;
  --border: #d4dde6;
  --shadow: 0 18px 38px rgba(10, 20, 36, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: var(--charcoal-900);
  background: linear-gradient(180deg, #f7fafc 0%, #edf2f7 100%);
  line-height: 1.6;
}

h1,
h2,
h3,
.brand {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.01em;
}

.hero {
  background: radial-gradient(circle at 15% 10%, #2a4c7d 0%, transparent 32%),
    linear-gradient(125deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 1.25rem 1.5rem 4.5rem;
}

.topbar {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0 1.5rem;
}

.brand {
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: #d9e7f7;
  text-decoration: none;
  font-weight: 700;
}

.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  animation: riseIn 0.8s ease both;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.14;
  margin: 1rem 0 1rem;
  max-width: 900px;
}

.subtitle {
  max-width: 760px;
  color: #e4edf8;
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.78rem 1.2rem;
  border-radius: 10px;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.btn-primary {
  background: var(--green-700);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3.2rem 1.5rem;
}

.section h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
}

.chips,
.airlines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.chips span,
.airlines span {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 0.48rem 0.88rem;
  font-weight: 700;
  color: var(--charcoal-700);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow);
  animation: riseIn 0.55s ease both;
}

.grid .card:nth-child(2) {
  animation-delay: 0.06s;
}

.grid .card:nth-child(3) {
  animation-delay: 0.12s;
}

.grid .card:nth-child(4) {
  animation-delay: 0.18s;
}

.grid .card:nth-child(5) {
  animation-delay: 0.24s;
}

.grid .card:nth-child(6) {
  animation-delay: 0.3s;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  color: var(--navy-800);
}

.pricing {
  background: linear-gradient(180deg, #f1f6fb 0%, #edf4fa 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-card {
  background: var(--white);
  border: 1px solid #cbd8e7;
  border-radius: 16px;
  padding: 1.35rem;
  max-width: 580px;
  box-shadow: var(--shadow);
}

.label {
  margin: 0;
  color: var(--green-800);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.82rem;
}

.price {
  margin: 0.45rem 0;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy-900);
}

.price span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal-700);
}

.success {
  margin-top: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-800);
}

.price-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.contact {
  text-align: center;
}

.contact .btn {
  margin-top: 0.5rem;
}

.contact-note {
  font-size: 0.9rem;
  color: #5d6a79;
}

.footer {
  background: #0f1f35;
  color: #d3dfef;
  padding: 1.4rem 1.5rem 2rem;
  text-align: center;
}

.footer p {
  margin: 0.2rem 0;
}

.disclaimer {
  font-size: 0.86rem;
  color: #b8c6d9;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    padding-bottom: 3.2rem;
  }
}
