:root {
  --ink: #14252a;
  --muted: #536c72;
  --paper: #f3efe6;
  --panel: #ffffff;
  --line: #ddd5c7;
  --teal: #0c7473;
  --teal-dark: #063f46;
  --ice: #a8d7dc;
  --coral: #c94f45;
  --gold: #a78344;
  --sage: #d7e6e1;
  --shadow: 0 18px 55px rgba(16, 37, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Arial Narrow", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(20, 37, 42, 0.35) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.65) 0 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: multiply;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(243, 239, 230, 0.86);
  border-bottom: 1px solid rgba(221, 213, 199, 0.72);
  box-shadow: 0 10px 30px rgba(16, 37, 43, 0.07);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.header-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(15, 109, 103, 0.28);
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  font-family: Impact, Haettenschweiler, "Arial Narrow", sans-serif;
}

.nav-links {
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: #27444a;
  font-size: 15px;
  font-weight: 800;
}

.nav-links a,
.header-action,
.primary-button,
.secondary-button {
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.nav-links a:hover,
.header-action:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.header-action {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(15, 109, 103, 0.22);
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  white-space: nowrap;
}

.header-action:hover {
  background: var(--teal-dark);
}

section,
main {
  scroll-margin-top: 92px;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(243, 239, 230, 0.92) 0%, rgba(226, 238, 238, 0.68) 44%, rgba(7, 28, 34, 0.1) 78%),
    linear-gradient(180deg, rgba(243, 239, 230, 0.7) 0%, rgba(5, 37, 45, 0.2) 68%, rgba(5, 37, 45, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 92px);
  padding-top: 82px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  color: rgba(10, 76, 84, 0.78);
  font-family: Impact, Haettenschweiler, "Arial Narrow", "PingFang SC", sans-serif;
  font-size: clamp(76px, 12vw, 170px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.headline-line,
.poster-word {
  display: block;
}

.hero-statement {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.18;
}

.hero-copy {
  max-width: 690px;
  margin: 18px 0 0;
  color: #27444a;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
}

.primary-button {
  color: #fff;
  background: var(--teal-dark);
}

.primary-button:hover {
  background: #032f35;
}

.secondary-button {
  border: 1px solid rgba(6, 63, 70, 0.28);
  color: var(--teal-dark);
  background: rgba(243, 239, 230, 0.62);
}

.secondary-button:hover {
  border-color: rgba(6, 63, 70, 0.55);
  background: rgba(255, 255, 255, 0.72);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 670px;
  margin-top: 54px;
}

.hero-metrics div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(243, 239, 230, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(6, 45, 52, 0.52);
  backdrop-filter: blur(10px);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  font-size: 22px;
  line-height: 1.2;
}

.hero-metrics span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 56px);
}

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

.intro-band {
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

h2 {
  margin: 0;
  font-family:
    "Arial Narrow", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    sans-serif;
  font-size: clamp(32px, 4.8vw, 54px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.intro-grid p:last-child,
.cashback-copy p,
.cruise-layout p,
.form-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

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

.feature-card,
.steps article,
.lead-card,
.summary-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(50, 54, 58, 0.06);
}

.feature-card {
  min-height: 260px;
  padding: 28px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.feature-card h3,
.steps h3 {
  margin: 26px 0 10px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.feature-card p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.luxury-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(243, 239, 230, 0.88)),
    var(--paper);
}

.luxury-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.luxury-copy {
  position: sticky;
  top: 112px;
}

.luxury-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.luxury-benefits {
  display: grid;
  gap: 16px;
}

.luxury-benefits article {
  min-height: 206px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(50, 54, 58, 0.06);
}

.luxury-benefits span,
.air-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--sage);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.luxury-benefits h3 {
  margin: 22px 0 10px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.18;
}

.luxury-benefits p {
  margin: 0;
  color: var(--muted);
}

.luxury-benefits .accent {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(12, 116, 115, 0.92), rgba(6, 63, 70, 0.98)),
    var(--teal-dark);
}

.luxury-benefits .accent span {
  color: #3e2a08;
  background: #f3d79b;
}

.luxury-benefits .accent p {
  color: rgba(255, 255, 255, 0.76);
}

.cashback-band {
  color: #fff;
  background: var(--teal-dark);
}

.cashback-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
}

.cashback-copy p {
  max-width: 610px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.cashback-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.cash-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.cash-row strong {
  text-align: right;
}

.cash-row.highlight {
  align-items: center;
  color: #fff3d6;
  border-bottom: 0;
}

.cash-row.highlight strong {
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
}

.cashback-panel small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
}

.marketplace-section {
  background: #fff;
}

.marketplace-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

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

.market-card {
  min-height: 218px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8f4ec);
}

.market-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 900;
}

.market-card p {
  margin: 0;
  color: var(--muted);
}

.air-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(12, 26, 31, 0.98), rgba(6, 63, 70, 0.88)),
    #172126;
}

