:root {
  --bg: #fffcfa;
  --ink: #29252c;
  --ink-soft: #42433f;
  --muted: #6a6f68;
  --surface: #ffffff;
  --line: #e5e8e1;
  --brand: #00b490;
  --brand-strong: #008f71;
  --brand-soft: #d9f4ee;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-soft: 0 8px 24px rgba(16, 24, 18, 0.08);
  --shadow-card: 0 4px 10px rgba(16, 24, 18, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  color: var(--ink);
  font-family: 'Poppins', 'Manrope', sans-serif;
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(4px);
  opacity: 0.8;
}

.bg-shape-a {
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 144, 0.2) 0%, rgba(0, 180, 144, 0) 70%);
  top: -160px;
  right: -120px;
}

.bg-shape-b {
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 186, 140, 0.24) 0%, rgba(255, 186, 140, 0) 70%);
  bottom: -220px;
  left: -180px;
}

.bg-shape-c {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 241, 233, 0.5) 0%, rgba(210, 241, 233, 0) 70%);
  top: 34%;
  left: 48%;
}

.container {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
}

.announcement-bar {
  background: linear-gradient(90deg, #0d8c71 0%, #00b490 100%);
  color: #fff;
}

.announcement-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-inner a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 250, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d2a7 0%, #009a7b 100%);
  box-shadow: 0 0 0 5px rgba(0, 180, 144, 0.2);
}

.brand-text {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--brand-strong);
}

.nav-link-btn {
  border: none;
  background: transparent;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
}

.nav-link-btn:hover {
  color: var(--brand-strong);
}

.nav-destinations {
  position: relative;
}

.destinations-dropdown {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100vw - 32px));
  border-radius: 10px;
  border: 1px solid #d7dde0;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 16px;
  display: grid;
  gap: 12px;
  align-content: start;
  transition: gap 0.18s ease, padding 0.18s ease;
  z-index: 120;
}

.destinations-dropdown.is-searching {
  gap: 10px;
}

.destination-inline-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #e8d6d6;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.destinations-dropdown.is-searching .destination-inline-search {
  border-color: #b9ddd1;
  box-shadow: 0 0 0 2px rgba(0, 180, 144, 0.09);
}

.destination-search-prefix {
  color: #5f6f69;
  font-size: 16px;
  margin-left: 4px;
}

.destination-inline-search input {
  border: none;
  box-shadow: none;
  min-height: 34px;
  padding: 6px 2px;
  font-size: 16px;
  color: var(--ink);
}

.destination-inline-search input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.destination-search-submit {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: #43ea82;
  color: #0b3e2f;
  font-size: 17px;
  cursor: pointer;
}

.destinations-search-message {
  font-size: 12px;
  min-height: 24px;
  width: min(100%, 420px);
  margin: 0;
  padding: 2px 10px 0;
  text-align: center;
  justify-self: center;
  border-radius: 999px;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.destinations-search-message:not(.hidden) {
  background: #f4f7f6;
  border: 1px solid #dbe5e0;
  color: #4d5e57;
  padding: 6px 12px;
}

.destinations-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.destinations-head h3 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
}

.destinations-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.destinations-filter-tab {
  border: 1px solid #cfd6db;
  border-radius: 999px;
  background: #fff;
  color: #505a61;
  min-height: 30px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.destinations-filter-tab.is-active {
  background: #020202;
  color: #fff;
  border-color: #020202;
  font-weight: 700;
}

.destinations-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  justify-items: center;
  align-content: start;
  gap: 10px;
  max-height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  transition: gap 0.18s ease, opacity 0.16s ease, transform 0.16s ease;
}

.destinations-list.has-few-results {
  grid-template-columns: repeat(auto-fit, minmax(200px, 320px));
  justify-content: center;
}

.destinations-list.has-single-result {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
  padding-right: 0;
}

.destinations-list.is-refreshing {
  animation: destinations-results-in 0.18s ease;
}

