:root {
  --ink: #11120f;
  --night: #10251d;
  --forest: #0f4b38;
  --palm: #1a7354;
  --gold: #d7a541;
  --sun: #f4d06f;
  --cream: #fff7e7;
  --sand: #efe2ca;
  --mist: #f7f3ea;
  --white: #ffffff;
  --muted: #716b60;
  --line: rgba(17, 18, 15, 0.12);
  --glass: rgba(255, 247, 231, 0.78);
  --shadow: 0 28px 80px rgba(16, 37, 29, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

.topbar {
  position: fixed;
  top: 18px;
  left: clamp(14px, 4vw, 54px);
  right: clamp(14px, 4vw, 54px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(12, 31, 24, 0.58);
  color: var(--white);
  box-shadow: 0 20px 70px rgba(7, 19, 14, 0.22);
  backdrop-filter: blur(20px);
}

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

.brand-mark {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--night);
  box-shadow: 0 0 0 2px rgba(244, 208, 111, 0.8);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--sun);
}

.top-cta,
.btn,
.package a,
.contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.top-cta {
  padding: 0 22px;
  background: linear-gradient(135deg, var(--sun), var(--gold));
  color: var(--night);
  font-size: 13px;
}

.top-cta:hover,
.btn:hover,
.package a:hover,
.contact-card a:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(22px, 4vw, 52px);
  min-height: 100vh;
  padding: 150px clamp(18px, 5vw, 76px) 46px;
  overflow: hidden;
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 24vh;
  content: "";
  background: linear-gradient(180deg, transparent, var(--mist));
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(5, 18, 14, 0.84), rgba(5, 18, 14, 0.48) 48%, rgba(5, 18, 14, 0.2)),
    linear-gradient(0deg, rgba(5, 18, 14, 0.65), rgba(5, 18, 14, 0.06) 38%),
    url("./assets/ba-den-travel-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 920px;
  padding-bottom: 80px;
  min-width: 0;
  text-align: center;
}

.hero-logo {
  display: block;
  width: clamp(210px, 25vw, 350px);
  aspect-ratio: 1;
  margin: 0 auto 28px;
  border: 4px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  object-fit: cover;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(56px, 8vw, 116px);
  line-height: 0.88;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.62;
  text-align: center;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn {
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(135deg, var(--sun), var(--gold));
  color: var(--night);
  box-shadow: 0 18px 38px rgba(215, 165, 65, 0.32);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 18, 15, 0.12);
}

.hero-pass {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-bottom: 105px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  background: rgba(255, 247, 231, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  min-width: 0;
}

.pass-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(244, 208, 111, 0.18);
  color: var(--sun);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-pass strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  line-height: 0.95;
}

.hero-pass p {
  margin: 16px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

.hero-pass a {
  display: inline-flex;
  color: var(--sun);
  font-weight: 900;
}

.stats {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 5vw, 76px);
  right: clamp(18px, 5vw, 76px);
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0;
  min-width: 0;
}

.stats div {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(255, 247, 231, 0.12);
  backdrop-filter: blur(16px);
}

.stats dt {
  color: var(--sun);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: clamp(20px, 5vw, 80px);
  align-items: end;
  margin-bottom: 38px;
}

.section-heading.compact {
  display: block;
  max-width: 720px;
}

h2 {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.section-heading p:not(.eyebrow),
.contact-copy > p,
.visual-break > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.channels-section {
  position: relative;
  background: var(--mist);
}

.partners-section {
  background:
    radial-gradient(circle at 80% 6%, rgba(244, 208, 111, 0.18), transparent 30%),
    var(--white);
}

.partner-slider {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  gap: 12px;
  margin: 0 -16px;
  padding: 0 16px 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.partner-slider::-webkit-scrollbar {
  display: none;
}

.partner-slide {
  display: grid;
  min-height: 136px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(17, 18, 15, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 46px rgba(16, 37, 29, 0.08);
  scroll-snap-align: center;
}

.partner-slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.channel-modules {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}

.channel-module {
  overflow: hidden;
  border: 1px solid rgba(17, 18, 15, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 231, 0.82)),
    var(--cream);
  box-shadow: 0 18px 55px rgba(16, 37, 29, 0.08);
}

.module-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(17, 18, 15, 0.08);
  background: rgba(16, 37, 29, 0.05);
}

.module-head span {
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.module-head small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.channel-list {
  display: grid;
}

.channel-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(17, 18, 15, 0.08);
  transition: background 160ms ease, transform 160ms ease;
}

.channel-row:last-child {
  border-bottom: 0;
}

.channel-row:hover {
  background: rgba(215, 165, 65, 0.1);
}

.channel-row span {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  font-weight: 700;
}

.channel-row strong {
  font-size: 17px;
  line-height: 1.3;
}

.channel-row em {
  justify-self: end;
  min-width: 76px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--night);
  color: var(--white);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.package h3 {
  margin-bottom: 0;
  font-size: 23px;
  line-height: 1.22;
}

.package p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.visual-break {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: clamp(24px, 6vw, 92px);
  align-items: end;
  min-height: 560px;
  padding: clamp(72px, 10vw, 130px) clamp(18px, 5vw, 76px);
  background-image:
    radial-gradient(circle at 76% 24%, rgba(244, 208, 111, 0.5), transparent 18%),
    radial-gradient(circle at 82% 70%, rgba(26, 115, 84, 0.72), transparent 26%),
    linear-gradient(135deg, rgba(16, 37, 29, 0.98), rgba(15, 75, 56, 0.88) 52%, rgba(215, 165, 65, 0.76));
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.visual-break::before {
  position: absolute;
  inset: -14%;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.08) 38% 39%, transparent 39% 100%),
    linear-gradient(25deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 48% 49%, transparent 49% 100%);
  opacity: 0.7;
  pointer-events: none;
}