.air-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.air-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.air-ticket {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.route-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.route-line span {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  text-transform: uppercase;
}

.route-line span:last-child {
  text-align: right;
}

.route-line strong {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #173036;
  background: #f3d79b;
  font-size: 23px;
}

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

.air-grid div {
  min-height: 180px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.air-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
  line-height: 1.2;
}

.air-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.ticket-section {
  background:
    linear-gradient(180deg, #fbfaf6, #ffffff 48%, #f5f0e8);
}

.ticket-layout {
  display: grid;
  gap: 26px;
}

.ticket-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: end;
}

.ticket-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.ticket-card {
  min-height: 244px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(50, 54, 58, 0.06);
}

.ticket-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--sage);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-card h3 {
  margin: 24px 0 10px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.ticket-card p {
  margin: 0;
  color: var(--muted);
}

.ticket-card.accent {
  color: #fff;
  background: var(--teal-dark);
  border-color: rgba(255, 255, 255, 0.16);
}

.ticket-card.accent span {
  color: #2f2107;
  background: #f3d79b;
}

.ticket-card.accent p {
  color: rgba(255, 255, 255, 0.74);
}

.ticket-layout small {
  color: var(--muted);
}

.cruise-band {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 33, 38, 0.94), rgba(23, 33, 38, 0.78)),
    #172126;
}

.cruise-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.cruise-layout p {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.cruise-note {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.cruise-note span,
.cruise-note strong {
  display: block;
}

.cruise-note span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cruise-note strong {
  margin-top: 12px;
  font-size: 28px;
  line-height: 1.2;
}

.cruise-note p {
  margin-top: 14px;
  font-size: 16px;
}

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

.steps article {
  min-height: 230px;
  padding: 28px;
}

.steps span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--sage);
  font-weight: 900;
}

.form-section {
  background:
    linear-gradient(180deg, rgba(223, 232, 216, 0.6), rgba(251, 250, 246, 0)),
    var(--paper);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 110px;
}

.form-intro p {
  margin-top: 20px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.lead-card {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
}

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

label,
legend {
  color: #32404b;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d7cec0;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  min-height: 112px;
  padding: 12px 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 109, 103, 0.12);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  font-weight: 700;
}

.checks input {
  flex: 0 0 auto;
  width: 18px;
  min-height: auto;
  height: 18px;
  margin: 0;
  accent-color: var(--teal);
}

button[type="submit"] {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

button[type="submit"]:hover {
  transform: translateY(-1px);
  background: var(--teal-dark);
}

.privacy-note {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 18px;
  margin-top: clamp(28px, 5vw, 54px);
}

.iata-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(15, 109, 103, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(50, 54, 58, 0.06);
}

.iata-card > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  font-weight: 900;
}

.iata-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

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

.partner-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 6px 12px 6px 7px;
  border: 1px solid rgba(15, 109, 103, 0.16);
  border-radius: 999px;
  color: #27444a;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.partner-pill span {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.summary-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.summary-actions p {
  margin: 0;
  color: var(--muted);
}

.summary-actions div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ghost-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(15, 109, 103, 0.25);
  border-radius: 8px;
  color: var(--teal-dark);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.ghost-button:hover {
  border-color: var(--teal);
  background: #f2f8f5;
}

.ghost-button.danger {
  color: #9d3e34;
  border-color: rgba(216, 93, 76, 0.28);
}

.ghost-button.danger:hover {
  border-color: var(--coral);
  background: #fff2ee;
}

.summary-section {
  padding: 0 clamp(18px, 4vw, 56px) clamp(72px, 9vw, 112px);
}

.summary-card {
  padding: clamp(24px, 4vw, 36px);
  border-color: rgba(15, 109, 103, 0.2);
}

.summary-card h2 {
  font-size: clamp(28px, 4vw, 42px);
}

#summary-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.summary-item {
  padding: 14px;
  border-radius: 8px;
  background: #f5f2eb;
}

.summary-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.summary-item strong {
  display: block;
  margin-top: 4px;
  word-break: break-word;
}

.site-footer {
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.74);
  background: #172126;
}

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

.footer-inner span {
  color: #fff;
  font-weight: 900;
}

.footer-inner p {
  margin: 0;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 42px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(243, 239, 230, 0.94), rgba(226, 238, 238, 0.62)),
      linear-gradient(180deg, rgba(243, 239, 230, 0.78), rgba(5, 37, 45, 0.54));
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-metrics,
  .intro-grid,
  .feature-grid,
  .luxury-layout,
  .cashback-layout,
  .marketplace-layout,
  .market-card-grid,
  .air-layout,
  .air-grid,
  .ticket-copy,
  .ticket-grid,
  .cruise-layout,
  .steps,
  .form-layout,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .luxury-copy,
  .form-intro {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-action {
    min-height: 36px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: clamp(68px, 22vw, 112px);
  }

  .hero-statement {
    font-size: 24px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-metrics,
  .field-pair,
  .checks,
  #summary-content {
    grid-template-columns: 1fr;
  }

  .hero-metrics div,
  .feature-card,
  .luxury-benefits article,
  .air-grid div,
  .steps article {
    min-height: auto;
  }

  .route-line {
    gap: 10px;
  }

  .route-line span {
    font-size: 20px;
  }

  .route-line strong {
    width: 54px;
    height: 54px;
    font-size: 19px;
  }

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

  .cash-row {
    display: grid;
    gap: 6px;
  }

  .cash-row strong {
    text-align: left;
  }

  .footer-inner {
    display: block;
  }

  .footer-inner p {
    margin-top: 8px;
  }

  .summary-actions {
    align-items: stretch;
    display: grid;
  }

  .summary-actions div {
    display: grid;
  }
}