@keyframes destinations-results-in {
  from {
    opacity: 0.74;
    transform: translateY(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destination-option {
  border: 1px solid #d7dde2;
  border-radius: 10px;
  background: #fff;
  min-height: 58px;
  width: 100%;
  max-width: 320px;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 10px 12px;
  text-align: left;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.destination-option:hover {
  border-color: #8fd9bc;
  box-shadow: 0 6px 14px rgba(12, 48, 37, 0.08);
  transform: translateY(-1px);
}

.destination-option span {
  font-size: 16px;
  font-weight: 600;
  color: #2f3433;
}

.destination-option img,
.destination-flag-fallback,
.destination-map-fallback {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 34px;
}

.destination-flag-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eaf2f4;
  color: #607077;
  font-size: 12px;
  font-weight: 700;
}

.destination-map-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dff1fa;
  color: #2a7da5;
  line-height: 1;
}

.destination-map-fallback {
  font-size: 18px;
}

.destinations-footer {
  border-top: 1px solid #e6ebef;
  padding-top: 12px;
  display: flex;
  justify-content: center;
}

.destinations-explore-btn {
  min-width: 280px;
  min-height: 38px;
  padding: 8px 16px;
  font-size: 12px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-nav-btn.mobile-menu-toggle {
  display: none;
}

.mobile-menu-backdrop {
  display: none;
}

.icon-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #d2ddd3;
  background: #fff;
  color: #1f2a27;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  position: relative;
}

.icon-nav-btn:hover {
  border-color: #a6dcca;
  color: #045f4c;
}

.cart-icon-link .chip {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  min-height: 20px;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-destinations-right {
  position: relative;
}

.nav-destinations-right .destinations-dropdown {
  left: auto;
  right: 0;
}

.account-menu {
  position: relative;
}

.account-avatar-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #bcd1c7;
  background: #e9faf4;
  color: #0a614d;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.account-avatar-btn:hover {
  border-color: #8ecab6;
}

.account-menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 270px;
  border-radius: 14px;
  border: 1px solid #dce5de;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 12px;
  display: grid;
  gap: 10px;
  z-index: 96;
}

.account-menu-links {
  display: grid;
  gap: 4px;
}

.account-menu-link {
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #314640;
  font-size: 14px;
  font-weight: 600;
  min-height: 34px;
  text-align: left;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  text-decoration: none;
}

.account-menu-link:hover {
  background: #f4fbf8;
  border-color: #d8e5de;
}

.account-menu-link.is-active {
  background: var(--brand-soft);
  border-color: #c9e8db;
  color: #045f4c;
}

.account-menu-actions {
  display: grid;
  gap: 8px;
}

.account-menu-actions .btn {
  width: 100%;
}

.auth-state {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  max-width: 100%;
  word-break: break-word;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lead {
  margin: 14px 0 0;
  max-width: 54ch;
  font-size: 18px;
  line-height: 1.7;
  color: #f3fffb;
}

.btn,
.text-btn,
.icon-btn {
  font-family: inherit;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  box-shadow: 0 8px 16px rgba(0, 180, 144, 0.28);
}

.btn-secondary {
  background: #fff;
  border-color: #dbe2d8;
  color: #2d3a34;
}

.btn-secondary:hover {
  box-shadow: 0 8px 16px rgba(13, 30, 22, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
}

.btn-pill {
  background: var(--brand);
  color: #fff;
  padding: 9px 17px;
}

.hidden {
  display: none !important;
}

.hero {
  padding: 28px 0 22px;
}

.hero-frame {
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background:
    linear-gradient(110deg, rgba(8, 33, 27, 0.94) 0%, rgba(8, 67, 53, 0.88) 48%, rgba(0, 120, 96, 0.86) 100%),
    radial-gradient(circle at 82% 18%, rgba(141, 255, 227, 0.35) 0%, rgba(141, 255, 227, 0) 42%);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: clamp(30px, 4.5vw, 54px);
  color: #fff;
}

.hero-copy .eyebrow {
  color: #a6f0de;
}

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

.hero-trust {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-marker {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 6px;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  cursor: default;
  pointer-events: none;
}

.hero-trust-icon {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  display: block;
}

.hero-trust-icon-ring {
  fill: rgba(255, 255, 255, 0.14);
  stroke: rgba(255, 255, 255, 0.68);
  stroke-width: 1;
}

.hero-trust-icon-check {
  fill: none;
  stroke: rgba(255, 255, 255, 0.98);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-status-card {
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(160deg, rgba(7, 21, 18, 0.76) 0%, rgba(7, 34, 28, 0.56) 100%);
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-card-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 11px;
  color: #8ce8d3;
}

#healthStatus {
  margin-top: 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

#healthHint {
  margin: 8px 0 0;
  color: #d0ece5;
}

.hero-chip-row {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  border-radius: 999px;
  border: 1px solid rgba(212, 249, 240, 0.4);
  color: #ebfff9;
  background: rgba(0, 0, 0, 0.16);
  padding: 6px 10px;
  font-size: 12px;
}

.status-points {
  margin: 16px 0 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 8px;
}

.status-points li {
  color: #defaf2;
  font-size: 13px;
}

.value-strip {
  margin: 24px auto 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(12px, 1.4vw, 20px);
  padding: clamp(22px, 2.4vw, 32px) clamp(14px, 1.8vw, 24px);
  border-radius: 34px;
  background: linear-gradient(180deg, #f6fbf8 0%, #f2f8f4 100%);
}

.value-item {
  width: 100%;
  min-height: 100%;
  padding: 6px 10px 8px;
  display: grid;
  grid-template-rows: 80px auto 1fr;
  justify-items: center;
  align-content: start;
  row-gap: 12px;
  text-align: center;
}

.value-icon-shell {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: 1px solid rgba(20, 118, 103, 0.25);
  background: linear-gradient(165deg, #16c4a2 0%, #0e8f79 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 22px rgba(15, 110, 96, 0.18);
  position: relative;
  margin-bottom: 0;
}

.value-icon-shell::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.value-icon {
  width: 44px;
  height: 44px;
  display: block;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

.value-item-price .value-icon-shell {
  background: linear-gradient(165deg, #23c38f 0%, #0f8f6d 100%);
}

.value-item-roaming .value-icon-shell {
  background: linear-gradient(165deg, #1bb5dc 0%, #0a7ea3 100%);
}

.value-item-speed .value-icon-shell {
  background: linear-gradient(165deg, #20b274 0%, #137f52 100%);
}

.value-item-install .value-icon-shell {
  background: linear-gradient(165deg, #4bb7ff 0%, #2676da 100%);
}

.value-item h4 {
  margin: 0;
  font-size: clamp(24px, 1.6vw, 34px);
  line-height: 1.15;
  color: #17221f;
  letter-spacing: -0.02em;
  height: 2.3em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-wrap: balance;
}

.value-item p {
  margin: 0;
  max-width: 30ch;
  color: #6f7e77;
  font-size: 13.5px;
  line-height: 1.55;
  text-wrap: balance;
}

.plans,
.how,
.why,
.dashboard,
.reviews,
.faq,
.app-promo {
  padding: 32px 0;
}

.plan-detail {
  padding: 10px 0 22px;
}

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

.section-head.compact {
  align-items: center;
}

.centered-head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 18px;
}

.section-lead {
  margin: 0;
  max-width: 70ch;
  color: #4e615c;
  font-size: 15px;
  line-height: 1.65;
}

.plans-head {
  margin-bottom: 10px;
}

.plans-head-note {
  font-size: 13px;
}

.plan-tabs {
  display: inline-flex;
  border: 1px solid #d5e4dc;
  border-radius: 999px;
  padding: 4px;
  background: #fff;
  gap: 4px;
}

.destinations-type-tabs {
  margin: 10px 0 6px;
}

.tab-chip {
  border: none;
  background: transparent;
  border-radius: 999px;
  color: #4f5f59;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  cursor: pointer;
}

.tab-chip.is-active {
  background: var(--brand-soft);
  color: #045f4c;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-end;
  margin-bottom: 12px;
}

.plans-filters {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.plans-filters label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
}

.filters-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.filters-actions .btn {
  width: 100%;
}

.destinations-search-bar {
  margin: 12px 0;
}

.destinations-search-bar label {
  max-width: 440px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
}

.destinations-explore-grid {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.destination-tile {
  border: 1px solid #dce5de;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.destination-tile:hover {
  border-color: #a6dcca;
  box-shadow: 0 8px 16px rgba(10, 56, 44, 0.14);
}

.destination-tile-main {
  display: grid;
  gap: 4px;
}

.destination-tile-main span {
  font-size: 15px;
  font-weight: 700;
  color: #2f3433;
}

.destination-from-price {
  margin: 0;
  color: #4f6961;
  font-size: 12px;
  font-weight: 600;
}

.destination-tile img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}

input,
select {
  min-height: 42px;
  border: 1px solid #d6dfd4;
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}

select {
  padding-right: 32px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234F5F59' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 180, 144, 0.17);
}

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

.plans-grid {
  margin-top: 12px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.plans-scroll-sentinel {
  width: 100%;
  height: 2px;
  margin-top: 8px;
}

.plan-card {
  background: #fff;
  border: 1px solid rgba(16, 24, 18, 0.1);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 10px;
}

.plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.plan-name {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.plan-pill {
  border-radius: 999px;
  background: #f0faf7;
  border: 1px solid #d3ece4;
  color: #136a57;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 8px;
}

.plan-price {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: #054738;
}

.plan-keyfacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #d6e6de;
  border-radius: 999px;
  background: #f7fcfa;
  color: #2f4a41;
  font-size: 12px;
  padding: 6px 10px;
}

.fact-chip strong {
  font-size: 11px;
  color: #0f5f4c;
}

.plan-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.plan-meta div {
  background: #fffcfa;
  border: 1px solid #e8ece6;
  border-radius: 11px;
  padding: 8px;
}

.plan-meta strong {
  display: block;
  font-size: 11px;
  margin-bottom: 3px;
  color: #2f3433;
}

.plan-meta span {
  font-size: 12px;
  color: var(--muted);
}

.plan-extra {
  border: 1px dashed #d5e4dc;
  border-radius: 12px;
  background: #fcfffd;
  padding: 8px 10px;
}

.plan-extra summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #1f5f50;
  list-style: none;
}

.plan-extra summary::-webkit-details-marker {
  display: none;
}

.plan-extra-grid {
  margin-top: 10px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-extra-grid div {
  background: #fffcfa;
  border: 1px solid #e8ece6;
  border-radius: 10px;
  padding: 8px;
}

.plan-extra-grid strong {
  display: block;
  font-size: 11px;
  margin-bottom: 3px;
  color: #2f3433;
}

.plan-extra-grid span {
  font-size: 12px;
  color: var(--muted);
}

.buy-btn {
  margin-top: 2px;
  width: 100%;
  background: var(--brand);
  color: #fff;
}

.plan-qty-control {
  display: grid;
  gap: 6px;
}

.plan-qty-label {
  font-size: 12px;
  font-weight: 700;
  color: #335a51;
}

.plan-qty-stepper {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 6px;
  align-items: center;
}

.plan-qty-btn {
  min-height: 40px;
  border: 1px solid #cfe2d9;
  border-radius: 10px;
  background: #fff;
  color: #19483c;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.plan-qty-input {
  min-height: 40px;
  border: 1px solid #d4e4dc;
  border-radius: 10px;
  background: #fff;
  padding: 8px 10px;
  font-size: 14px;
  color: #183f35;
  text-align: center;
}

.plan-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.plan-actions .btn {
  width: 100%;
}

.add-cart-btn {
  border-color: #cde3da;
}

.destination-pdp {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: start;
  border: 1px solid #dce8e1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 246, 233, 0.45) 0%, rgba(201, 246, 233, 0) 36%),
    #fbfefd;
  padding: clamp(16px, 2vw, 24px);
  box-shadow: var(--shadow-card);
}

.plans-grid>.destination-pdp,
.plans-grid>.related-destinations-section {
  grid-column: 1 / -1;
}

.destination-pdp-main {
  display: grid;
  gap: 14px;
}

.destination-pdp-head {
  display: grid;
  gap: 8px;
}

.destination-pdp-head h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.destination-pdp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.destination-pdp-meta span {
  border-radius: 999px;
  border: 1px solid #cfe2db;
  background: #f6fcf9;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #275348;
}

.destination-pdp-benefits {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.destination-pdp-benefits article {
  border: 1px solid #d9e6df;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 14px;
}

.destination-pdp-benefits h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.destination-pdp-benefits ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #35574d;
  font-size: 14px;
}

.destination-pdp-specs {
  margin: 0;
  display: grid;
  gap: 8px;
}

.destination-pdp-specs div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed #d9e8e1;
  padding-bottom: 6px;
}

.destination-pdp-specs dt {
  color: #5c756e;
  font-size: 13px;
}

.destination-pdp-specs dd {
  margin: 0;
  font-weight: 700;
  color: #1a4338;
  text-align: right;
}

.destination-buy-card {
  position: sticky;
  top: 96px;
}

.destination-buy-card>article {
  border: 1px solid #dce8e1;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.destination-buy-head h4 {
  margin: 0 0 3px;
  font-size: 20px;
}

.destination-buy-head .muted {
  font-size: 12px;
}

.pdp-type-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid #d8e5de;
  border-radius: 999px;
  background: #fff;
  padding: 3px;
  gap: 3px;
}

.pdp-type-tab {
  min-height: 42px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #4f5f59;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pdp-type-tab.is-active {
  background: var(--brand-soft);
  color: #095440;
}

.pdp-type-tab.is-disabled {
  color: #99b0a6;
  opacity: 1;
  cursor: not-allowed;
}

.pdp-type-tab:focus-visible {
  outline: 2px solid rgba(0, 180, 144, 0.35);
  outline-offset: 1px;
}

.pdp-type-single {
  margin: 0;
  border: 1px solid #d7e5de;
  border-radius: 999px;
  background: #f6fcf9;
  color: #1e4b40;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 12px;
  text-align: center;
}

.pdp-selectors {
  display: grid;
  gap: 10px;
}

.pdp-selector-field {
  display: grid;
  gap: 6px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  color: #33584d;
}

.pdp-selector-field span {
  font-weight: 700;
  color: #1b4a3d;
}

.pdp-selector-input {
  min-height: 46px;
  border: 1px solid #d4e4dc;
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
  font-size: 14px;
  color: #183f35;
}

.destination-buy-summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.destination-buy-label {
  margin: 0;
  font-size: 13px;
  color: #5e7470;
}

.destination-buy-price {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  color: #054738;
  font-weight: 800;
}

.destination-buy-caption {
  margin: -4px 0 0;
  color: #4f6f66;
  font-size: 12px;
}

.destination-buy-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.destination-buy-actions .btn {
  width: 100%;
}

.destination-buy-extra {
  border: 1px dashed #d5e4dc;
  border-radius: 12px;
  background: #fcfffd;
  padding: 8px 10px;
}

.destination-buy-extra summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #1f5f50;
  list-style: none;
}

.destination-buy-extra summary::-webkit-details-marker {
  display: none;
}

.plans-footer-action {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.app-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.app-copy,
.app-panel {
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(140deg, rgba(8, 60, 49, 0.94) 0%, rgba(4, 91, 73, 0.9) 100%),
    radial-gradient(circle at 90% 10%, rgba(183, 255, 236, 0.3) 0%, rgba(183, 255, 236, 0) 40%);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.app-copy .eyebrow {
  color: #a2ebdc;
}

.app-copy p,
.app-panel li {
  font-size: 14px;
  line-height: 1.65;
  color: #e4fff8;
}

.app-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.app-badges span {
  border: 1px solid rgba(222, 255, 246, 0.34);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.app-panel h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

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

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

.step {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(185, 244, 227, 0.32) 0%, rgba(185, 244, 227, 0) 40%),
    #fff;
  border: 1px solid #d5e3db;
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #02b088 0%, #4bd68f 100%);
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(8, 51, 41, 0.16);
}

.step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #dff5ee;
  color: #086952;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
  border: 1px solid #bee7da;
}

.step h3 {
  font-size: 22px;
}

.step p {
  margin: 8px 0 0;
  color: #4c605b;
  font-size: 14px;
  line-height: 1.6;
}

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

.why-item {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(170deg, rgba(236, 252, 247, 0.86) 0%, #fff 34%),
    #fff;
  border: 1px solid #d2e2d9;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-item::before {
  content: '';
  position: absolute;
  right: -24px;
  top: -24px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(75, 214, 143, 0.18);
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(8, 51, 41, 0.16);
}

.why-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.why-item p {
  margin: 0;
  color: #455a55;
  font-size: 13px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.table-wrap {
  overflow: auto;
  border-radius: var(--radius-md);
  border: 1px solid #dbe4db;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.profile-grid {
  margin-top: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1.2fr 0.8fr;
}

.profile-card {
  background: #fff;
  border: 1px solid #dbe4db;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 16px;
}

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

.profile-details {
  margin: 0;
  display: grid;
  gap: 10px;
}

.profile-details div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed #dbe7de;
  padding-bottom: 8px;
}

.profile-details dt {
  color: #5c756e;
  font-size: 13px;
}

.profile-details dd {
  margin: 0;
  color: #1f4038;
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  word-break: break-word;
}

.profile-actions {
  display: grid;
  gap: 8px;
}

.profile-actions .btn {
  width: 100%;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #eef1eb;
  font-size: 13px;
}

th {
  background: #f5faf7;
  color: #63726d;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.reviews {
  padding-top: 18px;
}

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

.review-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid #d5e3db;
  background:
    linear-gradient(160deg, rgba(242, 255, 251, 0.9) 0%, #fff 38%),
    #fff;
  padding: 18px 16px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  line-height: 1;
  color: rgba(2, 176, 136, 0.2);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(8, 51, 41, 0.16);
}

.review-card p {
  margin: 0 0 10px;
  color: #2f3d39;
  line-height: 1.6;
  font-size: 14px;
  max-width: 38ch;
}

.review-card strong {
  font-size: 12px;
  color: #0a7f66;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid #d5e3db;
  border-radius: 14px;
  padding: 0 16px;
  background:
    linear-gradient(160deg, rgba(240, 255, 250, 0.85) 0%, #fff 34%),
    #fff;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
  border-color: #a4d8c6;
  box-shadow: 0 12px 24px rgba(8, 51, 41, 0.14);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  font-size: 17px;
  color: #2c3532;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #b8dccc;
  color: #0b7d64;
  display: inline-grid;
  place-items: center;
  font-size: 19px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.18s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin: 0;
  padding: 0 0 16px;
  color: #4a5f59;
  line-height: 1.65;
  font-size: 15px;
  max-width: 82ch;
}

.site-footer {
  margin-top: 10px;
  border-top: 1px solid #dde7de;
  background: #f9fcfa;
}

.footer-grid {
  padding: 30px 0 22px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 16px;
}

.brand-footer {
  margin-bottom: 12px;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.6;
  font-size: 14px;
}

.footer-social {
  margin-top: 12px;
}

.site-footer ul.footer-social-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid #cfe2d8;
  background: #fff;
  color: #35524a;
  text-decoration: none;
}

.footer-social-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  opacity: 0.88;
}

.footer-social-link:hover {
  border-color: #9ecfb9;
  color: #0b8a6f;
  background: #f2fbf7;
}

.site-footer h3 {
  font-size: 14px;
  margin-bottom: 10px;
  color: #2a3832;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: #4e5d58;
  text-decoration: none;
  font-size: 14px;
}

.site-footer a:hover {
  color: #0b8a6f;
}

.footer-bottom {
  border-top: 1px solid #e2e9e2;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #66746e;
  font-size: 13px;
}

.footer-newsletter-wrap {
  padding-top: 16px;
  border-top: 1px solid #e2e9e2;
}

.footer-newsletter-form {
  display: grid;
  gap: 10px;
}

.footer-newsletter-form label {
  font-weight: 700;
  font-size: 14px;
  color: #24342d;
}

.footer-newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.footer-newsletter-row input {
  border: 1px solid #cfe2d8;
  border-radius: 12px;
  min-height: 44px;
  padding: 0 14px;
  font-size: 14px;
}

.footer-payment-wrap {
  border-top: 1px solid #e2e9e2;
  padding: 16px 0 18px;
}

.footer-payment-title {
  margin: 0 0 10px;
  text-align: center;
  color: #55615e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-footer ul.footer__payment-icons {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  grid-template-columns: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.payment-icon-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.payment-logo-img {
  display: block;
  width: 38px;
  height: 24px;
  object-fit: contain;
  object-position: center;
  border-radius: 3px;
  background: transparent;
  border: 0;
  padding: 0;
}

.payment-logo-img--mono {
  width: 38px;
  height: 24px;
  padding: 0;
}

.payment-logo-img--applepay {
  width: 46px;
  height: 24px;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
}

.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 14, 0.56);
}

.promo-modal-card {
  position: relative;
  width: min(540px, calc(100% - 22px));
  border-radius: 20px;
  border: 1px solid #dce9e3;
  background: linear-gradient(165deg, #f1fff9 0%, #fff 38%);
  box-shadow: 0 22px 42px rgba(9, 46, 37, 0.26);
  padding: clamp(22px, 3.4vw, 34px);
  display: grid;
  gap: 10px;
}

.promo-eyebrow {
  margin: 0;
  color: #0a8469;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.promo-modal-card h3 {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.06;
}

.promo-copy {
  margin: 0;
  color: #52635e;
  font-size: 15px;
  line-height: 1.65;
}

.promo-form {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.promo-form input {
  border: 1px solid #c9ddd4;
  border-radius: 12px;
  min-height: 48px;
  padding: 0 14px;
  font-size: 15px;
}

.promo-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #cee2d9;
  background: #fff;
  color: #1e2b27;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.legal-page {
  padding: 34px 0 64px;
}

.policy-shell {
  padding: 34px 0 64px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(250px, 1fr);
  gap: 18px;
  align-items: start;
}

.policy-main {
  border: 1px solid #d5e4dc;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(240, 255, 250, 0.72) 0%, #fff 35%);
  box-shadow: var(--shadow-card);
  padding: clamp(22px, 4vw, 34px);
}

.policy-header {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.policy-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.policy-title-row h1 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.12;
}

.policy-updated {
  margin: 0;
  color: #60706a;
  font-size: 13px;
  font-weight: 700;
}

.policy-summary {
  margin: 0;
  color: #4f625c;
  font-size: 15px;
  line-height: 1.68;
}

.policy-nav {
  border: 1px solid #d5e4dc;
  border-radius: 14px;
  background: #f7fcf9;
  padding: 12px;
  margin: 8px 0 16px;
}

.policy-nav p {
  margin: 0 0 8px;
  font-weight: 700;
  color: #253731;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.policy-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.policy-nav a {
  color: #1f5f50;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.policy-nav a:hover {
  text-decoration: underline;
}

.policy-section {
  border-top: 1px solid #e2ebe5;
  padding-top: 16px;
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.policy-section h2 {
  margin: 0;
  color: #1d2d28;
  font-size: clamp(20px, 2.2vw, 24px);
}

.policy-section p,
.policy-section li {
  color: #4f625c;
  font-size: 15px;
  line-height: 1.68;
}

.policy-section ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
}

.policy-aside {
  display: grid;
  gap: 12px;
}

.policy-card {
  border: 1px solid #d7e5dd;
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  box-shadow: 0 10px 20px rgba(13, 48, 38, 0.06);
  display: grid;
  gap: 8px;
}

.policy-card h3 {
  margin: 0;
  color: #22342e;
  font-size: 18px;
}

.policy-card p,
.policy-card li {
  margin: 0;
  color: #556862;
  font-size: 14px;
  line-height: 1.65;
}

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

.policy-card .btn {
  width: fit-content;
}

.policy-card a:not(.btn) {
  color: #1f5f50;
  text-decoration: none;
  font-weight: 600;
}

.policy-card a:not(.btn):hover {
  text-decoration: underline;
}

.policy-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.policy-layout-legal {
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr);
}

.policy-main-legal {
  background: #fff;
  border: 1px solid #dbe5df;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(8, 45, 36, 0.06);
  padding: clamp(22px, 4vw, 36px);
}

.policy-main-legal .policy-summary {
  font-size: 16px;
  line-height: 1.72;
  color: #465a54;
}

.policy-main-legal .policy-nav {
  background: #fff;
  border-color: #dfe8e2;
}

.policy-main-legal .policy-nav ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.policy-main-legal .policy-nav a {
  color: #24473f;
  font-size: 14px;
}

.policy-main-legal .policy-section {
  border-top-color: #e5ece8;
  margin-top: 18px;
  padding-top: 18px;
}

.policy-main-legal .policy-section h2 {
  font-size: clamp(21px, 2.3vw, 26px);
}

.policy-main-legal .policy-section p,
.policy-main-legal .policy-section li {
  color: #465a54;
}

.about-layout {
  max-width: 980px;
  margin: 0 auto;
}

.about-main {
  border: 1px solid #dbe5df;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 45, 36, 0.06);
  padding: clamp(22px, 4vw, 36px);
}

.about-hero {
  display: grid;
  gap: 10px;
  padding-bottom: 12px;
}

.about-hero h1 {
  margin: 0;
}

.about-hero p {
  margin: 0;
  color: #465a54;
  font-size: 16px;
  line-height: 1.72;
}

.about-section {
  border-top: 1px solid #e5ece8;
  margin-top: 18px;
  padding-top: 18px;
  display: grid;
  gap: 10px;
}

.about-section h2 {
  margin: 0;
  font-size: clamp(21px, 2.3vw, 26px);
}

.about-section p {
  margin: 0;
  color: #465a54;
  font-size: 15px;
  line-height: 1.68;
}

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

.about-card {
  border: 1px solid #dfe8e2;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 8px;
}

.about-card h3 {
  margin: 0;
  font-size: 17px;
  color: #24473f;
}

.about-card p {
  margin: 0;
  color: #546862;
  font-size: 14px;
  line-height: 1.65;
}

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

.about-value {
  border: 1px solid #dfe8e2;
  border-radius: 12px;
  background: #f9fcfb;
  padding: 14px;
  display: grid;
  gap: 6px;
}

.about-value h3 {
  margin: 0;
  font-size: 16px;
  color: #24473f;
}

.about-value p {
  margin: 0;
  color: #546862;
  font-size: 14px;
  line-height: 1.6;
}

.about-contact {
  border-top: 1px solid #e5ece8;
  margin-top: 18px;
  padding-top: 18px;
  display: grid;
  gap: 10px;
}

.about-contact h2 {
  margin: 0;
  font-size: clamp(21px, 2.3vw, 26px);
}

.about-contact p {
  margin: 0;
  color: #465a54;
  font-size: 15px;
  line-height: 1.68;
}

.about-contact .btn {
  width: fit-content;
}

.legal-wrap {
  border: 1px solid #d5e4dc;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(240, 255, 250, 0.7) 0%, #fff 35%);
  box-shadow: var(--shadow-card);
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  gap: 16px;
}

.legal-wrap h1,
.legal-wrap h2,
.legal-wrap h3 {
  margin: 0;
}

.legal-wrap h1 {
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.12;
}

.legal-wrap h2 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.14;
}

.legal-wrap h3 {
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.2;
}

.legal-wrap p,
.legal-wrap li {
  color: #4f625c;
  font-size: 15px;
  line-height: 1.68;
}

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

.inline-form {
  display: grid;
  gap: 12px;
}

.inline-form label {
  display: grid;
  gap: 6px;
  color: #2b3d37;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.inline-form .field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.inline-form input,
.inline-form textarea,
.inline-form select {
  width: 100%;
  border: 1px solid #caded4;
  border-radius: 12px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

.inline-form textarea {
  min-height: 130px;
  resize: vertical;
}

.inline-form button {
  justify-self: start;
}

.status-paid {
  color: #0f8a52;
  font-weight: 700;
}

.status-pending,
.status-processing {
  color: #9a5b00;
  font-weight: 700;
}

.status-failed {
  color: #b3261e;
  font-weight: 700;
}

.drawer,
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.drawer {
  display: flex;
  justify-content: flex-end;
  background: rgba(8, 16, 11, 0.52);
}

.drawer-inner {
  width: min(450px, 100%);
  height: 100%;
  background: #fffcfa;
  border-left: 1px solid #dbe5dc;
  padding: 16px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
}

.drawer-head,
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #d2ddd3;
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.drawer-plan {
  margin: 0;
  color: #34433d;
  font-weight: 600;
}

.drawer-empty-action {
  width: 100%;
  align-self: start;
  min-height: 44px;
}

.drawer-checkout-btn {
  width: 100%;
  min-height: 46px;
  border-radius: 14px;
  align-self: start;
}

.drawer-cart-wrap {
  border: 1px solid #d7e3da;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  display: grid;
  gap: 8px;
}

.drawer-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.drawer-cart-head p {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
}

.drawer-cart-items {
  display: grid;
  gap: 8px;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 2px;
}

.drawer-cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  border: 1px solid #dce6df;
  border-radius: 10px;
  padding: 6px;
}

.drawer-cart-item.is-active {
  border-color: #9ed5c4;
  background: #f5fffb;
}

.drawer-cart-select {
  border: none;
  background: transparent;
  text-align: left;
  padding: 0;
  display: grid;
  gap: 4px;
  cursor: pointer;
}

.drawer-cart-select strong {
  font-size: 13px;
  color: #2d3633;
}

.drawer-cart-select span {
  font-size: 12px;
  color: #4d625b;
}

.drawer-cart-remove {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid #d2ddd3;
  background: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.stack {
  display: grid;
  gap: 10px;
}

.paypal-wrap {
  border: 1px dashed #ccddd3;
  border-radius: 12px;
  padding: 10px;
  background: #f8fefb;
}

.modal {
  display: grid;
  place-items: center;
  background: rgba(8, 16, 11, 0.45);
}

.modal-card {
  width: min(450px, calc(100% - 20px));
  border-radius: 16px;
  border: 1px solid #dbe4db;
  background: #fffcfa;
  box-shadow: var(--shadow-soft);
  padding: 16px;
  display: grid;
  gap: 12px;
}

.text-btn {
  border: none;
  background: transparent;
  color: #0d876d;
  text-decoration: underline;
  padding: 0;
  justify-self: start;
  cursor: pointer;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: 360px;
  border-radius: 12px;
  border: 1px solid #204539;
  background: #0c2d24;
  color: #e8fff8;
  padding: 10px 12px;
  z-index: 90;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-item {
  background: #fff;
  border: 1px solid #dce5dc;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.cart-item-right {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.cart-item-actions {
  display: flex;
  gap: 8px;
}

.cart-footer {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cart-checkout-all {
  margin-top: 12px;
  display: block;
}

.cart-payment-section {
  max-width: 420px;
  display: grid;
  gap: 10px;
}

.cart-payment-actions {
  display: flex;
  gap: 10px;
}

.cart-payment-actions .btn {
  min-width: 220px;
}

.cart-checkout-all label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
}

.cart-total {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
}

.checkout-shell {
  padding: clamp(20px, 4vw, 40px) 0 clamp(30px, 5vw, 50px);
}

.checkout-grid {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  border: 1px solid #dce5dc;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
}

.checkout-main {
  padding: clamp(18px, 3vw, 34px);
}

.checkout-summary {
  padding: clamp(18px, 3vw, 34px);
  background: #f7faf8;
  border-left: 1px solid #dce5dc;
}

.checkout-steps {
  margin: 0;
  color: #5f756f;
  font-size: 13px;
}

.checkout-steps span {
  margin: 0 8px;
}

.checkout-main h1 {
  margin: 10px 0 4px;
  font-size: clamp(28px, 4vw, 40px);
}

.checkout-form {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.checkout-form-block {
  display: grid;
  gap: 10px;
}

.checkout-form-block h3 {
  margin: 0;
  font-size: 22px;
}

.checkout-field {
  display: grid;
  gap: 6px;
}

.checkout-field span {
  font-size: 13px;
  color: #34534b;
  font-weight: 700;
}

.checkout-field-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.checkout-field input {
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid #ceded5;
  background: #fff;
  padding: 10px 12px;
  font-size: 15px;
}

.checkout-field input.is-invalid {
  border-color: #d64545;
}

.checkout-card-element {
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid #ceded5;
  background: #fff;
  padding: 13px 12px;
}

.checkout-card-row .checkout-card-element {
  padding: 12px 12px;
}

.checkout-footer {
  margin-top: 16px;
  display: grid;
  gap: 6px;
}

.checkout-return-link {
  color: #16715c;
  text-decoration: none;
  font-weight: 700;
}

.checkout-summary h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.checkout-summary-list {
  display: grid;
  gap: 10px;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #dae5dd;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
}

.checkout-summary-item h4 {
  margin: 0 0 4px;
  font-size: 15px;
}

.checkout-summary-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.checkout-summary-item strong {
  white-space: nowrap;
}

.checkout-coupon {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
}

.checkout-coupon input {
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid #ceded5;
  padding: 10px 12px;
}

.checkout-totals {
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.checkout-totals div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.checkout-total-line {
  padding-top: 8px;
  border-top: 1px solid #dce5dc;
  font-weight: 800;
  font-size: 20px;
}

.checkout-trust-card {
  margin-top: 20px;
  border: 1px solid #dae5dd;
  border-radius: 12px;
  background: #fffef8;
  padding: 14px;
}

.checkout-trust-card h3 {
  margin: 0 0 6px;
}

.checkout-trust-card p {
  margin: 0 0 8px;
}

.cta-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .hero-frame {
    grid-template-columns: 1fr;
  }

  .hero-status-card {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .plans-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .destination-buy-card {
    position: static;
  }

  .destination-pdp-benefits {
    grid-template-columns: 1fr;
  }

  .destinations-explore-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .plans-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 900px) {
  body.destinations-dropdown-open {
    overflow: hidden;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  /* Keep native mobile pickers aligned and prevent iOS auto-zoom drift. */
  .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  input,
  select,
  textarea,
  .inline-form input,
  .inline-form select,
  .inline-form textarea {
    font-size: 16px;
  }

  select {
    -webkit-appearance: menulist;
    appearance: menulist;
    background-image: none;
  }

  .nav-row {
    flex-wrap: nowrap;
    padding: 10px 0;
    min-height: 64px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    background: rgba(255, 252, 250, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 18px 18px;
    z-index: 90;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links.is-mobile-open {
    display: flex;
  }

  .nav-links>a,
  .nav-links .nav-link-btn {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid #e3ebe6;
    font-size: 16px;
    padding: 0 2px;
  }

  .nav-links>a:last-child {
    border-bottom: none;
  }

  .nav-links .nav-destinations {
    width: 100%;
  }

  .icon-nav-btn.mobile-menu-toggle {
    display: inline-flex;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 74px 0 0;
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    background: rgba(8, 16, 11, 0.34);
    z-index: 89;
    cursor: pointer;
  }

  .destinations-dropdown {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    transform: none;
    bottom: 0;
    width: 100%;
    max-height: none;
    border-radius: 16px 16px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
    grid-template-rows: auto auto auto auto auto;
    align-content: start;
    overflow-y: auto;
  }

  .destinations-head {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
    padding-bottom: 4px;
  }

  .destinations-head h3 {
    font-size: clamp(26px, 6vw, 32px);
  }

  .destination-inline-search {
    position: sticky;
    top: 52px;
    z-index: 2;
    background: #fff;
  }

  .destination-inline-search input {
    font-size: 16px;
  }

  .destinations-filter-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .destinations-filter-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .destinations-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: min(44vh, 300px);
    min-height: 0;
    overflow-y: auto;
    padding-right: 0;
    gap: 8px;
  }

  .destination-option {
    min-height: 50px;
    max-width: 340px;
    padding: 7px 10px;
  }

  .destination-option span {
    font-size: 15px;
    line-height: 1.3;
  }

  .destinations-footer {
    padding-top: 6px;
  }

  .destinations-explore-btn {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destinations-explore-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .value-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: clamp(32px, 5vw, 42px) clamp(16px, 4vw, 24px);
    border-radius: 26px;
  }

  .value-item {
    grid-template-rows: 84px auto 1fr;
  }

  .value-icon-shell {
    width: 82px;
    height: 82px;
    margin-bottom: 18px;
  }

  .value-icon {
    width: 42px;
    height: 42px;
  }

  .value-item p {
    font-size: 13.5px;
    line-height: 1.65;
  }

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

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

  .plans-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .policy-main-legal .policy-nav ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1240px, calc(100% - 22px));
  }

  .announcement-inner {
    justify-content: flex-start;
  }

  .announcement-inner a {
    font-size: 11px;
    line-height: 1.4;
  }

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

  .brand-text {
    font-size: 20px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-trust {
    margin-top: 24px;
  }

  .hero-copy,
  .hero-status-card {
    padding: 20px;
  }

  .lead {
    font-size: 16px;
  }

  .value-strip {
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px 16px;
    border-radius: 20px;
  }

  .value-item {
    grid-template-rows: 76px auto auto;
    row-gap: 10px;
  }

  .value-icon-shell {
    width: 74px;
    height: 74px;
    margin-bottom: 16px;
  }

  .value-icon {
    width: 38px;
    height: 38px;
  }

  .value-item h4 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .value-item p {
    font-size: 13px;
  }

  .section-head,
  .section-head.compact {
    flex-direction: column;
    align-items: flex-start;
  }

  .centered-head,
  .section-head.compact.centered-head {
    align-items: center;
    text-align: center;
  }

  .section-lead {
    font-size: 14px;
  }

  .plan-tabs {
    width: 100%;
  }

  .tab-chip {
    flex: 1;
  }

  .filters,
  .filters label,
  .filters select,
  .filters button {
    width: 100%;
  }

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

  .plans-grid,
  .destinations-explore-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .destination-buy-actions {
    grid-template-columns: 1fr;
  }

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

  .destinations-dropdown .destinations-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: min(40vh, 280px);
  }

  .destinations-dropdown .destinations-list.has-few-results {
    grid-template-columns: 1fr;
  }

  table {
    min-width: 640px;
  }

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

  .plan-qty-stepper {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

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

  .cart-item {
    flex-direction: column;
  }

  .cart-item-right {
    width: 100%;
    justify-items: start;
  }

  .cart-item-actions {
    width: 100%;
    flex-direction: column;
  }

  .cart-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-checkout-all {
    display: block;
  }

  .cart-payment-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-payment-actions .btn {
    width: 100%;
    min-width: 0;
  }

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

  .checkout-summary {
    border-left: none;
    border-top: 1px solid #dce5dc;
  }

  .checkout-field-row {
    grid-template-columns: 1fr;
  }

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

  .footer-newsletter-row,
  .inline-form .field-grid {
    grid-template-columns: 1fr;
  }

  .drawer-inner {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .destinations-dropdown {
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    gap: 7px;
  }

  .destinations-dropdown .destinations-list {
    grid-template-columns: 1fr;
    max-height: min(38vh, 240px);
  }

  .destinations-dropdown .destination-option {
    max-width: 100%;
  }

  .destinations-search-message {
    width: 100%;
  }

  .destinations-explore-btn {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 11px;
  }
}