.visual-break > * {
  position: relative;
}

.visual-break h2 {
  max-width: 860px;
}

.visual-break > p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  text-wrap: balance;
}

.packages-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(244, 208, 111, 0.28), transparent 34%),
    linear-gradient(180deg, #fff9ec, #efe3ca);
}

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

.package {
  padding: 30px;
  border: 1px solid rgba(17, 18, 15, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 58px rgba(16, 37, 29, 0.08);
}

.package.featured {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
  box-shadow: 0 32px 90px rgba(16, 37, 29, 0.24);
}

.package.featured::before {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(244, 208, 111, 0.22);
  content: "";
}

.package.featured > * {
  position: relative;
}

.package.featured p,
.package.featured li {
  color: rgba(255, 255, 255, 0.76);
}

.package-label {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 165, 65, 0.16);
  color: var(--forest);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package.featured .package-label {
  background: var(--sun);
  color: var(--ink);
}

.package ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.package li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 14px;
}

.package li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  color: var(--gold);
  font-weight: 900;
}

.package a {
  width: 100%;
  background: var(--forest);
  color: var(--white);
}

.package.featured a {
  background: linear-gradient(135deg, var(--sun), var(--gold));
  color: var(--night);
}

.bonus-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 26px;
  border: 1px solid rgba(17, 18, 15, 0.1);
  border-radius: 24px;
  background: var(--night);
  color: var(--white);
  box-shadow: 0 24px 72px rgba(16, 37, 29, 0.18);
}

.bonus-strip span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--sun);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bonus-strip h3 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(21px, 2.4vw, 32px);
  line-height: 1.18;
}

.no-break {
  white-space: nowrap;
}

