:root {
  --blue-950: #071a3c;
  --blue-900: #08265e;
  --blue-800: #0b3f9c;
  --blue-700: #075ce6;
  --blue-600: #136df5;
  --blue-100: #eaf2ff;
  --orange: #ff7a1a;
  --green: #12a66a;
  --red: #df3a45;
  --yellow: #f5a524;
  --ink: #16213d;
  --muted: #64718a;
  --line: #dfe7f5;
  --panel: #ffffff;
  --soft: #f4f7fc;
  --dark-panel: #0b1f45;
  --shadow: 0 18px 50px rgba(13, 43, 94, 0.12);
  --shadow-soft: 0 10px 28px rgba(13, 43, 94, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:focus-visible {
  outline: 3px solid rgba(255, 122, 26, 0.55);
  outline-offset: 2px;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.app-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.side-nav {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px 18px;
  background: var(--blue-950);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: auto;
  scrollbar-width: thin;
}

.brand {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-600), var(--orange));
  color: white;
  font-weight: 900;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand strong span {
  color: var(--orange);
}

.brand small {
  color: #aac1ec;
}

.side-nav nav {
  display: grid;
  gap: 6px;
}

.nav-group-label {
  margin: 12px 8px 2px;
  color: #7fa3dd;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-link {
  color: #cfe0ff;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
}

.nav-link.active,
.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.admin-link {
  margin-top: 10px;
  background: rgba(255, 122, 26, 0.16);
  color: #ffd8c0;
}

.side-card {
  margin-top: auto;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.side-card p {
  margin: 0 0 8px;
  color: #bdd2ff;
}

.side-card strong {
  font-size: 13px;
  line-height: 1.45;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(18, 166, 106, 0.16);
}

main {
  padding: 26px;
  min-width: 0;
}

.topbar,
.section-head,
.admin-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-heading-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.topbar h1,
.hero-copy h2,
.section-head h2,
.route h2 {
  margin: 0;
  color: var(--blue-950);
  letter-spacing: 0;
}

.topbar h1 {
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.05;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--blue-700);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

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

.demo-banner {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: -8px 0 22px;
  padding: 10px 12px;
  border: 1px solid #cfe0ff;
  border-radius: 8px;
  color: var(--blue-800);
  background: #f3f8ff;
  font-size: 13px;
}

.demo-banner strong {
  color: var(--blue-950);
}

.backend-banner {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: -10px 0 22px;
  padding: 10px 12px;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  color: #166534;
  background: #ecfdf5;
  font-size: 13px;
}

.backend-banner strong {
  color: #14532d;
}

.session-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--blue-800);
  background: var(--blue-100);
  font-size: 12px;
  font-weight: 900;
}

.primary-button,
.ghost-button {
  border: 0;
  border-radius: 8px;
  min-height: 42px;
  padding: 0 16px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.primary-button {
  color: white;
  background: var(--blue-700);
  box-shadow: 0 12px 28px rgba(7, 92, 230, 0.24);
}

.primary-button:hover {
  background: var(--blue-800);
}

.primary-button:disabled {
  background: #92a5c8;
  box-shadow: none;
}

.ghost-button {
  color: var(--blue-800);
  background: white;
  border: 1px solid var(--line);
}

.wide {
  width: 100%;
}

.route {
  display: none;
}

.route.active {
  display: block;
}

.public-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #075ce6;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.public-hero-copy {
  padding: clamp(28px, 5vw, 58px);
  color: white;
  display: grid;
  align-content: center;
  position: relative;
  z-index: 1;
}

.public-hero-copy .eyebrow {
  color: #b9d6ff;
}

.public-hero-copy h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(42px, 6.2vw, 76px);
  line-height: 0.98;
  color: white;
}

.public-hero-copy h2 span {
  display: block;
  color: #ffc42e;
}

.public-hero-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #eef6ff;
  font-size: 20px;
  line-height: 1.55;
}

.script-mark {
  display: block;
  margin-top: 20px;
  color: white;
  font-size: clamp(26px, 3.3vw, 40px);
  font-weight: 700;
  font-style: italic;
}

.public-search {
  margin-top: 30px;
  max-width: 720px;
  padding: 22px;
  border-radius: 8px;
  background: white;
  color: var(--blue-950);
  box-shadow: 0 20px 50px rgba(2, 16, 44, 0.2);
}

.public-search label {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 900;
}

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

.public-search-row input,
.public-search-row select {
  min-height: 54px;
}

.popular-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.popular-pills button {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--blue-950);
  background: #eef2f7;
  font-weight: 800;
  cursor: pointer;
}

.public-hero-media {
  position: relative;
  min-height: 560px;
}

.public-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.public-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 20px 0 24px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.public-benefits article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid var(--line);
}

.public-benefits article:last-child {
  border-right: 0;
}

.public-benefits span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #075ce6;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.public-benefits strong {
  display: block;
  color: var(--blue-950);
}

