*,
*::before,
*::after {
  font-family: var(--font-sans) !important;
}

html,
body {
  height: 100%;
}

body {
  font-weight: var(--font-weight-regular);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1px;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

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

.btn-primary {
  background: var(--brand-500);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--brand-600);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--brand-500);
  color: var(--brand-500);
}

.btn-outline:hover {
  border-color: var(--brand-700);
  color: var(--brand-700);
  background: rgba(0, 167, 199, 0.06);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 4px;
  background: rgba(16, 24, 40, 0.82);
  color: var(--color-white);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.1px;
  box-shadow: 0 6px 14px rgba(16, 24, 40, 0.22);
}

.section {
  padding: var(--space-8) 0;
}

.section-title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -1px;
  font-weight: 700;
  color: #3a3a3a;
}

.section-subtitle {
  margin-top: var(--space-3);
  color: #5c5f66;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

h1, h2, h3, h4, h5, h6,
.section-title,
.offer-hero__title,
.results-title,
.trend-title,
.alert-card__title,
.more-options__title,
.faq-title,
.modal__title,
.modal__row-title,
.notice-card__title,
.form-title,
.verify-title,
.verify-item__title,
.assist-box__title,
.hero__title,
.segment-title,
.offer-meta__title,
.content-card__title,
.faq-card__title,
.links-panel__title,
.call-banner__title,
.newsletter__title,
.footer-col__title,
.calendar__title,
.passengers__title {
  font-weight: 400 !important;
  letter-spacing: -0.2px !important;
}