.bonus-strip ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bonus-strip li {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.contact-section {
  background: var(--night);
  color: var(--white);
}

.contact-copy {
  max-width: 680px;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  align-items: center;
  max-width: 480px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.contact-card strong {
  color: var(--sun);
  font-size: clamp(26px, 4vw, 38px);
}

.contact-card a {
  grid-row: span 2;
  min-width: 122px;
  background: var(--sun);
  color: var(--night);
}

.full {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.floating-zalo {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: #0b8ff0;
  color: var(--white);
  box-shadow: 0 18px 38px rgba(11, 143, 240, 0.34);
  font-weight: 900;
}

@media (max-width: 1120px) {
}

main {
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--mist);
  box-shadow: 0 0 80px rgba(16, 37, 29, 0.16);
}

.topbar {
  left: 50%;
  right: auto;
  width: min(430px, calc(100% - 20px));
  top: 10px;
  align-items: flex-start;
  border-radius: 28px;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px;
  transform: translateX(-50%);
}

.brand {
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.brand strong {
  font-size: 14px;
}

.brand small {
  font-size: 11px;
}

.nav {
  order: 3;
  width: 100%;
  justify-content: flex-start;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0;
  font-size: 12px;
}

.top-cta {
  width: 100%;
  min-height: 40px;
}

.hero {
  grid-template-columns: 1fr;
  min-height: auto;
  padding: 166px 16px 30px;
}

.hero::after {
  display: none;
}

.hero-bg {
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(5, 18, 14, 0.74), rgba(5, 18, 14, 0.62)),
    linear-gradient(90deg, rgba(5, 18, 14, 0.55), rgba(5, 18, 14, 0.12)),
    url("./assets/ba-den-travel-hero.png");
}

.hero-content {
  padding-bottom: 20px;
}

.hero-logo {
  width: 154px;
  margin-bottom: 18px;
  border-width: 3px;
}

.hero-copy {
  max-width: 300px;
  margin: 0 auto 22px;
  font-size: 16px;
  line-height: 1.48;
}

h2 {
  font-size: 36px;
  line-height: 1.02;
}

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

.hero-pass {
  width: 100%;
  max-width: 420px;
  margin-bottom: 0;
  padding: 18px;
}

.hero-pass strong {
  font-size: 34px;
}

.hero-pass p {
  max-width: 260px;
  margin: 10px 0 14px;
  font-size: 13px;
  line-height: 1.48;
}

.stats {
  display: none;
}

.section {
  padding: 54px 16px;
}

.section-heading,
.visual-break,
.contact-section {
  grid-template-columns: 1fr;
}

.section-heading {
  gap: 12px;
  margin-bottom: 22px;
}

.section-heading p:not(.eyebrow),
.contact-copy > p,
.visual-break > p {
  font-size: 15px;
  line-height: 1.58;
}

.channel-modules,
.package-grid,
.bonus-strip,
.bonus-strip ul {
  grid-template-columns: 1fr;
}

.module-head {
  padding: 14px 16px;
}

.channel-row {
  grid-template-columns: 36px minmax(0, 1fr);
  min-height: 64px;
  padding: 12px 16px;
}

.channel-row span {
  font-size: 25px;
}

.channel-row strong {
  font-size: 15px;
}

.channel-row em {
  grid-column: 2;
  justify-self: start;
  min-width: 64px;
  padding: 6px 9px;
}

.visual-break {
  min-height: 320px;
  padding: 38px 16px;
}

.package {
  padding: 22px;
}

.package h3 {
  font-size: 21px;
}

.package ul {
  margin: 18px 0 22px;
}

.bonus-strip {
  padding: 20px;
}

.bonus-strip h3 {
  font-size: clamp(14px, 3.55vw, 21px);
}

.bonus-strip li {
  min-height: 56px;
}

.contact-card {
  grid-template-columns: 1fr;
  padding: 18px;
}

.contact-card a {
  grid-row: auto;
  width: 100%;
}

.floating-zalo {
  right: max(18px, calc((100vw - 430px) / 2 + 18px));
}

@media (max-width: 920px) {
  .topbar {
    align-items: flex-start;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 20px;
  }

  .hero-pass {
    max-width: 420px;
    margin-bottom: 140px;
  }

  .section-heading,
  .visual-break,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

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

  .bonus-strip ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  main {
    width: 100%;
    max-width: none;
    margin: 0;
    box-shadow: none;
  }

  .topbar {
    top: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    transform: none;
    gap: 12px;
    padding: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .nav {
    gap: 18px;
    font-size: 12px;
  }

  .top-cta {
    width: 100%;
    min-height: 40px;
  }

  .hero {
    padding: 166px 16px 30px;
  }

  h1 {
    max-width: 330px;
    font-size: 39px;
    line-height: 0.98;
  }

  .hero-logo {
    width: 154px;
    margin-bottom: 18px;
    border-width: 3px;
  }

  .hero-copy {
    max-width: 300px;
    margin: 0 auto 22px;
    font-size: 16px;
    line-height: 1.48;
  }

  h2 {
    font-size: 36px;
    line-height: 1.02;
  }

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

  .hero-pass {
    margin-bottom: 0;
    padding: 18px;
    width: 100%;
  }

  .hero-pass strong {
    font-size: 34px;
  }

  .hero-pass p {
    max-width: 260px;
    margin: 10px 0 14px;
    font-size: 13px;
    line-height: 1.48;
  }

  .stats {
    display: none;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 22px;
  }

  .section-heading p:not(.eyebrow),
  .contact-copy > p,
  .visual-break > p {
    font-size: 15px;
    line-height: 1.58;
  }

  .module-head {
    padding: 14px 16px;
  }

  .module-head small {
    display: none;
  }

  .channel-row {
    min-height: 64px;
    padding: 12px 16px;
  }

  .channel-row {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .channel-row span {
    font-size: 25px;
  }

  .channel-row strong {
    font-size: 15px;
  }

  .channel-row em {
    grid-column: 2;
    justify-self: start;
    min-width: 64px;
    padding: 6px 9px;
  }

  .visual-break {
    min-height: 440px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .package {
    padding: 22px;
  }

  .package h3 {
    font-size: 21px;
  }

  .package ul {
    margin: 18px 0 22px;
  }

  .bonus-strip {
    padding: 20px;
  }

  .bonus-strip h3 {
    font-size: clamp(14px, 3.55vw, 16px);
  }

  .bonus-strip li {
    min-height: 56px;
  }

  .contact-card {
    padding: 18px;
  }

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

  .contact-card a {
    grid-row: auto;
    width: 100%;
  }
}
