/* Baseline the design assumes.
 *
 * In the source project this page rendered on top of Tailwind's preflight,
 * which normalises images with `height: auto`. Without it, the width/height
 * attributes on <img> act as presentational hints and pin each image to its
 * intrinsic height, so rules like `.overview-card img { aspect-ratio }` never
 * get to constrain the box. This restores just that rule. */
img, video { max-width: 100%; height: auto; }

/* The design also inherited its `.container` max-widths from Tailwind's
 * container utility; it only declares its own at >= 1024px (1200px, below).
 * Without these, everything between 640px and 1023px runs full-bleed and the
 * grids get wider - and therefore taller - than intended. Declared here first
 * so the 1200px rule further down still wins at >= 1024px, exactly as the
 * unlayered page styles outrank Tailwind's utility layer in the source app. */
@media (min-width: 640px)  { .container { max-width: 640px; } }
@media (min-width: 768px)  { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
@media (min-width: 1536px) { .container { max-width: 1536px; } }

  :root {
    --royal-deep: #0b2350;
    --royal: #1d52a2;
    --royal-mid: #0a6ae6;
    --royal-soft: #55a7f4;
    --gold: #2993fa;
    --gold-light: #a4c9f0;
    --gold-glow: rgba(41, 147, 250, 0.35);
    --ivory: #f4f6fa;
    --ink: #12233f;
    --muted: #5a6e99;
    --line: rgba(29, 82, 162, 0.16);
    --grad-royal: linear-gradient(150deg, #0b2350 0%, #1d52a2 100%);
    --grad-gold: linear-gradient(100deg, #0a6ae6 0%, #55a7f4 55%, #2993fa 100%);
    --shadow-lux: 0 24px 60px -28px rgba(11, 35, 80, 0.5);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { font-family: 'Jost', system-ui, sans-serif; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

  body {
    background-color: var(--ivory);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

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

  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    color: var(--royal-deep);
    letter-spacing: -0.015em;
  }

  h1 { font-size: clamp(2.1rem, 7vw, 3.6rem); line-height: 1.08; }
  h2 { font-size: clamp(1.75rem, 5vw, 2.75rem); line-height: 1.15; }
  h3 { font-size: clamp(1.35rem, 3.4vw, 1.8rem); line-height: 1.25; }

  .container {
    width: 100%;
    margin: 0 auto;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  @media (min-width: 640px) { .container { padding-left: 1.75rem; padding-right: 1.75rem; } }
  @media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; max-width: 1200px; } }

  /* Header */
  header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 35, 80, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(41, 147, 250, 0.35);
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
  }

  .logo-section { display: flex; align-items: center; gap: 0.7rem; }

  .logo-mark {
    width: 2.75rem; height: 2.75rem;
    border-radius: 0.7rem;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(164, 201, 240, 0.45);
  }

  .logo-mark-img {
    width: 2.6rem; height: 2.6rem;
    border-radius: 0.6rem;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
  }

  .promo-note {
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    margin: 0 0 1.4rem;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(11,35,80,0.18);
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1d52a2;
  }
  .promo-note strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #0b2350;
  }



  .logo-text h1 {
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.16em;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
  }

  .logo-text p {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    color: var(--gold-light);
    margin: 0;
    font-weight: 500;
  }

  .register-link { color: var(--gold-light); text-decoration: none; font-weight: 600; cursor: pointer; }
  .register-link:hover { color: #fff; }

  /* Hero */
  .hero {
    position: relative;
    background:
      linear-gradient(rgba(11, 35, 80, 0.72), rgba(11, 35, 80, 0.82)),
      url('../images/hero-bg-web.jpg') center/cover no-repeat;
    padding: 3.5rem 0 3rem;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
  }
  @media (min-width: 768px) { .hero { padding: 6.5rem 0 5.5rem; background-attachment: fixed; } }

  .hero:after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
    background: var(--grad-gold);
  }

  .hero-content { max-width: 52rem; margin: 0 auto; position: relative; z-index: 10; }

  .badge {
    display: inline-block;
    margin-bottom: 1.15rem;
    padding: 0.5rem 1.1rem;
    background: var(--grad-gold);
    border-radius: 9999px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--royal-deep);
    box-shadow: 0 10px 30px -12px var(--gold-glow);
  }

  .hero h1 { color: #ffffff; margin-bottom: 1rem; text-shadow: 0 6px 24px rgba(0,0,0,0.45); }
  .hero h1 .gradient {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
  }

  .hero-description {
    font-size: clamp(1rem, 2.4vw, 1.15rem);
    color: rgba(255,255,255,0.88);
    margin: 0 auto 1.5rem;
    max-width: 38rem;
  }

  .pricing-section {
    display: flex; justify-content: center; align-items: stretch;
    gap: 0.9rem; margin-bottom: 1.75rem; flex-wrap: wrap;
  }

  .pricing-item {
    text-align: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(41, 147, 250,0.4);
    border-radius: 1rem;
    padding: 1rem 1.4rem;
    min-width: 10rem;
    flex: 1 1 12rem;
    max-width: 20rem;
    backdrop-filter: blur(6px);
  }

  .pricing-label {
    font-size: 0.65rem; letter-spacing: 0.24em; text-transform: uppercase;
    color: rgba(255,255,255,0.75);
  }

  .pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 6vw, 2.3rem);
    font-weight: 700;
    margin: 0.35rem 0;
    line-height: 1.1;
    color: #ffffff;
  }
  .pricing-amount.save { color: var(--gold-light); }
  .pricing-amount.price { color: #ffffff; }
  .pricing-subtext { font-size: 0.72rem; color: rgba(255,255,255,0.72); }

  .destinations { margin-bottom: 1.2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }

  .destination-flag {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.78rem; letter-spacing: 0.04em;
    color: #ffffff; margin: 0;
    padding: 0.35rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 9999px;
  }

  .hero-trust {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem 1.5rem;
    margin-top: 1.35rem;
    padding: 0.55rem 1.25rem;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(29,82,162,0.18);
    border-radius: 9999px;
    backdrop-filter: blur(6px);
    box-shadow: 0 14px 34px -22px rgba(11,35,80,0.35);
  }
  .ht-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .ht-item strong {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--royal-deep);
  }
  .ht-item span {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--muted);
    text-transform: uppercase;
  }
  @media (max-width: 480px) {
    .hero-trust {
      flex-direction: column;
      gap: 0.5rem;
      padding: 0.75rem 1.25rem;
      border-radius: 1rem;
    }
    .ht-item { flex-direction: column; gap: 0.15rem; text-align: center; }
    .ht-item span { font-size: 0.7rem; }
  }


  .cta-button {
    background: var(--grad-gold);
    color: var(--royal-deep);
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 9999px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    max-width: 24rem;
    box-shadow: 0 18px 40px -16px var(--gold-glow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .cta-button:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -18px var(--gold-glow); }
  @media (min-width: 640px) { .cta-button { width: auto; } }

  /* Itinerary */
  .itinerary-section { padding: 3.25rem 0; background: linear-gradient(180deg, #ffffff 0%, var(--ivory) 100%); }
  @media (min-width: 768px) { .itinerary-section { padding: 5rem 0; } }

  .itinerary-header { text-align: center; margin-bottom: 2.5rem; }
  .itinerary-header h2 { margin-bottom: 0.5rem; }
  .itinerary-header p { color: var(--muted); font-size: 1.05rem; }

  .itinerary-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 2rem;
    background-color: #ffffff;
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-lux);
  }
  @media (min-width: 900px) {
    .itinerary-item { grid-template-columns: 1fr 1fr; margin-bottom: 3rem; }
    .itinerary-item.reverse { direction: rtl; }
    .itinerary-item.reverse > * { direction: ltr; }
  }

  .itinerary-image { position: relative; overflow: hidden; min-height: 240px; height: 100%; }
  @media (min-width: 900px) { .itinerary-image { min-height: 420px; } }

  .itinerary-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
  .itinerary-item:hover .itinerary-image img { transform: scale(1.05); }

  .itinerary-image-badge {
    position: absolute; top: 0.85rem; left: 0.85rem;
    background: rgba(255,255,255,0.95);
    padding: 0.35rem 0.8rem; border-radius: 9999px;
    font-size: 0.75rem; font-weight: 600; color: var(--royal-deep);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  }

  .itinerary-image-price {
    position: absolute; bottom: 0.85rem; right: 0.85rem;
    background: var(--grad-gold); color: var(--royal-deep);
    padding: 0.5rem 1rem; border-radius: 0.6rem;
    font-weight: 700; font-size: 0.9rem;
  }

  .itinerary-image-duration {
    position: absolute; bottom: 0.85rem; left: 0.85rem;
    background: rgba(11, 35, 80,0.85); color: #fff;
    padding: 0.4rem 0.8rem; border-radius: 0.6rem;
    font-size: 0.72rem;
    display: flex; align-items: center; gap: 0.4rem;
  }

  .itinerary-content { padding: 1.5rem 1.35rem 1.75rem; }
  @media (min-width: 900px) { .itinerary-content { padding: 2.5rem; } }

  .day-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.5rem; height: 2.5rem; border-radius: 50%;
    background: var(--grad-royal); color: #ffffff;
    font-weight: 700; font-size: 1rem; margin-bottom: 0.85rem;
    box-shadow: 0 0 0 3px rgba(41, 147, 250,0.3);
  }

  .day-label {
    font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
    color: #0a6ae6; font-weight: 600; margin-bottom: 0.4rem;
  }

  .itinerary-content h3 { margin-bottom: 0.85rem; }
  .itinerary-content p { color: var(--muted); margin-bottom: 1.35rem; line-height: 1.8; font-size: 0.95rem; }

  .what-to-expect {
    margin-bottom: 0.5rem;
    background: rgba(29, 82, 162,0.035);
    border-left: 2px solid var(--gold);
    border-radius: 0 0.75rem 0.75rem 0;
    padding: 1rem 1.1rem;
  }

  .what-to-expect-title {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--royal-mid); margin-bottom: 0.6rem;
    display: flex; align-items: center; gap: 0.5rem;
  }

  .what-to-expect-list { list-style: none; margin: 0; }
  .what-to-expect-list li {
    color: var(--ink); margin-bottom: 0.45rem; padding-left: 1.25rem;
    position: relative; font-size: 0.9rem; line-height: 1.5;
  }
  .what-to-expect-list li:last-child { margin-bottom: 0; }
  .what-to-expect-list li:before {
    content: "◆"; position: absolute; left: 0; top: 0;
    color: var(--gold); font-size: 0.6rem; line-height: 1.9;
  }

  /* Pricing full section */
  .pricing-section-full {
    padding: 3.25rem 0 4rem;
    background: var(--grad-royal);
    text-align: center;
    color: #fff;
  }
  @media (min-width: 768px) { .pricing-section-full { padding: 5rem 0; } }

  .pricing-section-full h2 { margin-bottom: 2rem; color: #ffffff; }

  .pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    max-width: 30rem;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card {
    background-color: rgba(255,255,255,0.06);
    padding: 2rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(41, 147, 250,0.45);
    transition: transform 0.3s ease;
    color: #fff;
  }
  .pricing-card:hover { transform: translateY(-4px); }

  .pricing-card.featured {
    background: rgba(255,255,255,0.09);
    border-color: var(--gold);
    box-shadow: 0 24px 60px -24px rgba(0,0,0,0.6);
  }

  .pricing-card h3 { margin-bottom: 0.35rem; color: #ffffff; }
  .pricing-card .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 9vw, 3rem);
    font-weight: 700; margin: 0.5rem 0;
    background: var(--grad-gold);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .pricing-card .original-price {
    text-decoration: line-through; color: rgba(255,255,255,0.55);
    font-size: 0.95rem; margin-bottom: 0.25rem;
  }
  .pricing-card .savings {
    background: var(--grad-gold); color: var(--royal-deep);
    padding: 0.45rem 1rem; border-radius: 9999px;
    font-weight: 600; font-size: 0.8rem;
    display: inline-block; margin-bottom: 0.75rem;
  }

  .pricing-section-full p { color: rgba(255,255,255,0.75); }

  /* Registration */
  .registration-section { padding: 3.25rem 0; background-color: #ffffff; }
  .registration-section h2 { text-align: center; margin-bottom: 1.75rem; }

  .registration-form {
    max-width: 600px; margin: 0 auto;
    background-color: var(--ivory);
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lux);
  }
  @media (min-width: 640px) { .registration-form { padding: 2.25rem; } }

  .form-group { margin-bottom: 1.15rem; }
  .form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.85rem; color: var(--royal-deep); }
  .form-group input, .form-group select {
    width: 100%; padding: 0.8rem 0.9rem;
    border: 1px solid var(--line); border-radius: 0.6rem;
    font-family: 'Jost', sans-serif; font-size: 1rem;
    background: #fff; color: var(--ink);
  }
  .form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
  }

  .submit-button {
    width: 100%;
    background: var(--grad-gold);
    color: var(--royal-deep);
    padding: 1rem; border: none; border-radius: 9999px;
    font-family: 'Jost', sans-serif;
    font-weight: 600; cursor: pointer; font-size: 1rem;
    letter-spacing: 0.05em;
    transition: transform 0.25s ease;
  }
  .submit-button:hover { transform: translateY(-2px); }

  /* Footer */
  footer {
    background-color: var(--royal-deep);
    color: rgba(255,255,255,0.7);
    padding: 2rem 0 5.5rem;
    text-align: center;
    border-top: 1px solid rgba(41, 147, 250,0.3);
    font-size: 0.85rem;
  }
  @media (min-width: 768px) { footer { padding: 2.5rem 0; } }

  /* Sticky mobile CTA */
  .sticky-cta {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(11, 35, 80,0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(41, 147, 250,0.4);
  }
  @media (min-width: 768px) { .sticky-cta { display: none; } }

  .sticky-cta-text { color: #fff; line-height: 1.15; text-align: left; }
  .sticky-cta-text span { display: block; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--gold-light); text-transform: uppercase; }
  .sticky-cta-text strong { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; }
  .sticky-cta button {
    background: var(--grad-gold); color: var(--royal-deep);
    border: none; border-radius: 9999px;
    padding: 0.7rem 1.15rem; font-family: 'Jost', sans-serif;
    font-weight: 600; font-size: 0.85rem; white-space: nowrap; cursor: pointer;
  }

  /* Day 1: no hero image, gallery under What to Expect */
  .itinerary-item.no-image { grid-template-columns: 1fr; }
  .expect-gallery {
    display: grid; gap: 0.75rem; margin-top: 1.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .expect-gallery figure { margin: 0; position: relative; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 26px rgba(11, 35, 80,0.18); }
  .expect-gallery img { display: block; width: 100%; height: 150px; object-fit: cover; transition: transform .5s ease; }
  .expect-gallery figure:hover img { transform: scale(1.06); }
  .expect-gallery figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 0.55rem 0.7rem; color: #fff;
    font-family: 'Jost', sans-serif; font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    background: linear-gradient(to top, rgba(11, 35, 80,0.85), rgba(11, 35, 80,0));
  }
  @media (min-width: 900px) {
    .expect-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .expect-gallery img { height: 170px; }
  }

  /* Title + price chip */
  .title-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0.75rem; flex-wrap: wrap; margin-bottom: 0.85rem;
  }
  .title-row h3 { margin-bottom: 0; }
  .title-price {
    background: var(--grad-gold);
    color: var(--royal-deep);
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    padding: 0.45rem 0.95rem;
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 10px 24px -14px var(--gold-glow);
  }

  /* ---------- Readability pass ---------- */
  body { line-height: 1.72; font-size: 1.02rem; letter-spacing: 0.002em; }
  p { text-wrap: pretty; }
  .itinerary-content p { color: #3a4d6e; font-size: 1.02rem; line-height: 1.85; }
  .what-to-expect-list li { font-size: 0.98rem; line-height: 1.65; color: #26364f; }
  .itinerary-header p { color: #4a5f85; font-size: 1.1rem; }
  .hero-description { color: rgba(255,255,255,0.94); line-height: 1.7; }
  .pricing-subtext { font-size: 0.8rem; color: rgba(255,255,255,0.85); }
  .destination-flag { font-size: 0.85rem; }
  .pricing-section-full p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

  /* ---------- Shared section furniture ---------- */
  .section-head { max-width: 46rem; margin: 0 auto 2.5rem; text-align: center; }
  .eyebrow {
    font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
    font-weight: 600; color: var(--royal-mid); margin-bottom: 0.75rem;
  }
  .eyebrow.light { color: var(--gold-light); }
  .section-head h2 { margin-bottom: 0.9rem; }
  .lead { color: #3a4d6e; font-size: 1.08rem; line-height: 1.8; }

  .section-cta { text-align: center; margin-top: 2.5rem; }
  .section-cta .cta-button { display: inline-block; text-decoration: none; text-align: center; }
  .cta-note { display: block; margin-top: 0.85rem; font-size: 0.85rem; color: #5a6e99; }

  /* ---------- Trust bar ---------- */
  .trust-bar { background: var(--royal-deep); padding: 1.5rem 0; }
  .trust-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 0.75rem; text-align: center;
  }
  @media (min-width: 900px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
  .trust-item strong {
    display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
    color: #fff; line-height: 1.2;
  }
  .trust-item span { display: block; font-size: 0.76rem; letter-spacing: 0.08em; color: var(--gold-light); }

  /* ---------- Value props ---------- */
  .value-section { padding: 3.5rem 0; background: #ffffff; }
  @media (min-width: 768px) { .value-section { padding: 5rem 0; } }
  .value-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
  @media (min-width: 640px) { .value-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
  @media (min-width: 1024px) { .value-grid { grid-template-columns: repeat(4, 1fr); } }
  .value-card {
    background: var(--ivory); border: 1px solid var(--line);
    border-radius: 1.1rem; padding: 1.5rem 1.35rem;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lux); }
  .value-icon {
    font-family: 'Cormorant Garamond', serif; font-weight: 700;
    font-size: 1.1rem; color: var(--royal-deep);
    width: 2.4rem; height: 2.4rem; border-radius: 0.7rem;
    display: flex; align-items: center; justify-content: center;
    background: var(--grad-gold); margin-bottom: 0.9rem;
  }
  .value-card h3 { font-size: 1.3rem; margin-bottom: 0.45rem; }
  .value-card p { color: #3a4d6e; font-size: 0.96rem; line-height: 1.7; }

  /* ---------- Value stack ---------- */
  .stack-section { padding: 3.5rem 0; background: var(--ivory); }
  @media (min-width: 768px) { .stack-section { padding: 5rem 0; } }
  .stack-table {
    max-width: 44rem; margin: 0 auto; background: #fff;
    border: 1px solid var(--line); border-radius: 1.1rem; overflow: hidden;
    box-shadow: var(--shadow-lux);
  }
  .stack-row {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1rem 1.25rem; border-bottom: 1px solid var(--line);
    font-size: 0.98rem; color: #26364f;
  }
  .stack-row b { white-space: nowrap; font-weight: 600; color: var(--royal); }
  .stack-row.total { background: rgba(29,82,162,0.05); font-weight: 600; }
  .stack-row.total b { text-decoration: line-through; color: #6b7c9c; }
  .stack-row.bundle {
    background: var(--grad-royal); color: #fff; border-bottom: 0;
    padding: 1.25rem; font-size: 1.05rem;
  }
  .stack-row.bundle b {
    font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--gold-light);
  }
  .stack-note { text-align: center; margin-top: 1.5rem; color: #3a4d6e; font-size: 1.02rem; }
  .stack-note strong { color: var(--royal); }

  /* ---------- Proof ---------- */
  .proof-section { padding: 3.5rem 0; background: #fff; }
  @media (min-width: 768px) { .proof-section { padding: 5rem 0; } }
  .proof-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
  @media (min-width: 900px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }
  .proof-card {
    margin: 0; padding: 1.75rem 1.5rem; background: var(--ivory);
    border: 1px solid var(--line); border-radius: 1.1rem; position: relative;
  }
  .proof-card:before {
    content: "“"; font-family: 'Cormorant Garamond', serif; font-size: 3.5rem;
    color: var(--royal-soft); line-height: 1; display: block; margin-bottom: -0.6rem;
  }
  .proof-card blockquote {
    font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; line-height: 1.6;
    color: var(--royal-deep); margin-bottom: 1rem;
  }
  .proof-card figcaption { font-size: 0.9rem; font-weight: 600; color: var(--royal); }
  .proof-card figcaption span { display: block; font-weight: 400; font-size: 0.8rem; color: #5a6e99; letter-spacing: 0.05em; }

  /* ---------- FAQ ---------- */
  .faq-section { padding: 3.5rem 0; background: var(--ivory); }
  @media (min-width: 768px) { .faq-section { padding: 5rem 0; } }
  .faq-list { max-width: 44rem; margin: 0 auto; }
  .faq-item {
    background: #fff; border: 1px solid var(--line); border-radius: 0.9rem;
    padding: 1rem 1.25rem; margin-bottom: 0.75rem;
  }
  .faq-item summary {
    cursor: pointer; font-weight: 600; color: var(--royal-deep); font-size: 1.02rem;
    list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary:after { content: "+"; color: var(--royal-mid); font-size: 1.4rem; line-height: 1; }
  .faq-item[open] summary:after { content: "–"; }
  .faq-item p { margin-top: 0.75rem; color: #3a4d6e; font-size: 0.98rem; line-height: 1.75; }

  /* ---------- Reserve ---------- */
  .reserve-section { padding: 3.5rem 0 4rem; background: var(--grad-royal); }
  @media (min-width: 768px) { .reserve-section { padding: 5rem 0; } }
  .reserve-card {
    max-width: 46rem; margin: 0 auto; text-align: center;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(41,147,250,0.45);
    border-radius: 1.4rem; padding: 2rem 1.35rem; backdrop-filter: blur(8px);
  }
  @media (min-width: 768px) { .reserve-card { padding: 3rem 2.5rem; } }
  .reserve-card h2 { color: #fff; margin-bottom: 1rem; }
  .reserve-card p { color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 1.75rem; }
  .reserve-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
  @media (min-width: 640px) { .reserve-actions { flex-direction: row; justify-content: center; } }
  .reserve-actions .cta-button { display: inline-block; text-decoration: none; }
  .cta-secondary {
    display: inline-block; padding: 1rem 2rem; border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.45); color: #fff; text-decoration: none;
    font-weight: 600; letter-spacing: 0.05em; transition: background .25s ease;
  }
  .cta-secondary:hover { background: rgba(255,255,255,0.12); }
  .reserve-script {
    margin: 1.75rem auto 0; max-width: 46rem; padding: 1.25rem 1.5rem;
    border: 1px dashed rgba(29,82,162,0.3); border-radius: 18px;
    background: rgba(29,82,162,0.04);
  }
  .reserve-script span { display: block; font-size: 0.92rem; color: #5a6e99; margin-bottom: 0.5rem; }
  .reserve-script p { margin: 0; font-weight: 600; color: var(--royal-deep); line-height: 1.7; }

  .reserve-assurance {
    list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0.5rem 1.25rem; margin-top: 1.75rem;
  }
  .reserve-assurance li {
    color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.05em;
    display: flex; align-items: center; gap: 0.4rem;
  }
  .reserve-assurance li:before { content: "✓"; color: var(--royal-soft); font-weight: 700; }

  /* ---------- Light & airy pass ---------- */
  body { background-color: #ffffff; }

  header {
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid rgba(29, 82, 162, 0.14);
    box-shadow: 0 6px 24px -18px rgba(11,35,80,0.4);
  }
  .logo-text h1 { color: var(--royal-deep); }
  .logo-text p { color: var(--royal-mid); }
  .register-link { color: var(--royal-mid); }
  .register-link:hover { color: var(--royal-deep); }

  .hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.70) 34%, rgba(232,241,253,0.72) 68%, rgba(228,238,251,0.86) 100%),
      url('../images/hero-bg-web.jpg') center/cover no-repeat;
    background-color: #eaf2fe;
    color: var(--ink);
  }
  .hero h1 { color: var(--royal-deep); text-shadow: none; }
  .hero-description { color: #3a4d6e; }
  .badge { color: #ffffff; }
  .pricing-item {
    background: rgba(255,255,255,0.85);
    border-color: rgba(29,82,162,0.2);
    box-shadow: 0 18px 40px -30px rgba(11,35,80,0.6);
  }
  .pricing-label { color: var(--royal-mid); }
  .pricing-amount { color: var(--royal-deep); }
  .pricing-amount.save { color: var(--royal-mid); }
  .pricing-amount.price { color: var(--royal-deep); }
  .pricing-subtext { color: #5a6e99; }
  .destination-flag { color: var(--royal-deep); border-color: rgba(29,82,162,0.25); background: rgba(255,255,255,0.7); }
  .cta-button { color: #ffffff; }

  /* Trust bar */
  .trust-bar { background: #eef4fd; border-block: 1px solid rgba(29,82,162,0.12); }
  .trust-item strong { color: var(--royal-deep); }
  .trust-item span { color: #5a6e99; }

  /* Pricing full section */
  .pricing-section-full { background: linear-gradient(180deg, #ffffff 0%, #eaf2fe 100%); color: var(--ink); }
  .pricing-section-full h2 { color: var(--royal-deep); }
  .pricing-card {
    background: #ffffff;
    border-color: rgba(29,82,162,0.16);
    color: var(--ink);
    box-shadow: 0 24px 50px -34px rgba(11,35,80,0.55);
  }
  .pricing-card.featured { background: #ffffff; border-color: var(--royal-mid); }
  .pricing-card h3 { color: var(--royal-deep); }
  .pricing-card .original-price { color: #8494b3; }
  .pricing-card .savings { color: #ffffff; }
  .pricing-section-full p { color: #3a4d6e; }

  /* Value stack bundle row */
  .stack-row.bundle { color: #ffffff; }

  /* Reserve */
  .reserve-section { background: linear-gradient(160deg, #eaf2fe 0%, #ffffff 100%); }
  .reserve-card {
    background: #ffffff;
    border: 1px solid rgba(29,82,162,0.16);
    box-shadow: 0 30px 70px -40px rgba(11,35,80,0.5);
  }
  .reserve-card h2 { color: var(--royal-deep); }
  .reserve-card p { color: #3a4d6e; }
  .cta-secondary { color: var(--royal-deep); border-color: rgba(29,82,162,0.35); }
  .cta-secondary:hover { background: rgba(29,82,162,0.08); }
  .reserve-assurance li { color: var(--royal-mid); }

  /* Footer */
  footer {
    background: #eef4fd;
    color: #5a6e99;
    border-top: 1px solid rgba(29,82,162,0.14);
  }

  /* Sticky mobile CTA */
  .sticky-cta {
    background: rgba(255,255,255,0.97);
    border-top: 1px solid rgba(29,82,162,0.18);
    box-shadow: 0 -10px 30px -22px rgba(11,35,80,0.6);
  }
  .sticky-cta-text { color: var(--royal-deep); }
  .sticky-cta-text span { color: var(--royal-mid); }
  .sticky-cta button { color: #ffffff; }

  /* Badges / chips readable on blue gradient */
  .title-price, .day-badge, .value-icon { color: #ffffff; }
  .day-badge { background: var(--grad-gold); }

  /* ---------- Optional tour photo: keep natural proportions ---------- */
  .itinerary-item > .itinerary-image {
    align-self: start;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    margin: 1.25rem 1.35rem 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(11, 35, 80, 0.18);
  }
  .itinerary-item > .itinerary-image img { height: 100%; object-fit: cover; object-position: center; }
  @media (min-width: 900px) {
    .itinerary-item > .itinerary-image {
      aspect-ratio: 3 / 4;
      max-height: 560px;
      margin: 2.5rem 2.5rem 2.5rem 0;
      position: sticky;
      top: 6rem;
    }
    .itinerary-item.reverse > .itinerary-image { margin: 2.5rem 0 2.5rem 2.5rem; }
  }

  /* ---- Funnel: speed promise ---- */
  .speed-promise {
    margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.55rem;
    font-size: 0.9rem; color: var(--royal); font-weight: 500;
  }
  .pulse-dot {
    width: 9px; height: 9px; border-radius: 50%; background: var(--royal-mid);
    box-shadow: 0 0 0 0 var(--gold-glow); animation: pulseDot 2s infinite;
  }
  @keyframes pulseDot { 70% { box-shadow: 0 0 0 10px rgba(41,147,250,0); } 100% { box-shadow: 0 0 0 0 rgba(41,147,250,0); } }

  /* ---- Micro-commitment ---- */
  .micro-section { padding: 3.5rem 0; background: var(--ivory); }
  .micro-card {
    background: #fff; border: 1px solid var(--line); border-radius: 22px;
    padding: 2.25rem 1.6rem; text-align: center; box-shadow: var(--shadow-lux);
  }
  .micro-card h2 { font-size: clamp(1.6rem, 4.5vw, 2.4rem); margin: 0.35rem 0 0.75rem; }
  .micro-card .lead { max-width: 46rem; margin: 0 auto; color: var(--muted); }
  .micro-choices { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-top: 1.6rem; }
  .micro-choice {
    text-decoration: none; padding: 0.85rem 1.4rem; border-radius: 999px;
    font-weight: 600; font-size: 0.95rem; transition: transform .2s ease, box-shadow .2s ease;
  }
  .micro-choice.solid { background: var(--grad-gold); color: #fff; box-shadow: 0 14px 30px -14px var(--gold-glow); }
  .micro-choice.ghost { border: 1px solid var(--line); color: var(--royal); background: #fff; }
  .micro-choice:hover { transform: translateY(-2px); }

  /* ---- Qualify / fit ---- */
  .fit-section { padding: 3.5rem 0; background: #fff; }
  .fit-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
  @media (min-width: 820px) { .fit-grid { grid-template-columns: 1fr 1fr; } }
  .fit-card { border-radius: 20px; padding: 1.6rem 1.5rem; border: 1px solid var(--line); background: var(--ivory); }
  .fit-card h3 { font-size: 1.5rem; margin-bottom: 0.9rem; }
  .fit-card ul { list-style: none; display: grid; gap: 0.7rem; }
  .fit-card li { position: relative; padding-left: 1.7rem; color: var(--ink); }
  .fit-card li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
  .fit-card.yes { border-color: rgba(10,106,230,0.35); background: linear-gradient(160deg, #f2f8ff, #ffffff); }
  .fit-card.yes li::before { content: "\2713"; color: var(--royal-mid); }
  .fit-card.no { opacity: 0.95; }
  .fit-card.no li::before { content: "\2014"; color: var(--muted); }
  .fit-card.no li { color: var(--muted); }

  /* ---- Trial close ---- */
  .trial-section { padding: 3.5rem 0; background: var(--ivory); }
  .trial-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 2.1rem 1.6rem; box-shadow: var(--shadow-lux); }
  .trial-card h2 { font-size: clamp(1.55rem, 4.4vw, 2.3rem); margin: 0.3rem 0 1.4rem; }
  .trial-grid { display: grid; gap: 1rem; }
  @media (min-width: 820px) { .trial-grid { grid-template-columns: 1fr 1fr; } }
  .trial-item { display: grid; gap: 0.3rem; padding: 1.1rem 1.2rem; border-radius: 16px; background: var(--ivory); border: 1px solid var(--line); }
  .trial-item b { color: var(--royal-deep); font-size: 1.02rem; }
  .trial-item span { color: var(--muted); font-size: 0.95rem; }

  /* ---- Reserve steps / follow-up ---- */
  .stack-terms { max-width: 720px; margin: 1.6rem auto 1.4rem; padding: 1.1rem 1.3rem; border-radius: 16px; background: rgba(255,255,255,0.7); border: 1px solid var(--line); color: var(--muted); line-height: 1.65; text-align: center; }
  .stack-terms b { color: var(--royal-deep); }
  .reserve-steps { list-style: none; display: grid; gap: 0.85rem; margin: 1.6rem 0 1.4rem; text-align: left; }
  @media (min-width: 820px) { .reserve-steps { grid-template-columns: repeat(3, 1fr); } }
  .reserve-steps li { display: grid; gap: 0.25rem; padding: 1rem 1.1rem; border-radius: 16px; background: rgba(255,255,255,0.7); border: 1px solid var(--line); }
  .reserve-steps b { color: var(--royal-deep); }
  .reserve-steps span { color: var(--muted); font-size: 0.92rem; }
  .reserve-followup { margin-top: 1rem; font-size: 0.88rem; color: var(--muted); }

  /* ================= Conversion pass ================= */

  /* Header CTA */
  .header-content { justify-content: space-between; }
  .header-cta {
    display: none; text-decoration: none; font-weight: 600; font-size: 0.85rem;
    padding: 0.6rem 1.15rem; border-radius: 999px; background: var(--grad-gold);
    color: #fff; box-shadow: 0 12px 26px -14px var(--gold-glow); white-space: nowrap;
  }
  @media (min-width: 768px) { .header-cta { display: inline-block; } }

  /* Hero CTA cluster */
  .cta-cluster { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
  @media (min-width: 640px) { .cta-cluster { flex-direction: row; justify-content: center; } }
  .cta-cluster .cta-button { display: inline-block; text-decoration: none; text-align: center; }
  .cta-support { margin-top: 0.9rem; font-size: 0.88rem; color: #3a4d6e; }
  .hero .cta-secondary { color: var(--royal-deep); border-color: rgba(29,82,162,0.35); background: rgba(255,255,255,0.7); }
  .micro-question { margin-top: 1.1rem; font-weight: 600; color: var(--royal-deep); font-size: 1.05rem; }

  /* Experience overview */
  .overview-section { padding: 3.5rem 0; background: var(--ivory); }
  @media (min-width: 768px) { .overview-section { padding: 5rem 0; } }
  .overview-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
  @media (min-width: 640px) { .overview-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .overview-grid { grid-template-columns: repeat(3, 1fr); } }
  .overview-card {
    position: relative; display: block; border-radius: 22px; overflow: hidden;
    text-decoration: none; box-shadow: 0 22px 48px -24px rgba(11,35,80,0.6);
    transition: transform .35s ease, box-shadow .35s ease; background: #fff;
  }
  .overview-card::after {
    content: ''; position: absolute; inset: 0; border-radius: 22px; pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
  }
  .overview-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lux); }
  .overview-card img {
    display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
    filter: saturate(1.18) contrast(1.05);
    transition: transform .6s ease, filter .35s ease;
  }
  .overview-card:hover img { transform: scale(1.06); filter: saturate(1.3) contrast(1.08); }
  @media (min-width: 640px) { .overview-card img { aspect-ratio: 3 / 4; } }
  .overview-caption {
    position: absolute; inset: auto 0 0 0; padding: 2.4rem 1.15rem 1.15rem;
    background: linear-gradient(180deg, rgba(11,35,80,0) 0%, rgba(11,35,80,0.55) 45%, rgba(11,35,80,0.92) 100%);
    color: #fff;
  }
  .overview-day {
    display: inline-block; font-size: 0.66rem; letter-spacing: 0.2em; font-weight: 700;
    color: var(--royal-deep); background: var(--grad-gold, linear-gradient(135deg,#2993fa,#a4c9f0));
    padding: 0.22rem 0.6rem; border-radius: 999px; margin-bottom: 0.45rem;
  }
  .overview-caption strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; line-height: 1.2; }
  .overview-caption em { display: block; font-style: normal; font-size: 0.86rem; color: rgba(255,255,255,0.9); margin-top: 0.2rem; }


  /* Itinerary cards, scannable */
  .itinerary-header .eyebrow { margin-bottom: 0.5rem; }
  .itinerary-header .section-lead {
    max-width: 46rem;
    margin: 0.9rem auto 0;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--ink-soft, #45536e);
  }
  .important-note {
    margin: 1.2rem 0 0;
    padding: 1rem 1.15rem;
    border-left: 3px solid var(--royal, #1d52a2);
    border-radius: 0 10px 10px 0;
    background: rgba(29,82,162,0.06);
  }
  .important-note-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    font-weight: 600;
    color: var(--royal-deep, #0b2350);
    margin-bottom: 0.5rem;
  }
  .important-note p { margin: 0 0 0.6rem; font-size: 0.94rem; line-height: 1.65; }
  .important-note p:last-child { margin-bottom: 0; }
  .important-note a { color: var(--royal, #1d52a2); font-weight: 600; text-decoration: underline; }

  .day-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem; }
  .day-badge {
    width: auto; height: auto; border-radius: 999px; padding: 0.32rem 0.85rem;
    font-size: 0.72rem; letter-spacing: 0.16em; font-weight: 600; display: inline-flex;
    align-items: center; justify-content: center; font-family: 'Jost', sans-serif;
  }
  .day-country { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--royal); font-weight: 600; }
  .itinerary-hook { color: #3a4d6e; font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.25rem; }
  .itinerary-foot {
    margin-top: 1.25rem; display: flex; flex-wrap: wrap; align-items: center;
    justify-content: space-between; gap: 0.75rem;
  }
  .individual-price { font-size: 0.92rem; color: var(--muted); }
  .individual-price b { color: var(--royal-deep); }
  .full-itinerary summary {
    cursor: pointer; list-style: none; font-size: 0.9rem; font-weight: 600;
    color: var(--royal-mid); border: 1px solid var(--line); border-radius: 999px;
    padding: 0.5rem 1.1rem; background: #fff;
  }
  .full-itinerary summary::-webkit-details-marker { display: none; }
  .full-itinerary[open] summary { color: var(--royal-deep); }
  .full-itinerary p {
    flex-basis: 100%; margin-top: 0.9rem; color: #3a4d6e; font-size: 0.96rem; line-height: 1.8;
    border-left: 3px solid var(--line); padding-left: 1rem;
  }

  /* Social proof */
  .proof-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
  .proof-avatar {
    width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
    background: var(--ivory); border: 1px dashed rgba(29,82,162,0.35); color: var(--royal);
    font-size: 0.75rem; letter-spacing: 0.1em; font-weight: 600;
  }
  .proof-id b { display: block; color: var(--royal-deep); font-size: 0.95rem; }
  .proof-id span { font-size: 0.8rem; color: var(--muted); }
  .proof-rating { font-size: 0.8rem; letter-spacing: 0.08em; color: var(--royal-mid); margin-bottom: 0.5rem; }
  .proof-card.is-placeholder { border-style: dashed; }
  .proof-card.is-placeholder figcaption { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
  .credibility-strip {
    list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
    gap: 0.6rem 1rem; margin-top: 2rem;
  }
  .credibility-strip li {
    font-size: 0.85rem; color: var(--royal-deep); background: var(--ivory);
    border: 1px solid var(--line); border-radius: 999px; padding: 0.5rem 1.1rem;
  }

  /* Value stack */
  .stack-caption {
    padding: 0.85rem 1.25rem; font-size: 0.72rem; letter-spacing: 0.2em;
    color: var(--muted); background: rgba(29,82,162,0.04); border-bottom: 1px solid var(--line);
  }
  .stack-row.total b { text-decoration: line-through; }
  .bundle-reveal {
    max-width: 44rem; margin: 1.25rem auto 0; text-align: center; border-radius: 22px;
    padding: 2rem 1.5rem; background: var(--grad-royal); color: #fff;
    box-shadow: var(--shadow-lux);
  }
  .bundle-label { font-size: 0.72rem; letter-spacing: 0.22em; color: var(--gold-light); }
  .bundle-price {
    font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1;
    font-size: clamp(2.6rem, 11vw, 4.2rem); margin: 0.4rem 0 0.6rem;
  }
  .bundle-price span { display: block; font-family: 'Jost', sans-serif; font-size: 0.85rem; letter-spacing: 0.16em; color: rgba(255,255,255,0.8); margin-top: 0.4rem; }
  .bundle-save {
    display: inline-block; padding: 0.5rem 1.2rem; border-radius: 999px;
    background: rgba(255,255,255,0.14); border: 1px solid rgba(164,201,240,0.5);
    color: #fff; font-weight: 600; font-size: 0.95rem;
  }
  .savings-examples { max-width: 44rem; margin: 1.5rem auto 0; text-align: center; }
  .savings-title { font-size: 0.95rem; color: var(--royal-deep); font-weight: 600; margin-bottom: 0.8rem; }
  .savings-grid { display: grid; grid-template-columns: 1fr; gap: 0.7rem; }
  @media (min-width: 560px) { .savings-grid { grid-template-columns: repeat(3, 1fr); } }
  .savings-item {
    background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0.85rem 0.6rem;
  }
  .savings-item b { display: block; color: var(--royal-deep); font-size: 0.95rem; }
  .savings-item span { font-size: 0.9rem; color: var(--royal-mid); font-weight: 600; }
  .stack-note { font-size: 0.88rem; color: var(--muted); max-width: 44rem; margin-left: auto; margin-right: auto; }

  /* Final close card */
  .close-section { padding: 3.5rem 0; background: #ffffff; }
  @media (min-width: 768px) { .close-section { padding: 5rem 0; } }
  .close-card {
    max-width: 52rem; margin: 0 auto; text-align: center; border-radius: 24px;
    border: 1px solid var(--line); background: linear-gradient(170deg, #f5f9ff, #ffffff);
    padding: 2.25rem 1.4rem; box-shadow: var(--shadow-lux);
  }
  @media (min-width: 768px) { .close-card { padding: 3rem 2.5rem; } }
  .close-card h2 { margin: 0.4rem 0 1.5rem; }
  .close-countries { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
  .close-countries li { flex: 0 1 200px; }
  .close-countries li {
    background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 0.9rem 0.5rem;
    font-size: 1.35rem; line-height: 1.2;
  }
  .close-countries b { display: block; font-size: 0.95rem; color: var(--royal-deep); margin-top: 0.3rem; }
  .close-countries span { display: block; font-size: 0.78rem; letter-spacing: 0.14em; color: var(--muted); }
  .close-includes {
    list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 0.75rem;
    margin: 1.5rem 0;
  }
  .close-includes li {
    font-size: 0.85rem; color: var(--royal); border: 1px solid var(--line);
    border-radius: 999px; padding: 0.45rem 1rem; background: #fff;
  }
  .close-includes li::before { content: "\2713"; color: var(--royal-mid); font-weight: 700; margin-right: 0.4rem; }
  .close-figures {
    display: grid; grid-template-columns: 1fr; gap: 0.75rem; align-items: center;
    margin: 1.5rem 0 0.5rem;
  }
  @media (min-width: 700px) { .close-figures { grid-template-columns: 1fr 1.4fr 1fr; } }
  .close-fig { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 1rem 0.75rem; }
  .close-fig span { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
  .close-fig b { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--royal-deep); }
  .close-fig b.struck { text-decoration: line-through; color: #8494b3; }
  .close-fig b.save { color: var(--royal-mid); }
  .close-fig.main { background: var(--grad-royal); border-color: transparent; box-shadow: var(--shadow-lux); }
  .close-fig.main span { color: var(--gold-light); }
  .close-fig.main b { color: #fff; font-size: clamp(2.2rem, 8vw, 3rem); display: block; line-height: 1.05; }
  .close-fig.main em { display: block; font-family: 'Jost', sans-serif; font-style: normal; font-size: 0.8rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.82); margin-top: 0.3rem; }

  /* Sticky mobile CTA */
  .sticky-cta { transform: translateY(120%); transition: transform .3s ease; }
  .sticky-cta.is-visible { transform: translateY(0); }
  .sticky-cta-text em { display: block; font-style: normal; font-size: 0.72rem; color: var(--muted); }
  .sticky-cta button { min-height: 48px; }

  /* Mobile polish */
  html, body { overflow-x: hidden; }
  img { max-width: 100%; }
  @media (max-width: 640px) {
    .title-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .cta-button, .cta-secondary, .micro-choice { width: 100%; text-align: center; min-height: 52px; display: inline-flex; align-items: center; justify-content: center; }
    .itinerary-foot { flex-direction: column; align-items: flex-start; }
    .full-itinerary { width: 100%; }
    .full-itinerary summary { text-align: center; }
    .section-cta { margin-top: 2rem; }
    body { padding-bottom: 4.5rem; }
  }


  /* ---------- CRO pass: credibility + reassurance ---------- */
  .assure-card {
    background: var(--ivory); border: 1px solid var(--line); border-radius: 1.1rem;
    padding: 1.5rem 1.35rem;
  }
  .assure-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; color: var(--royal-deep); }
  .assure-card p { color: #3a4d6e; font-size: 0.95rem; line-height: 1.7; }
  .proof-note { margin-top: 1.5rem; text-align: center; font-size: 0.92rem; color: var(--muted); }
  .proof-note a { color: var(--royal-mid); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(41,147,250,0.35); }
  .bundle-perday { margin-top: 0.6rem; font-size: 0.85rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.82); }
  .reserve-script {
    margin: 1rem auto 0; max-width: 34rem; font-size: 0.92rem; color: var(--muted);
    background: #fff; border: 1px dashed var(--line); border-radius: 1rem; padding: 0.9rem 1.1rem;
  }
  .reserve-script span { display: block; margin-top: 0.35rem; color: var(--royal-deep); font-weight: 500; }



  /* ---------- Hero refinement pass ---------- */
  .hero { padding: 3rem 0 2.6rem; }
  @media (min-width: 768px) { .hero { padding: 4.75rem 0 4rem; } }
  .hero-content { text-shadow: none; }
  .hero .badge { margin-bottom: 1rem; }
  .hero h1 {
    font-size: clamp(2.05rem, 5.6vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 0.85rem;
  }
  .hero .hero-subhead {
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-size: clamp(0.98rem, 2vw, 1.08rem);
    line-height: 1.6;
    color: #3a4d6e;
    max-width: 33rem;
    margin: 0 auto 1.6rem;
  }
  .hero .pricing-section { margin-bottom: 1.1rem; }
  .hero .pricing-item.is-save {
    background: rgba(255,255,255,0.94);
    border-color: rgba(10,106,230,0.4);
    box-shadow: 0 20px 44px -28px rgba(11,35,80,0.75);
  }
  .hero .pricing-amount.price { font-size: clamp(1.85rem, 7vw, 2.7rem); letter-spacing: -0.01em; }
  .hero .pricing-item.is-save .pricing-amount.save {
    font-size: clamp(1.85rem, 7vw, 2.7rem);
    color: var(--royal-mid);
    letter-spacing: -0.01em;
  }
  .hero .pricing-subtext { font-size: 0.74rem; }
  .hero .pricing-subtext.muted { color: #7286a8; font-size: 0.7rem; letter-spacing: 0.01em; }
  .hero .destinations { margin-bottom: 1.5rem; gap: 0.5rem; }
  .hero .destination-flag {
    background: rgba(255,255,255,0.88);
    border-color: rgba(29,82,162,0.28);
    color: var(--royal-deep);
    font-weight: 500;
  }
  .hero .cta-cluster { margin-top: 0.35rem; }
  .hero .cta-support {
    margin-top: 0.85rem;
    font-size: 0.82rem;
    color: #5a6e99;
    max-width: 34rem;
    margin-inline: auto;
  }
  @media (max-width: 639px) {
    .hero .pricing-section { flex-direction: column; gap: 0.7rem; }
    .hero .pricing-item { width: 100%; max-width: none; flex: 0 0 auto; min-width: 0; padding: 0.9rem 1.1rem; }
    .hero .destinations { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .hero .destination-flag { width: 100%; justify-content: center; text-align: center; font-size: 0.78rem; padding: 0.55rem 0.5rem; white-space: nowrap; }
    .hero .cta-cluster .cta-button,
    .hero .cta-cluster .cta-secondary { width: 100%; max-width: 22rem; }
  }