.public-benefits p {
  grid-column: 2;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.public-trust-band {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 26px 32px;
  border-radius: 8px;
  background: linear-gradient(90deg, #eef7ff, #f8fbff);
  border: 1px solid #dceaff;
}

.public-trust-band h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 24px;
}

.public-trust-band h3 span,
.travel-smart-band h2 span {
  color: #ff6b24;
}

.public-trust-band article {
  padding-left: 18px;
  border-left: 1px solid #cfddf0;
}

.public-trust-band strong {
  display: block;
  color: var(--blue-950);
  font-size: 28px;
}

.public-trust-band span {
  color: var(--muted);
}

.travel-smart-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(235, 246, 255, 0.96), rgba(219, 235, 255, 0.88)),
    url("assets/public-hero-traveler.png") right center / auto 120% no-repeat;
  border: 1px solid #dceaff;
}

.travel-smart-band h2 {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--blue-950);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.travel-smart-band ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: var(--blue-950);
}

.travel-smart-band li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 50%;
  color: white;
  background: #12a66a;
  font-size: 13px;
  font-weight: 900;
}

.travel-smart-band aside {
  padding: 22px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.travel-smart-band aside strong {
  display: block;
  color: var(--blue-950);
  font-size: 18px;
}

.travel-smart-band aside p {
  color: var(--muted);
  line-height: 1.45;
}

.public-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 32px 0 18px;
}

.public-section-title.compact {
  margin-top: 0;
}

.public-section-title h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(22px, 2.4vw, 30px);
}

.link-button {
  border: 0;
  background: transparent;
  color: var(--blue-700);
  font-weight: 800;
  cursor: pointer;
}

.link-button:hover {
  color: var(--orange);
}

.public-pack-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.32fr);
  gap: 24px;
  margin-top: 30px;
  align-items: stretch;
}

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

.pack-card {
  min-height: 260px;
  border-radius: 8px;
  padding: 24px;
  color: white;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.pack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background: radial-gradient(circle at 76% 48%, rgba(255, 255, 255, 0.65), transparent 22%);
}

.pack-card > * {
  position: relative;
  z-index: 1;
}

.pack-card-africa {
  background:
    linear-gradient(135deg, rgba(70, 55, 196, 0.96), rgba(65, 48, 148, 0.96)),
    url("assets/africa-plan.png") center / cover no-repeat;
}

.pack-card-global {
  background:
    linear-gradient(135deg, rgba(5, 68, 134, 0.96), rgba(3, 35, 83, 0.96)),
    url("assets/europe-plan.png") center / cover no-repeat;
}

.pack-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.pack-card p,
.pack-card li,
.pack-card span {
  color: rgba(255, 255, 255, 0.9);
}

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

.pack-card div {
  display: flex;
  align-items: end;
  gap: 12px;
}

.pack-card strong {
  font-size: 30px;
  line-height: 1;
}

.light-button {
  margin-left: auto;
  border: 0;
  border-radius: 8px;
  background: white;
  color: var(--blue-900);
  font-weight: 900;
  padding: 12px 22px;
  cursor: pointer;
}

.public-assurance {
  display: grid;
  gap: 12px;
}

.public-assurance article,
.payment-box {
  border-radius: 8px;
  background: #fff8ea;
  border: 1px solid #f1eadc;
  padding: 16px;
}

.public-assurance article strong,
.payment-box strong {
  display: block;
  color: var(--blue-950);
}

.public-assurance article span,
.payment-box small {
  color: var(--muted);
  font-size: 13px;
}

.payment-box {
  background: #f0f7ff;
  border-color: #dbeaff;
}

.payment-box div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.payment-box div span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 7px;
  background: white;
  color: var(--blue-900);
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.continent-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.continent-card {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  color: var(--blue-950);
  cursor: pointer;
}

.continent-card span {
  width: 48px;
  height: 32px;
  border-radius: 40% 55% 46% 52%;
  background: var(--blue-600);
}

.continent-card small {
  color: var(--muted);
}

.continent-card.africa span {
  background: #4caf68;
}

.continent-card.europe span {
  background: #297eea;
}

.continent-card.asia span {
  background: #ff754f;
}

.continent-card.north-america span {
  background: #42b9b1;
}

.continent-card.south-america span {
  background: #f56875;
}

.continent-card.oceania span {
  background: #7663d9;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 28px;
}

.pitch-hero {
  min-height: 520px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 122, 26, 0.2), transparent 18%),
    radial-gradient(circle at 88% 78%, rgba(18, 166, 106, 0.2), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 255, 0.74)),
    url("assets/pitch-hero.png") center / cover,
    linear-gradient(135deg, #ffffff, #dbeaff);
  box-shadow: var(--shadow);
  display: grid;
  align-content: center;
}

.pitch-hero h2 {
  max-width: 980px;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.98;
}

.pitch-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.pitch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

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

.pitch-grid article,
.revenue-grid article,
.roadmap-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease;
}

.pitch-grid article:hover,
.revenue-grid article:hover,
.roadmap-grid article:hover,
.plan-card:hover,
.destination-card:hover,
.region-card:hover {
  border-color: rgba(7, 92, 230, 0.32);
  transform: translateY(-2px);
}

.pitch-grid h3 {
  margin: 0 0 10px;
  color: var(--blue-950);
  font-size: 22px;
}

.pitch-grid p,
.revenue-grid span,
.roadmap-grid span,
.ops-story p {
  color: var(--muted);
  line-height: 1.6;
}

.pitch-section-head {
  margin-top: 34px;
}

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

.revenue-grid strong,
.roadmap-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-800);
  font-size: 20px;
}

.ops-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  margin-top: 26px;
  padding: clamp(22px, 4vw, 40px);
  border-radius: 8px;
  color: white;
  background: var(--blue-950);
}

.ops-story h2,
.roadmap-band h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(28px, 4vw, 48px);
}

.ops-story .eyebrow {
  color: #9fc1ff;
}

.ops-checklist {
  display: grid;
  gap: 10px;
}

.ops-checklist span {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: #dce9ff;
  font-weight: 800;
}

.roadmap-band {
  margin-top: 26px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

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

.hero-copy,
.phone-preview,
.checkout-summary,
.order-panel,
.qr-card,
.activation-card,
.usage-card,
.ticket-panel,
.admin-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: clamp(24px, 4vw, 44px);
  min-height: 390px;
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 122, 26, 0.24), transparent 18%),
    radial-gradient(circle at 88% 75%, rgba(18, 166, 106, 0.22), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 255, 0.78)),
    url("assets/home-hero.png") center / cover,
    linear-gradient(135deg, #ffffff, #d9e8ff);
}

.hero-copy h2 {
  max-width: 670px;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 0.98;
}

.hero-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.search-panel {
  margin-top: 28px;
  padding: 14px;
  max-width: 620px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}

.search-panel label,
.checkout-form label,
.checkout-form legend {
  display: block;
  color: var(--blue-950);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 8px;
}

.search-panel div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

input,
select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: white;
}

.phone-preview {
  padding: 24px;
  background: linear-gradient(180deg, #f7fbff, #dceaff);
  display: grid;
  place-items: center;
}

.phone-shell {
  width: min(260px, 100%);
  min-height: 480px;
  border-radius: 32px;
  padding: 20px;
  background: var(--blue-950);
  box-shadow: 0 24px 55px rgba(2, 16, 44, 0.35);
  color: white;
}

.phone-header {
  text-align: center;
  font-weight: 900;
  color: white;
  margin-bottom: 18px;
}

.phone-card {
  padding: 16px;
  border-radius: 16px;
  background: white;
  color: var(--blue-950);
  margin-bottom: 12px;
  display: grid;
  gap: 4px;
}

.phone-card.blue {
  background: linear-gradient(135deg, var(--blue-700), #28a5ff);
  color: white;
}

.phone-card span {
  color: inherit;
  opacity: 0.76;
}

.mini-map {
  min-height: 170px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 42%, rgba(18, 166, 106, 0.85), transparent 13%),
    radial-gradient(circle at 68% 28%, rgba(255, 122, 26, 0.88), transparent 10%),
    radial-gradient(circle at 56% 72%, rgba(19, 109, 245, 0.92), transparent 12%),
    linear-gradient(135deg, #113d88, #0f244a);
}

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

.destination-card,
.plan-card,
.metric-card,
.metrics-grid article,
.kpi-card,
.rate-card,
.risk-card,
.permission-chip,
.ticket,
.timeline-item,
.audit-item {
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
}

.destination-card,
.plan-card,
.metrics-grid article,
.kpi-card,
.rate-card,
.risk-card,
.ticket,
.timeline-item,
.audit-item {
  padding: 16px;
}

.plan-card,
.destination-card,
.region-card,
.faq-card,
.legal-grid article,
.qr-card,
.activation-card,
.usage-card {
  box-shadow: var(--shadow-soft);
}

.destination-card {
  min-height: 190px;
  display: grid;
  align-content: end;
  color: white;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

#popular-destinations {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.destination-asia {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 122, 26, 0.75), transparent 14%),
    linear-gradient(135deg, #0b3f9c, #28a5ff);
}

.destination-europe {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.48), transparent 14%),
    linear-gradient(135deg, #071a3c, #075ce6);
}

.destination-africa {
  background:
    radial-gradient(circle at 70% 26%, rgba(18, 166, 106, 0.72), transparent 14%),
    linear-gradient(135deg, #08265e, #12a66a);
}

.destination-america {
  background:
    radial-gradient(circle at 72% 24%, rgba(245, 165, 36, 0.72), transparent 14%),
    linear-gradient(135deg, #071a3c, #7a5cff);
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(5, 16, 42, 0.78));
}

.destination-card > * {
  position: relative;
}

.destination-card h3,
.plan-card h3,
.checkout-summary h3,
.order-panel h3,
.admin-panel h3 {
  margin: 0 0 8px;
}

.destination-card h3 {
  font-size: 20px;
  line-height: 1.05;
}

.destination-card p,
.plan-card p {
  margin: 0;
}

.destination-card strong {
  margin-top: 12px;
  color: white;
  font-size: 20px;
}

.destination-card button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: var(--blue-800);
  background: white;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.instant-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  color: #0b714d;
  background: #ecfff5;
  font-size: 12px;
  font-weight: 900;
}

.metrics-grid {
  margin-top: 26px;
}

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

.journey-strip article {
  min-height: 128px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.journey-strip span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 50%;
  color: white;
  background: var(--blue-700);
  font-weight: 900;
}

.journey-strip strong {
  display: block;
  color: var(--blue-950);
}

.journey-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.metrics-grid article {
  min-height: 112px;
  display: grid;
  gap: 8px;
}

.metrics-grid strong,
.kpi-card strong {
  color: var(--blue-800);
  font-size: 30px;
}

.metrics-grid span,
.kpi-card span,
.muted,
.plan-card p,
.destination-card p,
.ticket p,
.audit-item p {
  color: var(--muted);
}

.segmented {
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
}

.segmented button {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
}

.segmented button.active {
  color: white;
  background: var(--blue-700);
}

.auth-grid,
.catalog-layout,
.checkout-layout,
.plan-detail-layout,
.result-layout,
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
}

.plan-detail-hero,
.result-card {
  min-height: 360px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 28%, rgba(19, 109, 245, 0.18), transparent 18%),
    radial-gradient(circle at 86% 72%, rgba(255, 122, 26, 0.18), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 255, 0.82)),
    url("assets/activation-flow.png") center / cover,
    linear-gradient(135deg, #ffffff, #e7f0ff);
  box-shadow: var(--shadow);
}

.plan-detail-hero h3,
.result-card h3 {
  max-width: 720px;
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.plan-detail-hero p,
.result-card p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.plan-detail-stats,
.result-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.plan-detail-stats article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.plan-detail-stats strong {
  display: block;
  color: var(--blue-800);
  font-size: 24px;
}

.plan-detail-stats span {
  color: var(--muted);
}

.result-card.success {
  border-color: rgba(18, 166, 106, 0.35);
}

.result-card.warning {
  border-color: rgba(245, 165, 36, 0.55);
}

.result-card.danger {
  border-color: rgba(223, 58, 69, 0.4);
}

.result-badges {
  display: flex;
  flex-wrap: wrap;
}

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

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

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

.region-card,
.faq-card,
.legal-grid article {
  min-height: 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.region-card {
  display: grid;
  align-content: end;
  color: white;
  overflow: hidden;
}

.region-card .eyebrow,
.region-card p,
.region-card h3,
.region-card strong {
  color: white;
  position: relative;
}

.region-card h3,
.faq-card h3,
.legal-grid h3 {
  margin: 0 0 10px;
  color: var(--blue-950);
}

.region-card h3 {
  color: white;
  font-size: 26px;
}

.region-card p,
.faq-card p,
.legal-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.region-card p {
  color: rgba(255, 255, 255, 0.86);
}

.compat-layout,
.activation-layout,
.refund-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

textarea {
  width: 100%;
  min-height: 130px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  resize: vertical;
}

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

.plan-card {
  display: grid;
  gap: 12px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease;
}

.plan-card:hover,
.plan-card.selected {
  transform: translateY(-2px);
  border-color: var(--blue-600);
}

.plan-card.selected {
  box-shadow: 0 0 0 3px rgba(7, 92, 230, 0.12), var(--shadow-soft);
}

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

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: 12px;
  font-weight: 800;
}

.price {
  color: var(--blue-950);
  font-size: 26px;
  font-weight: 900;
}

.checkout-summary,
.order-panel,
.ticket-panel {
  padding: 18px;
  position: sticky;
  top: 24px;
}

dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  margin: 16px 0;
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 900;
  color: var(--blue-950);
  text-align: right;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.step {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  font-size: 13px;
  font-weight: 800;
}

.step.done {
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.step.warn {
  color: #593900;
  background: #fff3d8;
  border-color: #ffd278;
}

.checkout-form {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.radio-card {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.trust-list {
  display: grid;
  gap: 8px;
}

.trust-list span {
  padding: 10px;
  border-radius: 8px;
  background: #eef9f4;
  color: #087449;
  font-weight: 800;
  font-size: 13px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.qr-card,
.activation-card,
.usage-card {
  padding: 18px;
}

.qr-code {
  width: 210px;
  max-width: 100%;
  aspect-ratio: 1;
  margin: 18px auto;
  border: 10px solid white;
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow);
  background:
    linear-gradient(90deg, #111 10px, transparent 10px) 0 0 / 28px 28px,
    linear-gradient(#111 10px, transparent 10px) 0 0 / 28px 28px,
    linear-gradient(90deg, transparent 16px, #111 16px 22px, transparent 22px) 0 0 / 42px 42px,
    #fff;
}

.activation-card ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.state-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: center;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.state-banner p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-700);
}

.chat-window {
  height: 460px;
  overflow: auto;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.message {
  max-width: 78%;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--blue-100);
}

.message.user {
  justify-self: end;
  color: white;
  background: var(--blue-700);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 10px;
}

.ticket {
  margin-bottom: 10px;
}

.ticket strong {
  display: block;
  color: var(--blue-950);
}

.admin-shell {
  padding: 20px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(19, 109, 245, 0.22), transparent 24%),
    var(--blue-950);
  color: white;
}

.admin-shell h2,
.admin-shell h3 {
  color: white;
}

.admin-heading {
  margin-bottom: 16px;
}

.admin-heading .eyebrow {
  color: #8db8ff;
}

#role-select {
  max-width: 260px;
  color: white;
  background: var(--dark-panel);
  border-color: rgba(255, 255, 255, 0.16);
}

.admin-kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.kpi-card,
.admin-panel {
  color: white;
  background: var(--dark-panel);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.kpi-card span,
.admin-panel .muted,
.admin-panel p,
.audit-item p {
  color: #a9bee5;
}

.kpi-card strong {
  color: white;
}

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

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

.ops-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 160ms ease, border-color 160ms ease;
}

.ops-row:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(141, 184, 255, 0.28);
}

.ops-row strong {
  color: white;
}

.ops-row span,
.ops-row em {
  color: #a9bee5;
  font-style: normal;
}

.admin-panel {
  padding: 16px;
  min-width: 0;
  transition: border-color 160ms ease, background 160ms ease;
}

.admin-panel:hover {
  border-color: rgba(141, 184, 255, 0.28);
  background: #0d244f;
}

.light-panel {
  color: var(--ink);
  background: white;
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.light-panel h3 {
  color: var(--blue-950);
}

.light-panel p,
.light-panel .muted {
  color: var(--muted);
}

.wide-panel {
  grid-column: 1 / -1;
}

.table-wrap {
  overflow: auto;
}

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

th,
td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

th {
  color: #95b8f4;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.badge.green {
  color: #092e20;
  background: #70e3b1;
}

.badge.yellow {
  color: #402900;
  background: #ffd278;
}

.badge.red {
  color: #fff;
  background: var(--red);
}

.badge.blue {
  color: white;
  background: var(--blue-600);
}

.rate-card,
.risk-card,
.permission-chip,
.audit-item {
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.11);
  margin-bottom: 10px;
}

.permission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.permission-chip {
  padding: 7px 10px;
  font-size: 12px;
}

.admin-action {
  width: 100%;
  min-height: 38px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: white;
  background: var(--blue-600);
  font-weight: 900;
}

.admin-action.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.admin-action[data-permission-state="blocked"] {
  color: #b8c8e6;
  background: rgba(255, 255, 255, 0.04);
  border-style: dashed;
}

.customer-action {
  margin-bottom: 10px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 8px;
  color: white;
  background: var(--blue-950);
  box-shadow: var(--shadow);
  transform: translateY(140%);
  transition: transform 180ms ease;
  z-index: 10;
}

.toast.show {
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .side-nav {
    position: static;
    height: auto;
    padding: 16px;
  }

  .side-nav nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .nav-group-label {
    grid-column: 1 / -1;
    margin-top: 8px;
  }

  .side-card {
    display: none;
  }

  .hero-grid,
  .public-hero,
  .travel-smart-band,
  .ops-story,
  .auth-grid,
  .compat-layout,
  .activation-layout,
  .refund-layout,
  .plan-detail-layout,
  .result-layout,
  .orders-layout,
  .profile-grid,
  .wallet-grid,
  .catalog-layout,
  .checkout-layout,
  .support-layout,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary,
  .order-panel,
  .ticket-panel {
    position: static;
  }

  .card-grid,
  .plan-grid,
  .region-grid,
  .faq-grid,
  .legal-grid,
  .pitch-grid,
  .revenue-grid,
  .roadmap-grid,
  .journey-strip,
  .wallet-grid,
  .metrics-grid,
  .admin-kpis,
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .public-hero-media {
    min-height: 420px;
  }

  .public-benefits,
  #popular-destinations,
  .public-trust-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-benefits article {
    border-right: 0;
    padding: 14px;
  }
}

@media (max-width: 700px) {
  main {
    padding: 16px;
  }

  .topbar,
  .section-head,
  .admin-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .top-actions,
  .segmented {
    width: 100%;
    overflow: auto;
  }

  .public-hero {
    min-height: 0;
  }

  .public-hero-copy {
    padding: 24px;
  }

  .public-hero-copy h2 {
    font-size: 42px;
  }

  .public-hero-copy p {
    font-size: 16px;
  }

  .public-search-row,
  .public-benefits,
  #popular-destinations,
  .public-trust-band,
  .travel-smart-band {
    grid-template-columns: 1fr;
  }

  .public-hero-media {
    min-height: 330px;
  }

  .public-benefits article,
  .public-trust-band article {
    border-left: 0;
    padding-left: 0;
  }

  .travel-smart-band {
    background: #eaf5ff;
  }

  .side-nav nav,
  .card-grid,
  .plan-grid,
  .metrics-grid,
  .admin-kpis,
  .admin-grid,
  .form-row,
  .flow-steps,
  fieldset {
    grid-template-columns: 1fr;
  }

  .nav-link {
    min-height: 40px;
  }

  .demo-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .pitch-hero,
  .hero-copy {
    min-height: auto;
  }

  .hero-copy {
    min-height: 520px;
  }

  .search-panel div,
  .chat-form {
    grid-template-columns: 1fr;
  }
}

/* Public landing polish based on the approved home mockups. */
#route-home {
  max-width: 1440px;
  margin: 0 auto;
}

.public-hero {
  grid-template-columns: minmax(420px, 0.58fr) minmax(440px, 0.42fr);
  min-height: 496px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 54% 30%, rgba(255, 255, 255, 0.16), transparent 12%),
    linear-gradient(90deg, #075ce6 0%, #075ce6 42%, #d8ebff 100%);
}

.public-hero-copy {
  padding: 48px 42px 28px;
  align-content: start;
}

.public-hero-copy h2 {
  max-width: 560px;
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.02;
}

.public-hero-copy p {
  max-width: 520px;
  margin-top: 16px;
  font-size: 20px;
}

.script-mark {
  margin-top: 18px;
  font-size: 28px;
}

.public-search {
  max-width: 700px;
  margin-top: 28px;
  padding: 22px;
  border-radius: 8px;
}

.public-search label {
  font-size: 18px;
}

.public-search-row {
  grid-template-columns: minmax(220px, 1fr) 150px 112px;
}

.public-search input,
.public-search select {
  min-height: 50px;
}

.public-hero-media {
  min-height: 496px;
}

.public-hero-media img {
  object-position: center;
}

.public-benefits {
  padding: 18px 20px 22px;
  margin-bottom: 26px;
  background: white;
}

.public-benefits span {
  background: #0b66df;
  box-shadow: 0 10px 22px rgba(7, 92, 230, 0.18);
}

.public-section-title {
  padding: 0 12px;
}

#popular-destinations {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.public-destination-card {
  min-height: 330px;
  padding: 0;
  align-content: stretch;
  color: var(--blue-950);
  background: white;
  border: 1px solid var(--line);
  cursor: pointer;
}

.public-destination-card::before {
  display: none;
}

.public-destination-card .destination-photo {
  height: 168px;
  background-size: cover;
  background-position: center;
}

.public-destination-card .destination-body {
  display: grid;
  align-content: start;
  min-height: 160px;
  padding: 18px;
}

.public-destination-card h3 {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0 0 34px;
  color: var(--blue-950);
  font-size: 16px;
  line-height: 1.18;
}

.public-destination-card h3 span {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 900;
}

.public-destination-card p {
  color: var(--muted);
  margin: 0 0 2px;
}

.public-destination-card strong {
  color: var(--blue-700);
  margin-top: 0;
  font-size: 20px;
}

.public-destination-card button {
  right: -18px;
  top: 50%;
  bottom: auto;
  width: 54px;
  height: 54px;
  color: var(--blue-700);
  box-shadow: var(--shadow-soft);
}

.public-trust-band {
  grid-template-columns: minmax(220px, 1.05fr) repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 58px 12px 34px;
  padding: 30px 34px;
  background: linear-gradient(90deg, #f0f8ff, #f7fbff);
}

.public-trust-band article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  border-left: 1px solid #d7e4f4;
  padding-left: 24px;
}

.public-trust-band .trust-icon {
  grid-row: span 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #58aaf4;
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.public-trust-band article:nth-of-type(2) .trust-icon {
  background: #43c7a5;
}

.public-trust-band article:nth-of-type(3) .trust-icon {
  background: #397fe8;
}

.public-trust-band article:nth-of-type(4) .trust-icon {
  background: #ff8a3d;
}

.public-trust-band strong {
  font-size: 26px;
}

.public-trust-band small {
  color: var(--muted);
}

.travel-smart-band {
  grid-template-columns: minmax(0, 1fr) 220px;
  min-height: 350px;
  margin: 34px 12px 0;
  background:
    linear-gradient(90deg, rgba(230, 244, 255, 0.97), rgba(211, 230, 255, 0.76)),
    url("assets/public-hero-traveler.png") center right / auto 110% no-repeat;
}

.travel-smart-band h2 {
  max-width: 470px;
  font-size: clamp(30px, 3.2vw, 44px);
}

.travel-smart-band aside {
  align-self: center;
}

@media (max-width: 1100px) {
  .public-hero,
  .public-pack-layout,
  .travel-smart-band {
    grid-template-columns: 1fr;
  }

  .public-hero-media {
    min-height: 360px;
  }

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

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

  .public-trust-band h3 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .public-hero-copy {
    padding: 28px 20px;
  }

  .public-search-row,
  .pack-grid,
  #popular-destinations,
  .continent-grid,
  .public-trust-band {
    grid-template-columns: 1fr;
  }

  .public-destination-card button {
    right: 14px;
  }

  .public-benefits article,
  .public-trust-band article {
    border-left: 0;
    border-right: 0;
    padding-left: 0;
  }

  .travel-smart-band {
    background: #eaf5ff;
  }
}

/* Second-pass visual refinement from es1/es2/es4/es7. */
.public-hero {
  grid-template-columns: minmax(430px, 0.61fr) minmax(390px, 0.39fr);
  min-height: 470px;
}

.public-hero-copy {
  padding: 44px 42px 24px;
}

.public-hero-media {
  min-height: 470px;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.public-hero-media img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  object-position: center bottom;
}

.public-search {
  margin-top: 24px;
}

.public-benefits {
  padding-top: 14px;
}

.public-destination-card .destination-photo {
  height: 176px;
  background-size: cover;
  background-position: center;
}

.public-destination-card {
  min-height: 342px;
}

.public-pack-layout {
  gap: 26px;
}

.pack-grid {
  gap: 18px;
}

.pack-card {
  min-height: 300px;
  padding: 28px;
  border-radius: 8px;
  background-blend-mode: normal;
}

.pack-card::after {
  opacity: 1;
  background-repeat: no-repeat;
  background-size: auto 82%;
  background-position: right 22px center;
}

.pack-card-africa {
  background: linear-gradient(135deg, #5941ce, #392999);
}

.pack-card-africa::after {
  background-image:
    radial-gradient(circle at 74% 42%, rgba(255, 203, 92, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 62%, rgba(255, 203, 92, 0.95) 0 2px, transparent 3px),
    url("assets/continent-africa.png");
  filter: sepia(0.45) saturate(1.6) hue-rotate(350deg);
}

.pack-card-global {
  background: linear-gradient(135deg, #075caa, #013864);
}

.pack-card-global::after {
  background-image:
    radial-gradient(circle at 74% 54%, rgba(135, 199, 255, 0.8), transparent 28%),
    url("assets/europe-plan.png");
  background-size: auto 92%, auto 120%;
  background-position: right 18px bottom -18px, right -80px center;
}

.pack-card h3 {
  font-size: 25px;
}

.pack-card p {
  max-width: 260px;
  font-size: 16px;
  line-height: 1.45;
}

.pack-card li {
  font-size: 15px;
}

.pack-card div {
  max-width: 280px;
}

.public-assurance article {
  min-height: 68px;
  display: grid;
  align-content: center;
  padding-left: 72px;
  position: relative;
}

.public-assurance article::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-radius: 10px;
  background: #eaf3ff;
  box-shadow: inset 0 0 0 1px #c8defa;
}

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

.payment-box div span:nth-child(4),
.payment-box div span:nth-child(5) {
  grid-column: span 1;
}

.continent-card {
  min-height: 154px;
  gap: 7px;
}

.continent-card img {
  width: 88px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.continent-card span {
  display: none;
}

.travel-smart-band {
  min-height: 330px;
  padding: 38px 32px;
  grid-template-columns: minmax(320px, 0.42fr) minmax(320px, 0.58fr);
  background:
    linear-gradient(90deg, rgba(233, 246, 255, 0.98), rgba(219, 235, 255, 0.72)),
    url("assets/travel-smart-visual.png") right center / auto 100% no-repeat;
}

.travel-smart-band aside {
  justify-self: end;
  width: 190px;
  margin-right: 18px;
}

@media (max-width: 1100px) {
  .public-hero,
  .travel-smart-band {
    grid-template-columns: 1fr;
  }

  .public-hero-media {
    min-height: 330px;
  }

  .travel-smart-band {
    background:
      linear-gradient(90deg, rgba(233, 246, 255, 0.98), rgba(219, 235, 255, 0.84)),
      url("assets/travel-smart-visual.png") right bottom / auto 72% no-repeat;
  }
}

@media (max-width: 760px) {
  .public-hero-media img {
    width: 100%;
    height: 100%;
  }

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

  .travel-smart-band {
    background: #eaf5ff;
  }

  .travel-smart-band aside {
    justify-self: stretch;
    width: auto;
    margin-right: 0;
  }
}

/* Pristine pack and travel-smart cleanup from es3/es4 references. */
.public-pack-layout {
  align-items: start;
  gap: 26px;
  margin: 28px 12px 0;
}

.pack-grid {
  gap: 18px;
}

.pack-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42%;
  align-items: center;
  min-height: 298px;
  padding: 26px 24px;
  isolation: isolate;
}

.pack-card::after {
  display: none;
}

.pack-card-africa {
  background: linear-gradient(135deg, #5d46d6 0%, #392991 100%);
}

.pack-card-global {
  background: linear-gradient(135deg, #085b9f 0%, #02355f 100%);
}

.pack-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
}

.pack-card img {
  width: 100%;
  max-height: 230px;
  object-fit: contain;
  justify-self: end;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
}

.pack-card h3 {
  margin: 0 0 12px;
  font-size: 25px;
}

.pack-card p {
  max-width: 260px;
  margin: 0;
}

.pack-card ul {
  margin: 20px 0 24px;
}

.pack-card li {
  list-style: none;
  position: relative;
  padding-left: 22px;
}

.pack-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 3px rgba(8, 91, 159, 0.22);
}

.pack-card-action {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: end;
  gap: 12px;
  max-width: 300px;
}

.pack-card-action span {
  grid-column: 1 / 2;
  align-self: end;
}

.pack-card-action strong {
  grid-column: 1 / 2;
  font-size: 30px;
}

.pack-card-action .light-button {
  grid-column: 2 / 4;
  margin-left: 0;
  min-width: 136px;
  align-self: center;
}

.public-assurance {
  gap: 14px;
}

.public-assurance article,
.payment-box {
  border-radius: 8px;
  background: #fff8ec;
  border: 1px solid #f0e4d1;
}

.payment-box {
  background: #eef7ff;
  border-color: #d8e9fb;
}

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

.payment-box div span {
  min-height: 42px;
}

.travel-smart-band {
  grid-template-columns: minmax(300px, 0.36fr) minmax(320px, 0.42fr) minmax(190px, 0.22fr);
  gap: 22px;
  align-items: center;
  min-height: 314px;
  padding: 32px 36px;
  background: linear-gradient(90deg, #eaf6ff 0%, #d9ebff 100%);
  overflow: hidden;
}

.travel-smart-device {
  min-height: 300px;
  align-self: stretch;
  background: url("assets/travel-smart-device.png") center bottom / contain no-repeat;
}

.travel-smart-band h2 {
  max-width: 460px;
  margin-bottom: 18px;
}

.travel-smart-band ul {
  margin-bottom: 22px;
}

.travel-smart-band aside {
  justify-self: center;
  width: 190px;
  margin-right: 0;
}

@media (max-width: 1100px) {
  .pack-card {
    grid-template-columns: minmax(0, 1fr) 38%;
  }

  .travel-smart-band {
    grid-template-columns: 1fr;
  }

  .travel-smart-device {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .pack-card {
    grid-template-columns: 1fr;
  }

  .pack-card img {
    max-height: 180px;
    justify-self: center;
  }

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

  .pack-card-action .light-button,
  .pack-card-action strong,
  .pack-card-action span {
    grid-column: auto;
  }

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

/* Inner page image polish: every operational route now has a purposeful visual anchor. */
.section-head-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(260px, 34%);
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(236, 246, 255, 0.86));
  box-shadow: var(--shadow-soft);
}

.section-head-visual > div:first-child {
  min-width: 0;
}

.section-head-visual .top-actions,
.section-head-visual .admin-heading-actions,
.section-head-visual > .primary-button,
.section-head-visual > .ghost-button,
.section-head-visual > button {
  justify-self: end;
}

.route-visual {
  width: 100%;
  min-height: 168px;
  border: 1px solid rgba(207, 224, 244, 0.9);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.checkout-route-visual {
  grid-column: 1 / -1;
  min-height: 230px;
  margin-bottom: 2px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-soft);
}

.plan-card {
  padding: 0;
  overflow: hidden;
}

.plan-card-visual {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #eaf5ff;
}

.plan-card-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.region-card {
  min-height: 300px;
  padding: 0;
  align-content: stretch;
  grid-template-rows: 132px minmax(0, 1fr);
  background: white;
  color: var(--blue-950);
}

.region-card::after {
  display: none;
}

.region-card-visual {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
  background: linear-gradient(135deg, #f5faff, #ffffff);
}

.region-card-copy {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px;
  color: var(--blue-950);
}

.region-card .region-card-copy .eyebrow,
.region-card .region-card-copy p,
.region-card .region-card-copy h3,
.region-card .region-card-copy strong {
  color: inherit;
}

.region-card .region-card-copy p {
  color: var(--muted);
}

.region-card .region-card-copy h3 {
  color: var(--blue-950);
  font-size: 24px;
}

.region-card .region-card-copy strong {
  color: var(--blue-800);
  font-size: 20px;
}

@media (max-width: 1120px) {
  .section-head-visual {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-head-visual .top-actions,
  .section-head-visual .admin-heading-actions,
  .section-head-visual > .primary-button,
  .section-head-visual > .ghost-button,
  .section-head-visual > button {
    justify-self: start;
  }

  .route-visual {
    min-height: 220px;
  }
}

@media (max-width: 700px) {
  .section-head-visual {
    padding: 14px;
  }

  .route-visual {
    min-height: 160px;
  }

  .plan-card-visual {
    height: 140px;
  }
}
