/**
 * Voyage page layout — travel / agency UI (distinct from Classic + Offer).
 * Scope: .wel-landing--layout-voyage only.
 * Structure: header.voyage-hero (copy → media → actions) + soft full-bleed bands.
 * Theme: inherit --cta* / --brand / --ink / --surface / --bg* (do not hardcode light chrome).
 *
 * Distinctness notes:
 * - Classic = narrow funnel (~680), centered stack, solid sticky strip
 * - Offer = urgency top bar, pack chrome, centered guarantee card with floating badge
 * - Voyage = wide editorial canvas, split hero, mist bands, glass floating sticky, guarantee point tiles
 */

.wel-landing--layout-voyage {
  /*
   * Inherit --ink / --ink-soft / --muted / --line / --surface / --bg* / --lift /
   * --field-* / --shadow / --cta* from .wel-landing + .wel-landing--theme-*
   * (do not hardcode light chrome or a fixed brand green/blue).
   */
  --voyage-paper: var(--lift, var(--surface));
  --voyage-mist: color-mix(in srgb, var(--cta) 7%, var(--surface));
  --voyage-mist-2: color-mix(in srgb, var(--cta) 12%, var(--surface));
  --voyage-ink: var(--ink);
  --voyage-radius: 28px;
  --voyage-radius-sm: 18px;
  --voyage-pill: 999px;
  --voyage-shadow: 0 28px 56px color-mix(in srgb, var(--ink) 10%, transparent);
  --voyage-shadow-soft: 0 12px 28px color-mix(in srgb, var(--ink) 7%, transparent);
  --voyage-section-y: 1.5rem;
  --voyage-band-y: 2.5rem;
  /* Wider than Classic (~680) / Offer (~420) — near full desktop lander */
  --max: 920px;
  --gutter: 18px;
  --touch: 52px;
  --sticky-h: 5.25rem;
  --safe-b: env(safe-area-inset-bottom, 0px);
  color: var(--voyage-ink);
  background:
    radial-gradient(
      70% 48% at 92% -4%,
      color-mix(in srgb, var(--cta-light, var(--cta)) 34%, transparent) 0%,
      transparent 62%
    ),
    radial-gradient(
      55% 40% at 6% 18%,
      color-mix(in srgb, var(--cta) 10%, transparent) 0%,
      transparent 70%
    ),
    linear-gradient(
      165deg,
      var(--surface) 0%,
      var(--voyage-mist) 38%,
      var(--bg-bottom, var(--bg)) 100%
    );
  line-height: 1.55;
  font-size: 1.02rem;
  overflow-x: clip;
}

@media (min-width: 768px) {
  .wel-landing--layout-voyage {
    --gutter: 28px;
    --max: 1180px;
  }
}

@media (min-width: 1100px) {
  .wel-landing--layout-voyage {
    --max: 1240px;
    --gutter: 36px;
  }
}

@media (min-width: 1400px) {
  .wel-landing--layout-voyage {
    --max: 1320px;
  }
}

.wel-landing--layout-voyage .wrap {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

.wel-landing--layout-voyage .wel-landing__blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  /* Sticky clearance lives on `.wel-landing` only — don't stack a second pad here. */
  padding-bottom: 0;
}

/* Kill Classic chrome that leaks into Voyage (legacy faq-item class only) */
.wel-landing--layout-voyage .brand::before {
  content: none !important;
  display: none !important;
}

/* ========== VOYAGE HERO — centered stack (text top → image bottom) ========== */
.wel-landing--layout-voyage .voyage-hero {
  position: relative;
  isolation: isolate;
  padding: 1.25rem 0 1.75rem;
  margin: 0;
  overflow: clip;
}

.wel-landing--layout-voyage .voyage-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  z-index: 1;
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
  text-align: center;
}

.wel-landing--layout-voyage .voyage-hero__stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 40rem;
  min-width: 0;
}

/* Mobile: copy → CTAs → media (text block above image) */
@media (max-width: 719px) {
  .wel-landing--layout-voyage .voyage-hero {
    padding: 0.85rem 0 1.25rem;
  }

  .wel-landing--layout-voyage .voyage-hero__inner {
    gap: 1rem;
  }

  .wel-landing--layout-voyage .voyage-hero__stack {
    display: contents;
  }

  .wel-landing--layout-voyage .voyage-hero__copy {
    order: 1;
  }

  .wel-landing--layout-voyage .voyage-hero__actions {
    order: 2;
  }

  .wel-landing--layout-voyage .voyage-hero__media {
    order: 3;
  }
}

.wel-landing--layout-voyage .voyage-hero__blob {
  position: absolute;
  left: 50%;
  top: 42%;
  translate: -50% -50%;
  width: min(70%, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 45% 42%,
      color-mix(in srgb, var(--cta-light, var(--cta)) 42%, transparent) 0%,
      transparent 68%
    );
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}

.wel-landing--layout-voyage .voyage-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  width: 100%;
  min-width: 0;
}

.wel-landing--layout-voyage .voyage-hero .brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 auto;
  padding: 0.35rem 0.75rem 0.35rem 0.55rem;
  background: var(--voyage-paper);
  border: 1px solid color-mix(in srgb, var(--cta) 18%, var(--line));
  border-radius: var(--voyage-pill);
  box-shadow: 0 1px 2px color-mix(in srgb, var(--ink) 4%, transparent);
  color: var(--cta-deep, var(--cta));
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  backdrop-filter: none;
}

/* Leading status dot — kill Classic flower/star ::before */
.wel-landing--layout-voyage .voyage-hero .brand::before {
  content: "" !important;
  display: block !important;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--cta);
  flex: 0 0 auto;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cta) 18%, transparent);
}

.wel-landing--layout-voyage .voyage-hero .brand::after {
  content: none !important;
  display: none !important;
}

.wel-landing--layout-voyage .voyage-hero h1[data-wel-edit="title"] {
  margin: 0 auto;
  font-size: clamp(1.75rem, 3.6vw, 2.625rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--heading, var(--ink));
  max-width: 18ch;
  text-wrap: balance;
  text-align: center;
}

.wel-landing--layout-voyage .voyage-hero .hero-sub {
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 38ch;
  font-weight: 500;
  text-align: center;
}

.wel-landing--layout-voyage .voyage-hero__media {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(100%, 640px);
  margin-inline: auto;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* No rotated frame — clean media plane */
.wel-landing--layout-voyage .voyage-hero__media::before {
  content: none;
  display: none;
}

.wel-landing--layout-voyage .voyage-hero .gallery {
  position: relative;
  margin: 0 auto;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 1px 2px color-mix(in srgb, var(--ink) 4%, transparent),
    0 18px 40px color-mix(in srgb, var(--ink) 10%, transparent);
  background: var(--voyage-paper);
  transform: none;
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}

.wel-landing--layout-voyage .voyage-hero .gallery-thumbs {
  display: none;
}

.wel-landing--layout-voyage .voyage-hero .gallery-main img,
.wel-landing--layout-voyage .voyage-hero .gallery-carousel__slide img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  display: block;
}

/* Gallery chrome — glass controls, tight dots */
.wel-landing--layout-voyage .voyage-hero .gallery--carousel .gallery-nav {
  padding: 0 0.65rem;
}

.wel-landing--layout-voyage .voyage-hero .gallery--carousel .gallery-nav__btn {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--ink);
  background: color-mix(in srgb, var(--voyage-paper) 88%, transparent);
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 14px color-mix(in srgb, var(--ink) 10%, transparent),
    0 0 0 1px color-mix(in srgb, var(--line) 55%, transparent);
  opacity: 0.92;
}

.wel-landing--layout-voyage .voyage-hero .gallery--carousel .gallery-nav__btn:hover {
  opacity: 1;
  transform: scale(1.04);
  color: var(--cta-deep, var(--cta));
}

.wel-landing--layout-voyage .voyage-hero .gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.75rem;
  z-index: 36;
  gap: 0.4rem;
  pointer-events: none;
  justify-content: center;
}

.wel-landing--layout-voyage .voyage-hero .gallery-dots__dot {
  pointer-events: auto;
  width: 0.4rem;
  height: 0.4rem;
  background: color-mix(in srgb, #fff 55%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--ink) 12%, transparent);
}

.wel-landing--layout-voyage .voyage-hero .gallery-dots__dot.is-active {
  width: 1.1rem;
  border-radius: 999px;
  background: var(--cta);
  box-shadow: none;
}

.wel-landing--layout-voyage .voyage-hero__actions {
  position: relative;
  z-index: 2;
  margin-top: 1.15rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.wel-landing--layout-voyage .voyage-hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto;
}

/* Primary Order — fill follows Button style; radius follows Border style */
.wel-landing--layout-voyage .voyage-hero .cta:not(.cta-ghost),
.wel-landing--layout-voyage.wel-landing--btn-diagonal .voyage-hero .cta:not(.cta-ghost),
.wel-landing--layout-voyage.wel-landing--btn-solid .voyage-hero .cta:not(.cta-ghost) {
  order: 1;
  width: auto;
  min-width: 10.5rem;
  height: 3.25rem;
  min-height: 3.25rem;
  padding: 0 1.5rem !important;
  justify-content: center;
  align-items: center;
  border-radius: var(--wel-btn-radius, 999px) !important;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  background: var(
    --wel-btn-fill,
    linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%)
  ) !important;
  color: var(--cta-ink, #fff) !important;
  box-shadow: var(
    --wel-btn-shadow,
    0 10px 24px color-mix(in srgb, var(--cta) 32%, transparent)
  );
  transform: none;
}

.wel-landing--layout-voyage .voyage-hero .cta:not(.cta-ghost):hover,
.wel-landing--layout-voyage.wel-landing--btn-diagonal .voyage-hero .cta:not(.cta-ghost):hover,
.wel-landing--layout-voyage.wel-landing--btn-solid .voyage-hero .cta:not(.cta-ghost):hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: var(
    --wel-btn-shadow-hover,
    0 14px 28px color-mix(in srgb, var(--cta) 40%, transparent)
  );
}

.wel-landing--layout-voyage .voyage-hero .cta:not(.cta-ghost):active,
.wel-landing--layout-voyage.wel-landing--btn-diagonal .voyage-hero .cta:not(.cta-ghost):active,
.wel-landing--layout-voyage.wel-landing--btn-solid .voyage-hero .cta:not(.cta-ghost):active {
  transform: translateY(0);
  filter: brightness(0.98);
  box-shadow: var(
    --wel-btn-shadow-active,
    0 4px 14px color-mix(in srgb, var(--cta) 28%, transparent)
  );
}

.wel-landing--layout-voyage .voyage-hero .cta-ghost {
  order: 2;
  background: transparent !important;
  background-image: none !important;
  color: var(--ink) !important;
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: none;
  height: 3.25rem;
  min-height: 3.25rem !important;
  min-width: 0 !important;
  width: auto !important;
  padding: 0 0.15rem 0 0 !important;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: 0 !important;
}

.wel-landing--layout-voyage .voyage-hero .cta-ghost::before {
  content: "";
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--wel-btn-radius, 999px);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8z'/%3E%3C/svg%3E")
      center / 1.05rem no-repeat,
    var(
      --wel-btn-fill,
      linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%)
    );
  box-shadow: var(
    --wel-btn-shadow,
    0 8px 18px color-mix(in srgb, var(--cta) 28%, transparent)
  );
  flex: 0 0 auto;
  transition: transform 0.15s ease;
}

.wel-landing--layout-voyage .voyage-hero .cta-ghost:hover::before {
  transform: scale(1.05);
}

/* Desktop: same centered stack, roomier type + media */
@media (min-width: 720px) {
  .wel-landing--layout-voyage .voyage-hero {
    padding: 2rem 0 2.35rem;
  }

  .wel-landing--layout-voyage .voyage-hero__inner {
    gap: 1.75rem;
  }

  .wel-landing--layout-voyage .voyage-hero__stack {
    max-width: 44rem;
  }

  .wel-landing--layout-voyage .voyage-hero__media {
    max-width: min(100%, 680px);
  }

  .wel-landing--layout-voyage .voyage-hero__blob {
    top: 55%;
    width: min(58%, 560px);
  }

  .wel-landing--layout-voyage .voyage-hero h1[data-wel-edit="title"] {
    max-width: 16ch;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
  }

  .wel-landing--layout-voyage .voyage-hero .hero-sub {
    font-size: 1.02rem;
    max-width: 42ch;
  }

  .wel-landing--layout-voyage .voyage-hero .gallery-main img,
  .wel-landing--layout-voyage .voyage-hero .gallery-carousel__slide img {
    aspect-ratio: 1 / 1;
  }
}

.wel-landing--layout-voyage.wel-landing--editor .voyage-hero .wel-block-shell {
  background: transparent;
  border-style: dashed;
}

/* ========== LIVE / MARQUEE ========== */
.wel-landing--layout-voyage .live-viewers-bar,
.wel-landing--layout-voyage .topbar {
  width: 100%;
  max-width: none;
  margin: 0;
}

.wel-landing--layout-voyage .live-viewers-bar {
  display: flex;
  justify-content: flex-start;
  padding: 0.65rem var(--gutter) 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  max-width: none !important;
  width: 100% !important;
}

.wel-landing--layout-voyage .live-viewers {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem;
  border-radius: var(--voyage-pill);
  background: color-mix(in srgb, var(--voyage-paper) 90%, transparent) !important;
  border: 1px solid color-mix(in srgb, var(--cta) 20%, var(--line));
  box-shadow: var(--voyage-shadow-soft);
  font-size: 0.8rem;
  backdrop-filter: blur(8px);
  width: auto !important;
  max-width: none !important;
}

.wel-landing--layout-voyage .topbar {
  margin-top: 0.85rem;
  background: var(--cta);
  color: var(--cta-ink, #fff);
  padding-block: 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

/* Shared content column — never double-subtract gutters inside .wrap */
.wel-landing--layout-voyage .phone-banner,
.wel-landing--layout-voyage a.phone-banner,
.wel-landing--layout-voyage .trust[data-wel-edit="trust"],
.wel-landing--layout-voyage [data-wel-edit="guarantee"],
.wel-landing--layout-voyage .guarantee,
.wel-landing--layout-voyage .wel-guarantee,
.wel-landing--layout-voyage [data-wel-edit="why"],
.wel-landing--layout-voyage .wel-trust-score,
.wel-landing--layout-voyage [data-wel-edit="trust_score"],
.wel-landing--layout-voyage [data-wel-edit="features"],
.wel-landing--layout-voyage [data-wel-edit="steps"],
.wel-landing--layout-voyage .wel-steps,
.wel-landing--layout-voyage [data-wel-edit="reviews"],
.wel-landing--layout-voyage .wel-reviews,
.wel-landing--layout-voyage [data-wel-edit="faq"],
.wel-landing--layout-voyage .wel-faq,
.wel-landing--layout-voyage [data-wel-edit="proof"],
.wel-landing--layout-voyage .wel-proof,
.wel-landing--layout-voyage .benefit-list,
.wel-landing--layout-voyage .wel-steps__list,
.wel-landing--layout-voyage .cta-wrap,
.wel-landing--layout-voyage [data-wel-edit="contact"],
.wel-landing--layout-voyage .contact-strip,
.wel-landing--layout-voyage details.faq-item,
.wel-landing--layout-voyage [data-wel-edit="faq"] details,
.wel-landing--layout-voyage .wel-countdown,
.wel-landing--layout-voyage [data-wel-edit="countdown"],
.wel-landing--layout-voyage [data-wel-edit="urgency"] {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  box-sizing: border-box;
}

.wel-landing--layout-voyage .wrap .phone-banner,
.wel-landing--layout-voyage .wrap a.phone-banner,
.wel-landing--layout-voyage .wrap .trust[data-wel-edit="trust"],
.wel-landing--layout-voyage .wrap [data-wel-edit="guarantee"],
.wel-landing--layout-voyage .wrap .wel-guarantee,
.wel-landing--layout-voyage .wrap [data-wel-edit="why"],
.wel-landing--layout-voyage .wrap .wel-trust-score,
.wel-landing--layout-voyage .wrap [data-wel-edit="trust_score"],
.wel-landing--layout-voyage .wrap [data-wel-edit="features"],
.wel-landing--layout-voyage .wrap [data-wel-edit="steps"],
.wel-landing--layout-voyage .wrap .wel-steps,
.wel-landing--layout-voyage .wrap [data-wel-edit="reviews"],
.wel-landing--layout-voyage .wrap .wel-reviews,
.wel-landing--layout-voyage .wrap [data-wel-edit="faq"],
.wel-landing--layout-voyage .wrap .wel-faq,
.wel-landing--layout-voyage .wrap [data-wel-edit="proof"],
.wel-landing--layout-voyage .wrap .wel-proof,
.wel-landing--layout-voyage .wrap .benefit-list,
.wel-landing--layout-voyage .wrap .wel-steps__list,
.wel-landing--layout-voyage .wrap .cta-wrap,
.wel-landing--layout-voyage .wrap .wel-countdown,
.wel-landing--layout-voyage .wrap [data-wel-edit="countdown"],
.wel-landing--layout-voyage .wrap [data-wel-edit="urgency"],
.wel-landing--layout-voyage .wrap details.faq-item,
.wel-landing--layout-voyage .wrap [data-wel-edit="contact"] {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box;
}

.wel-landing--layout-voyage .wrap .wel-guarantee__card {
  width: 100%;
  box-sizing: border-box;
}

/* ========== SECTION RHYTHM (full-bleed bands) ========== */
/* Proof uses its own white shell (below) — no mist band. */

.wel-landing--layout-voyage .section-title,
.wel-landing--layout-voyage .section-head {
  text-align: start;
  margin-bottom: 1.35rem;
}

.wel-landing--layout-voyage .section-title h2,
.wel-landing--layout-voyage .section-head h2,
.wel-landing--layout-voyage .wel-trust-score__title,
.wel-landing--layout-voyage .wel-reviews h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: var(--heading, var(--ink));
}

.wel-landing--layout-voyage .section-title p,
.wel-landing--layout-voyage .section-head p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 46ch;
}

/* ========== STATS — white card shell (same language as guarantee) ========== */
.wel-landing--layout-voyage .wel-trust-score,
.wel-landing--layout-voyage [data-wel-edit="trust_score"] {
  width: 100%;
  margin: 1.35rem auto;
}

.wel-landing--layout-voyage .wel-trust-score__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  margin: 0;
  padding: 1.45rem 1.25rem 1.5rem;
  border-radius: var(--voyage-radius);
  background:
    linear-gradient(
      165deg,
      color-mix(in srgb, var(--cta) 9%, var(--voyage-paper)) 0%,
      var(--voyage-paper) 55%
    );
  border: 1px solid color-mix(in srgb, var(--cta) 12%, var(--line));
  box-shadow: var(--voyage-shadow-soft);
}

.wel-landing--layout-voyage .wel-trust-score__card::before {
  content: "";
  position: absolute;
  width: 8rem;
  height: 8rem;
  right: -2.25rem;
  top: -2.75rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cta) 9%, transparent);
  pointer-events: none;
  z-index: 0;
}

.wel-landing--layout-voyage .wel-trust-score__card > * {
  position: relative;
  z-index: 1;
}

.wel-landing--layout-voyage .wel-trust-score__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  margin: 0;
  max-width: 40rem;
  width: 100%;
}

.wel-landing--layout-voyage .wel-trust-score__ico {
  display: none !important;
}

.wel-landing--layout-voyage .wel-trust-score__top > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}

.wel-landing--layout-voyage .wel-trust-score__label {
  display: inline-flex;
  margin: 0;
  padding: 0.3rem 0.75rem;
  border-radius: var(--voyage-pill);
  background: color-mix(in srgb, var(--cta) 12%, var(--voyage-paper));
  color: var(--cta-deep, var(--brand-dark));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
  line-height: 1.25;
}

.wel-landing--layout-voyage .wel-trust-score__title {
  width: 100%;
  max-width: none;
  margin: 0 auto !important;
  overflow: visible;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem) !important;
  line-height: 1.28 !important;
  color: var(--heading, var(--ink));
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center !important;
  text-wrap: balance;
}

.wel-landing--layout-voyage .wel-trust-score__stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

@media (max-width: 640px) {
  .wel-landing--layout-voyage .wel-trust-score__stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    max-width: 22rem !important;
    margin-inline: auto !important;
  }
}

.wel-landing--layout-voyage .wel-trust-score__stats > article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 7.25rem;
  min-width: 0;
  padding: 1.2rem 1.1rem 1.15rem;
  text-align: center;
  background: color-mix(in srgb, var(--cta) 7%, var(--voyage-paper));
  border: 1px solid color-mix(in srgb, var(--cta) 10%, transparent);
  border-radius: 16px;
  box-shadow: none;
  overflow: hidden;
  box-sizing: border-box;
}

.wel-landing--layout-voyage .wel-trust-score__stats > article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 2.5rem;
  height: 3px;
  border-radius: 999px;
  background: var(--cta);
}

.wel-landing--layout-voyage .wel-trust-score__stats article strong {
  display: block;
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--cta);
  line-height: 1.05;
}

.wel-landing--layout-voyage .wel-trust-score__stats article span {
  display: block;
  margin-top: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.35;
  max-width: none;
}

@media (min-width: 720px) {
  .wel-landing--layout-voyage .wel-trust-score__card {
    padding: 1.65rem 1.65rem 1.7rem;
    gap: 1rem;
  }

  .wel-landing--layout-voyage .wel-trust-score__stats {
    gap: 0.85rem;
  }
}

@media (min-width: 1100px) {
  .wel-landing--layout-voyage .wel-trust-score__stats > article {
    min-height: 7.75rem;
    padding: 1.35rem 1.3rem 1.25rem;
  }
}


/* ========== TRUST BADGES — same full-width tile language as stats/guarantee ========== */
.wel-landing--layout-voyage .trust[data-wel-edit="trust"] {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.25rem auto;
  padding: 0;
  max-width: none !important;
  width: 100% !important;
  border: 0;
  background: transparent;
}

@media (max-width: 640px) {
  .wel-landing--layout-voyage .trust[data-wel-edit="trust"] {
    grid-template-columns: 1fr;
    max-width: 22rem !important;
    margin-inline: auto;
    gap: 0.65rem;
  }
}

.wel-landing--layout-voyage .trust[data-wel-edit="trust"] > article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 7.25rem;
  min-width: 0;
  padding: 1.2rem 1.15rem 1.1rem;
  text-align: center;
  background: color-mix(in srgb, var(--cta) 7%, var(--voyage-paper));
  border: 1px solid color-mix(in srgb, var(--cta) 10%, transparent);
  border-radius: 16px;
  box-shadow: none;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.35;
  box-sizing: border-box;
}

.wel-landing--layout-voyage .trust[data-wel-edit="trust"] .ico {
  width: 3rem;
  height: 3rem;
  margin: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--cta-deep, var(--brand-dark));
  background: color-mix(in srgb, var(--cta) 12%, var(--voyage-paper));
  border: 1px solid color-mix(in srgb, var(--cta) 16%, transparent);
  box-shadow: none;
}

.wel-landing--layout-voyage .trust[data-wel-edit="trust"] p {
  margin: 0;
  max-width: none;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  text-wrap: balance;
}

/* ========== FEATURES — white shell + balanced grid (no orphan empty cells) ========== */
.wel-landing--layout-voyage [data-wel-edit="features"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 1.35rem auto;
  padding: 1.45rem 1.25rem 1.5rem;
  border-radius: var(--voyage-radius);
  background:
    linear-gradient(
      165deg,
      color-mix(in srgb, var(--cta) 9%, var(--voyage-paper)) 0%,
      var(--voyage-paper) 55%
    );
  border: 1px solid color-mix(in srgb, var(--cta) 12%, var(--line));
  box-shadow: var(--voyage-shadow-soft);
  box-sizing: border-box;
  width: 100%;
  max-width: var(--max);
}

.wel-landing--layout-voyage [data-wel-edit="features"]::before {
  content: "";
  position: absolute;
  width: 8rem;
  height: 8rem;
  right: -2.25rem;
  top: -2.75rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cta) 9%, transparent);
  pointer-events: none;
  z-index: 0;
}

.wel-landing--layout-voyage [data-wel-edit="features"] > * {
  position: relative;
  z-index: 1;
}

.wel-landing--layout-voyage .wrap [data-wel-edit="features"] {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.wel-landing--layout-voyage [data-wel-edit="features"] .section-head,
.wel-landing--layout-voyage [data-wel-edit="features"] .section-title {
  text-align: center;
  margin: 0 0 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.wel-landing--layout-voyage [data-wel-edit="features"] .section-head h2,
.wel-landing--layout-voyage [data-wel-edit="features"] .section-title h2 {
  text-align: center;
  text-wrap: balance;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  max-width: 28ch;
}

.wel-landing--layout-voyage [data-wel-edit="features"] .section-head p,
.wel-landing--layout-voyage [data-wel-edit="features"] .section-title p {
  margin: 0;
  text-align: center;
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.wel-landing--layout-voyage .feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  width: 100%;
  align-items: stretch;
}

.wel-landing--layout-voyage .feature-grid > li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.875rem;
  margin: 0;
  min-width: 0;
  min-height: 4.85rem;
  height: 100%;
  padding: 0.9rem 1rem;
  background: color-mix(in srgb, var(--cta) 6%, var(--voyage-paper));
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--cta) 11%, var(--line));
  box-shadow: none;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.wel-landing--layout-voyage .feature-grid > li::before {
  display: none !important;
  content: none !important;
}

.wel-landing--layout-voyage .feature-grid .ico {
  flex: 0 0 2.65rem;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 11px;
  display: grid;
  place-items: center;
  place-content: center;
  background: color-mix(in srgb, var(--cta) 11%, var(--voyage-paper));
  color: var(--cta-deep, var(--brand-dark));
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: none;
  border: 1px solid color-mix(in srgb, var(--cta) 14%, transparent);
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.wel-landing--layout-voyage .feature-grid .ico img,
.wel-landing--layout-voyage .feature-grid .ico svg {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  display: block;
}

.wel-landing--layout-voyage .feature-grid__copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.18rem;
}

/* Default desktop: 2 equal columns */
@media (min-width: 640px) {
  .wel-landing--layout-voyage .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .wel-landing--layout-voyage .feature-grid > li {
    padding: 0.95rem 1.05rem;
    min-height: 5rem;
  }
}

/* Exactly 3 or 6 items → 3 equal columns (no orphan row) */
@media (min-width: 900px) {
  .wel-landing--layout-voyage .feature-grid:has(> li:nth-child(3):last-child),
  .wel-landing--layout-voyage .feature-grid:has(> li:nth-child(6):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
  }
}

.wel-landing--layout-voyage .feature-grid strong {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--heading, var(--ink));
  letter-spacing: -0.02em;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.wel-landing--layout-voyage .feature-grid em {
  display: block;
  margin: 0;
  padding: 0;
  font-style: normal;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

@media (min-width: 720px) {
  .wel-landing--layout-voyage [data-wel-edit="features"] {
    padding: 1.65rem 1.65rem 1.7rem;
  }
}

/* ========== WHY — white shell + modern benefit tiles ========== */
.wel-landing--layout-voyage [data-wel-edit="why"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 1.35rem auto;
  padding: 1.45rem 1.25rem 1.5rem;
  border-radius: var(--voyage-radius);
  background:
    linear-gradient(
      165deg,
      color-mix(in srgb, var(--cta) 9%, var(--voyage-paper)) 0%,
      var(--voyage-paper) 55%
    );
  border: 1px solid color-mix(in srgb, var(--cta) 12%, var(--line));
  box-shadow: var(--voyage-shadow-soft);
  box-sizing: border-box;
}

.wel-landing--layout-voyage [data-wel-edit="why"]::before {
  content: "";
  position: absolute;
  width: 8rem;
  height: 8rem;
  right: -2.25rem;
  top: -2.75rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cta) 9%, transparent);
  pointer-events: none;
  z-index: 0;
}

.wel-landing--layout-voyage [data-wel-edit="why"] > * {
  position: relative;
  z-index: 1;
}

.wel-landing--layout-voyage [data-wel-edit="why"] .section-head,
.wel-landing--layout-voyage [data-wel-edit="why"] .section-title {
  text-align: center;
  margin: 0 0 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.wel-landing--layout-voyage [data-wel-edit="why"] .section-head h2,
.wel-landing--layout-voyage [data-wel-edit="why"] .section-title h2 {
  text-align: center;
  text-wrap: balance;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  max-width: 28ch;
}

.wel-landing--layout-voyage [data-wel-edit="why"] .section-head p,
.wel-landing--layout-voyage [data-wel-edit="why"] .section-title p {
  margin: 0;
  text-align: center;
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.wel-landing--layout-voyage .benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr;
  width: 100%;
}

@media (min-width: 640px) {
  .wel-landing--layout-voyage .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
  }
}

@media (min-width: 1100px) {
  .wel-landing--layout-voyage .benefit-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.wel-landing--layout-voyage .benefit-list > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  min-width: 0;
  min-height: 100%;
  padding: 1.15rem 1.1rem 1.2rem;
  background: color-mix(in srgb, var(--cta) 7%, var(--voyage-paper));
  border-radius: 16px;
  box-shadow: none;
  border: 1px solid color-mix(in srgb, var(--cta) 10%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--cta) 10%, transparent);
  box-sizing: border-box;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
  .wel-landing--layout-voyage .benefit-list > li:hover {
    border-color: color-mix(in srgb, var(--cta) 28%, var(--line));
    transform: translateY(-2px);
  }
}

.wel-landing--layout-voyage .benefit-list .ico {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--cta) 12%, var(--voyage-paper));
  color: var(--cta-deep, var(--brand-dark));
  font-size: 1.45rem;
  line-height: 1;
  border: 1px solid color-mix(in srgb, var(--cta) 16%, transparent);
  box-shadow: none;
}

.wel-landing--layout-voyage .benefit-list > li > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  min-width: 0;
  width: 100%;
}

.wel-landing--layout-voyage .benefit-list strong {
  display: block;
  margin: 0;
  color: var(--heading, var(--ink));
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.wel-landing--layout-voyage .benefit-list span {
  display: block;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .wel-landing--layout-voyage [data-wel-edit="why"] {
    padding: 1.65rem 1.65rem 1.7rem;
  }
}

/* ========== PROOF — white shell + equal photo tiles ========== */
.wel-landing--layout-voyage [data-wel-edit="proof"],
.wel-landing--layout-voyage .wel-proof {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 1.35rem auto;
  padding: 1.6rem 1.3rem 1.65rem;
  border-radius: var(--voyage-radius);
  background: var(--voyage-paper);
  border: 1px solid color-mix(in srgb, var(--cta) 10%, var(--line));
  box-shadow: var(--voyage-shadow-soft);
  box-sizing: border-box;
  width: 100%;
  max-width: var(--max);
}

.wel-landing--layout-voyage .wrap [data-wel-edit="proof"],
.wel-landing--layout-voyage .wrap .wel-proof {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.wel-landing--layout-voyage [data-wel-edit="proof"]::before,
.wel-landing--layout-voyage .wel-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      50% 40% at 100% 0%,
      color-mix(in srgb, var(--cta) 9%, transparent),
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

.wel-landing--layout-voyage [data-wel-edit="proof"] > *,
.wel-landing--layout-voyage .wel-proof > * {
  position: relative;
  z-index: 1;
}

.wel-landing--layout-voyage [data-wel-edit="proof"] .section-head,
.wel-landing--layout-voyage [data-wel-edit="proof"] .section-title,
.wel-landing--layout-voyage .wel-proof .section-head,
.wel-landing--layout-voyage .wel-proof .section-title {
  text-align: center;
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.wel-landing--layout-voyage [data-wel-edit="proof"] .section-head h2,
.wel-landing--layout-voyage .wel-proof .section-title h2,
.wel-landing--layout-voyage .wel-proof h2 {
  text-align: center;
  text-wrap: balance;
  font-size: clamp(1.4rem, 2.9vw, 1.85rem);
  max-width: 26ch;
  margin: 0;
}

.wel-landing--layout-voyage [data-wel-edit="proof"] .section-head p,
.wel-landing--layout-voyage .wel-proof .section-title p,
.wel-landing--layout-voyage .wel-proof__sub {
  margin: 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.94rem;
  max-width: 44ch;
  line-height: 1.5;
}

.wel-landing--layout-voyage .wel-proof__stage {
  min-height: 0;
  /* Let the carousel sit flush to the shell edges for a full-bleed scroll feel */
  margin-inline: -0.35rem;
}

.wel-landing--layout-voyage .wel-proof__preloader {
  border-radius: 18px;
  background: color-mix(in srgb, var(--voyage-paper) 88%, transparent);
}

/* Horizontal 1:1 proof carousel (manual swipe + JS autoplay) */
.wel-landing--layout-voyage .proof-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0.15rem 0.35rem 0.55rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.35rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--cta) 35%, transparent) transparent;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 0.6rem,
    #000 calc(100% - 1.1rem),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 0.6rem,
    #000 calc(100% - 1.1rem),
    transparent 100%
  );
}

.wel-landing--layout-voyage .proof-grid[data-wel-proof-carousel] {
  cursor: grab;
}

.wel-landing--layout-voyage .proof-grid[data-wel-proof-carousel]:active {
  cursor: grabbing;
}

.wel-landing--layout-voyage .proof-grid::-webkit-scrollbar {
  height: 5px;
}

.wel-landing--layout-voyage .proof-grid::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--cta) 35%, transparent);
  border-radius: 999px;
}

.wel-landing--layout-voyage .proof-grid > *:first-child {
  grid-row: auto;
}

.wel-landing--layout-voyage .proof-grid figure,
.wel-landing--layout-voyage .proof-grid .wel-skel {
  flex: 0 0 min(78%, 17.5rem);
  width: min(78%, 17.5rem);
  max-width: 17.5rem;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--cta) 12%, var(--line));
  background: color-mix(in srgb, var(--cta) 6%, var(--voyage-paper));
  box-shadow:
    0 1px 0 color-mix(in srgb, #fff 60%, transparent) inset,
    0 10px 22px color-mix(in srgb, var(--ink) 5%, transparent);
  aspect-ratio: 1 / 1;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) {
  .wel-landing--layout-voyage .proof-grid figure:hover,
  .wel-landing--layout-voyage .proof-grid .wel-skel:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--cta) 28%, var(--line));
    box-shadow:
      0 1px 0 color-mix(in srgb, #fff 60%, transparent) inset,
      0 16px 30px color-mix(in srgb, var(--cta) 12%, transparent);
  }
}

.wel-landing--layout-voyage .proof-grid img,
.wel-landing--layout-voyage [data-wel-edit="proof"] .proof-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

@media (min-width: 640px) {
  .wel-landing--layout-voyage .proof-grid {
    gap: 0.85rem;
  }

  .wel-landing--layout-voyage .proof-grid figure,
  .wel-landing--layout-voyage .proof-grid .wel-skel {
    flex-basis: min(42%, 18.5rem);
    width: min(42%, 18.5rem);
    max-width: 18.5rem;
  }
}

@media (min-width: 900px) {
  .wel-landing--layout-voyage .proof-grid {
    gap: 1rem;
  }

  .wel-landing--layout-voyage .proof-grid figure,
  .wel-landing--layout-voyage .proof-grid .wel-skel {
    flex-basis: min(32%, 19rem);
    width: min(32%, 19rem);
    max-width: 19rem;
  }

  .wel-landing--layout-voyage [data-wel-edit="proof"],
  .wel-landing--layout-voyage .wel-proof {
    padding: 1.85rem 1.75rem 1.9rem;
  }
}

/* ========== REVIEWS — trusted white shell ========== */
.wel-landing--layout-voyage [data-wel-edit="reviews"],
.wel-landing--layout-voyage .wel-reviews {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 1.35rem auto;
  padding: 1.6rem 1.3rem 1.65rem;
  border-radius: var(--voyage-radius);
  background: var(--voyage-paper);
  border: 1px solid color-mix(in srgb, var(--cta) 10%, var(--line));
  box-shadow: var(--voyage-shadow-soft);
  box-sizing: border-box;
  width: 100%;
  max-width: var(--max);
}

.wel-landing--layout-voyage .wrap [data-wel-edit="reviews"],
.wel-landing--layout-voyage .wrap .wel-reviews {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.wel-landing--layout-voyage [data-wel-edit="reviews"]::before,
.wel-landing--layout-voyage .wel-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      50% 40% at 100% 0%,
      color-mix(in srgb, var(--cta) 9%, transparent),
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

.wel-landing--layout-voyage [data-wel-edit="reviews"] > *,
.wel-landing--layout-voyage .wel-reviews > * {
  position: relative;
  z-index: 1;
}

.wel-landing--layout-voyage [data-wel-edit="reviews"] .section-head,
.wel-landing--layout-voyage [data-wel-edit="reviews"] .section-title,
.wel-landing--layout-voyage .wel-reviews .section-head,
.wel-landing--layout-voyage .wel-reviews .section-title {
  text-align: center;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.wel-landing--layout-voyage [data-wel-edit="reviews"] .section-head h2,
.wel-landing--layout-voyage .wel-reviews .section-title h2,
.wel-landing--layout-voyage .wel-reviews h2 {
  text-align: center;
  text-wrap: balance;
  font-size: clamp(1.4rem, 2.9vw, 1.85rem) !important;
  max-width: 22ch;
  margin: 0;
}

.wel-landing--layout-voyage .wel-reviews__sub {
  margin: 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.94rem;
  max-width: 40ch;
  line-height: 1.45;
}

.wel-landing--layout-voyage .wel-reviews__list {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  max-width: none !important;
  width: 100%;
  margin: 0;
}

@media (min-width: 720px) {
  .wel-landing--layout-voyage .wel-reviews__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.wel-landing--layout-voyage .wel-reviews__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  margin: 0;
  background: color-mix(in srgb, var(--voyage-paper) 90%, var(--cta) 4%);
  border-radius: 18px;
  padding: 1.15rem 1.15rem 1.2rem;
  box-shadow:
    0 1px 0 color-mix(in srgb, #fff 65%, transparent) inset,
    0 10px 22px color-mix(in srgb, var(--ink) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--cta) 12%, var(--line));
  overflow: hidden;
}

.wel-landing--layout-voyage .wel-reviews__card::before {
  display: none !important;
  content: none !important;
}

.wel-landing--layout-voyage .wel-reviews__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wel-landing--layout-voyage .wel-reviews__av {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--cta) 14%, var(--voyage-paper));
  color: var(--cta-deep, var(--brand-dark));
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  border: 1px solid color-mix(in srgb, var(--cta) 18%, transparent);
}

.wel-landing--layout-voyage .wel-reviews__who {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  min-width: 0;
}

.wel-landing--layout-voyage .wel-reviews__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  margin: 0;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}

.wel-landing--layout-voyage .wel-reviews__meta strong {
  font-size: 0.98rem;
  color: var(--heading, var(--ink));
}

.wel-landing--layout-voyage .wel-reviews__meta span:not(.wel-reviews__verified) {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.wel-landing--layout-voyage .wel-reviews__verified {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  border-radius: var(--voyage-pill);
  background: var(--brand, var(--cta));
  color: var(--cta-ink, #fff);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.wel-landing--layout-voyage .wel-reviews__stars {
  margin: 0;
  color: #e6a700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.wel-landing--layout-voyage .wel-reviews__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (min-width: 720px) {
  .wel-landing--layout-voyage [data-wel-edit="reviews"],
  .wel-landing--layout-voyage .wel-reviews {
    padding: 1.85rem 1.75rem 1.9rem;
  }
}

/* ========== STEPS — journey path (modern, professional) ========== */
.wel-landing--layout-voyage [data-wel-edit="steps"],
.wel-landing--layout-voyage .wel-steps {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 1.35rem auto;
  padding: 1.6rem 1.3rem 1.65rem;
  border-radius: var(--voyage-radius);
  background: var(--voyage-paper);
  border: 1px solid color-mix(in srgb, var(--cta) 10%, var(--line));
  box-shadow: var(--voyage-shadow-soft);
  box-sizing: border-box;
}

.wel-landing--layout-voyage [data-wel-edit="steps"]::before,
.wel-landing--layout-voyage .wel-steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      55% 45% at 100% 0%,
      color-mix(in srgb, var(--cta) 10%, transparent),
      transparent 70%
    ),
    radial-gradient(
      40% 35% at 0% 100%,
      color-mix(in srgb, var(--cta) 6%, transparent),
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

.wel-landing--layout-voyage [data-wel-edit="steps"] > *,
.wel-landing--layout-voyage .wel-steps > * {
  position: relative;
  z-index: 1;
}

.wel-landing--layout-voyage [data-wel-edit="steps"] .section-head,
.wel-landing--layout-voyage [data-wel-edit="steps"] .section-title,
.wel-landing--layout-voyage .wel-steps .section-head,
.wel-landing--layout-voyage .wel-steps .section-title {
  text-align: center;
  margin: 0 0 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.wel-landing--layout-voyage [data-wel-edit="steps"] .section-head h2,
.wel-landing--layout-voyage [data-wel-edit="steps"] .section-title h2,
.wel-landing--layout-voyage .wel-steps .section-head h2,
.wel-landing--layout-voyage .wel-steps .section-title h2 {
  text-align: center;
  text-wrap: balance;
  font-size: clamp(1.4rem, 2.9vw, 1.85rem);
  max-width: 26ch;
  letter-spacing: -0.03em;
}

.wel-landing--layout-voyage .wel-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  width: 100% !important;
  max-width: none !important;
  position: relative;
}

@media (min-width: 720px) {
  .wel-landing--layout-voyage .wel-steps__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }

  /* Connector line behind step badges */
  .wel-landing--layout-voyage .wel-steps__list::after {
    content: "";
    position: absolute;
    top: 2.05rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(
      90deg,
      color-mix(in srgb, var(--cta) 8%, transparent) 0%,
      color-mix(in srgb, var(--cta) 35%, transparent) 20%,
      color-mix(in srgb, var(--cta) 35%, transparent) 80%,
      color-mix(in srgb, var(--cta) 8%, transparent) 100%
    );
    z-index: 0;
    pointer-events: none;
  }
}

.wel-landing--layout-voyage .wel-steps__list > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  margin: 0;
  min-width: 0;
  min-height: 100%;
  padding: 1.35rem 1.15rem 1.4rem;
  background: color-mix(in srgb, var(--voyage-paper) 92%, #fff);
  border-radius: 20px;
  box-shadow:
    0 1px 0 color-mix(in srgb, #fff 70%, transparent) inset,
    0 10px 24px color-mix(in srgb, var(--ink) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--cta) 12%, var(--line));
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) {
  .wel-landing--layout-voyage .wel-steps__list > li:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--cta) 28%, var(--line));
    box-shadow:
      0 1px 0 color-mix(in srgb, #fff 70%, transparent) inset,
      0 16px 32px color-mix(in srgb, var(--cta) 12%, transparent);
  }
}

.wel-landing--layout-voyage .wel-steps__num {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border-radius: var(--wel-btn-radius, 50%);
  display: grid;
  place-items: center;
  background: var(
    --wel-btn-fill,
    linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%)
  );
  color: var(--cta-ink, #fff);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--cta) 14%, var(--voyage-paper)),
    var(
      --wel-btn-shadow,
      0 12px 22px color-mix(in srgb, var(--cta) 28%, transparent)
    );
}

.wel-landing--layout-voyage .wel-steps__text {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: center;
  text-wrap: balance;
  max-width: 28ch;
}

@media (min-width: 720px) {
  .wel-landing--layout-voyage [data-wel-edit="steps"],
  .wel-landing--layout-voyage .wel-steps {
    padding: 1.85rem 1.75rem 1.9rem;
  }

  .wel-landing--layout-voyage .wel-steps__list > li {
    padding: 1.5rem 1.25rem 1.55rem;
    gap: 1rem;
  }

  .wel-landing--layout-voyage .wel-steps__num {
    width: 3.15rem;
    height: 3.15rem;
    font-size: 1.2rem;
  }

  .wel-landing--layout-voyage .wel-steps__text {
    font-size: 0.95rem;
    max-width: none;
  }
}

/* ========== CTAs (mid) ========== */
.wel-landing--layout-voyage .cta-wrap {
  margin: 1.15rem auto;
  text-align: center;
}

.wel-landing--layout-voyage .cta-wrap .cta {
  width: 100%;
  text-align: center;
  min-height: var(--touch);
  border-radius: var(--wel-btn-radius, var(--voyage-pill)) !important;
  font-weight: 800;
  background: var(
    --wel-btn-fill,
    linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%)
  ) !important;
  color: var(--cta-ink, #fff) !important;
  box-shadow: var(
    --wel-btn-shadow,
    0 14px 28px color-mix(in srgb, var(--cta) 34%, transparent)
  );
}

.wel-landing--layout-voyage .cta,
.wel-landing--layout-voyage a.cta,
.wel-landing--layout-voyage button.cta,
.wel-landing--layout-voyage .wel-buy__submit,
.wel-landing--layout-voyage .wel-cod__submit,
.wel-landing--layout-voyage .wel-cod__coupon-btn {
  border-radius: var(--wel-btn-radius, var(--voyage-pill)) !important;
  font-weight: 800;
  border: 0;
}

.wel-landing--layout-voyage .cta:not(.cta-ghost),
.wel-landing--layout-voyage .wel-buy__submit:not(.cta-ghost),
.wel-landing--layout-voyage .wel-cod__submit,
.wel-landing--layout-voyage .wel-cod__coupon-btn {
  background: var(
    --wel-btn-fill,
    linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%)
  );
  color: var(--cta-ink, #fff);
  box-shadow: var(
    --wel-btn-shadow,
    0 14px 28px color-mix(in srgb, var(--cta) 34%, transparent)
  );
}

.wel-landing--layout-voyage .cta-ghost:not(.voyage-hero .cta-ghost),
.wel-landing--layout-voyage a.wel-buy__submit.cta-ghost,
.wel-landing--layout-voyage a[data-wel-cod-call].cta-ghost,
.wel-landing--layout-voyage a[data-wel-cod-oos].cta-ghost {
  background: var(--voyage-paper);
  color: var(--cta-deep, var(--brand-dark));
  border: 1.5px solid color-mix(in srgb, var(--cta) 35%, var(--line)) !important;
  box-shadow: var(--voyage-shadow-soft);
}

/* ========== PHONE — centered call card ========== */
.wel-landing--layout-voyage .phone-banner,
.wel-landing--layout-voyage a.phone-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: var(--voyage-section-y) auto;
  padding: 1.45rem 1.35rem 1.35rem;
  border-radius: 28px;
  background:
    radial-gradient(
      90% 120% at 100% 0%,
      color-mix(in srgb, #fff 20%, transparent),
      transparent 55%
    ),
    var(--cta);
  color: var(--cta-ink, #fff);
  text-decoration: none;
  box-shadow: 0 18px 36px color-mix(in srgb, var(--cta) 32%, transparent);
  border: 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.wel-landing--layout-voyage .phone-banner::before {
  content: "";
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: color-mix(in srgb, #fff 18%, transparent);
  box-shadow: inset 0 0 0 2px color-mix(in srgb, #fff 28%, transparent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8z'/%3E%3C/svg%3E");
  background-size: 1.2rem 1.2rem;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.wel-landing--layout-voyage .phone-banner::after {
  content: "";
  position: absolute;
  width: 10rem;
  height: 10rem;
  right: -2.5rem;
  bottom: -3.5rem;
  border-radius: 50%;
  background: color-mix(in srgb, #fff 12%, transparent);
  pointer-events: none;
}

.wel-landing--layout-voyage .phone-banner > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.wel-landing--layout-voyage .phone-banner > div small {
  display: block;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  opacity: 0.92;
  color: inherit;
  line-height: 1.35;
}

.wel-landing--layout-voyage .phone-banner > div strong,
.wel-landing--layout-voyage .phone-banner [data-wel-control="phone_display"] {
  display: block;
  margin: 0;
  font-size: clamp(1.55rem, 3.4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: inherit;
}

/* CTA chip — set label in panel (e.g. “কল করুন”), not a second phone number */
.wel-landing--layout-voyage .call-pill,
.wel-landing--layout-voyage .phone-banner .call-pill {
  position: relative;
  z-index: 1;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  margin: 0.1rem 0 0;
  padding: 0.7rem 1.45rem;
  border-radius: var(--wel-btn-radius, var(--voyage-pill));
  background: var(--voyage-paper);
  color: var(--cta-deep, var(--brand-dark));
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--ink) 10%, transparent);
  white-space: nowrap;
}

@media (min-width: 720px) {
  .wel-landing--layout-voyage .phone-banner,
  .wel-landing--layout-voyage a.phone-banner {
    max-width: 36rem;
    padding: 1.65rem 1.75rem 1.5rem;
    border-radius: 32px;
  }
}

/* Offer-style nested phone markup if ever used under Voyage */
.wel-landing--layout-voyage .phone-banner__copy,
.wel-landing--layout-voyage .phone-banner__num {
  position: relative;
  z-index: 1;
}

/* Countdown — soft chips */
.wel-landing--layout-voyage .wel-countdown,
.wel-landing--layout-voyage [data-wel-edit="countdown"],
.wel-landing--layout-voyage [data-wel-edit="urgency"] {
  margin: var(--voyage-section-y) auto;
  background: color-mix(in srgb, var(--cta) 8%, var(--voyage-paper));
  border-radius: var(--voyage-pill);
  padding: 0.85rem 1.15rem;
  text-align: center;
  box-shadow: none;
  border: 0;
}

/* ========== COD intro — white shell + equal trust tiles ========== */
.wel-landing--layout-voyage [data-wel-order] > .cod,
.wel-landing--layout-voyage .cod:not(.section-title) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0 0 1.15rem;
  padding: 1.55rem 1.25rem 1.45rem;
  border-radius: var(--voyage-radius);
  background:
    linear-gradient(
      165deg,
      color-mix(in srgb, var(--cta) 9%, var(--voyage-paper)) 0%,
      var(--voyage-paper) 55%
    );
  border: 1px solid color-mix(in srgb, var(--cta) 12%, var(--line));
  box-shadow: var(--voyage-shadow-soft);
  box-sizing: border-box;
  width: 100%;
}

.wel-landing--layout-voyage [data-wel-order] > .cod::before,
.wel-landing--layout-voyage .cod:not(.section-title)::before {
  content: "";
  position: absolute;
  width: 9rem;
  height: 9rem;
  right: -2.5rem;
  top: -3rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cta) 10%, transparent);
  pointer-events: none;
  z-index: 0;
}

.wel-landing--layout-voyage [data-wel-order] > .cod > *,
.wel-landing--layout-voyage .cod:not(.section-title) > * {
  position: relative;
  z-index: 1;
}

.wel-landing--layout-voyage [data-wel-order] > .cod h2,
.wel-landing--layout-voyage .cod:not(.section-title) h2 {
  margin: 0;
  text-align: center;
  text-wrap: balance;
  font-size: clamp(1.4rem, 2.9vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--heading, var(--ink));
  max-width: 22ch;
}

.wel-landing--layout-voyage [data-wel-order] > .cod > p,
.wel-landing--layout-voyage .cod:not(.section-title) > p {
  margin: 0.55rem 0 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 42ch;
}

.wel-landing--layout-voyage .cod-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  width: 100%;
  margin: 1.15rem 0 0;
  padding: 0;
}

.wel-landing--layout-voyage .cod-pills > span,
.wel-landing--layout-voyage .cod-pills > .cod-pills__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 5.25rem;
  min-width: 0;
  margin: 0;
  padding: 0.95rem 0.75rem 0.9rem;
  text-align: center;
  text-wrap: balance;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  background: color-mix(in srgb, var(--cta) 7%, var(--voyage-paper));
  border: 1px solid color-mix(in srgb, var(--cta) 12%, var(--line));
  /* Trust cards — modest radius; never follow Border style Pill (999px) */
  border-radius: 12px;
  box-shadow:
    0 1px 0 color-mix(in srgb, #fff 55%, transparent) inset,
    0 8px 18px color-mix(in srgb, var(--ink) 4%, transparent);
  box-sizing: border-box;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Check badge bg follows Button style fill; soft radius (not full pill capsule) */
.wel-landing--layout-voyage .cod-pills > span::before,
.wel-landing--layout-voyage .cod-pills > .cod-pills__item::before {
  content: "";
  width: 1.85rem;
  height: 1.85rem;
  flex: 0 0 1.85rem;
  border-radius: min(10px, var(--wel-btn-radius, 10px));
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10.2l3.1 3.1L15 6.5' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center / 0.95rem no-repeat,
    var(
      --wel-btn-fill,
      linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%)
    );
  box-shadow: var(
    --wel-btn-shadow,
    0 4px 10px color-mix(in srgb, var(--cta) 28%, transparent)
  );
}

@media (hover: hover) {
  .wel-landing--layout-voyage .cod-pills > span:hover,
  .wel-landing--layout-voyage .cod-pills > .cod-pills__item:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--cta) 28%, var(--line));
    box-shadow:
      0 1px 0 color-mix(in srgb, #fff 55%, transparent) inset,
      0 14px 26px color-mix(in srgb, var(--cta) 12%, transparent);
  }

  .wel-landing--layout-voyage .cod-pills > span:hover::before,
  .wel-landing--layout-voyage .cod-pills > .cod-pills__item:hover::before {
    box-shadow: var(
      --wel-btn-shadow-hover,
      0 6px 14px color-mix(in srgb, var(--cta) 34%, transparent)
    );
  }
}

/* Odd last tile on 2-col: center without stretching full width */
.wel-landing--layout-voyage .cod-pills > span:last-child:nth-child(odd),
.wel-landing--layout-voyage .cod-pills > .cod-pills__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 12.5rem;
  justify-self: center;
  width: 100%;
}

@media (min-width: 720px) {
  .wel-landing--layout-voyage .cod-pills {
    gap: 0.75rem;
  }

  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(3):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(5):last-child),
  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(6):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wel-landing--layout-voyage .cod-pills > span:last-child:nth-child(odd),
  .wel-landing--layout-voyage .cod-pills > .cod-pills__item:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  /* 5 tiles: 3 on top, 2 centered beneath */
  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(5):last-child) {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(5):last-child) > :nth-child(1) {
    grid-column: 1 / 3;
  }

  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(5):last-child) > :nth-child(2) {
    grid-column: 3 / 5;
  }

  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(5):last-child) > :nth-child(3) {
    grid-column: 5 / 7;
  }

  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(5):last-child) > :nth-child(4) {
    grid-column: 2 / 4;
  }

  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(5):last-child) > :nth-child(5) {
    grid-column: 4 / 6;
  }
}

@media (min-width: 980px) {
  .wel-landing--layout-voyage [data-wel-order] > .cod,
  .wel-landing--layout-voyage .cod:not(.section-title) {
    padding: 1.75rem 1.6rem 1.65rem;
  }

  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(5):last-child) {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(5):last-child) > :nth-child(1),
  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(5):last-child) > :nth-child(2),
  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(5):last-child) > :nth-child(3),
  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(5):last-child) > :nth-child(4),
  .wel-landing--layout-voyage .cod-pills:has(> :nth-child(5):last-child) > :nth-child(5) {
    grid-column: auto;
  }

  .wel-landing--layout-voyage .cod-pills > span,
  .wel-landing--layout-voyage .cod-pills > .cod-pills__item {
    min-height: 5.75rem;
    font-size: 0.9rem;
    padding: 1.05rem 0.85rem 1rem;
  }
}

/* ========== COD / order shell ========== */
/* No paper card behind the form — fields/pay rows sit on the page background. */
.wel-landing--layout-voyage .wrap.wel-block-plain:has([data-wel-edit="order"]),
.wel-landing--layout-voyage .wrap.wel-block-plain:has([data-wel-edit="checkout"]),
.wel-landing--layout-voyage .wrap.wel-block-plain:has(.wel-buy),
.wel-landing--layout-voyage .wrap.wel-block-plain:has(form[data-wel-cod-form]),
.wel-landing--layout-voyage .wel-block-shell__body > .wrap:has([data-wel-edit="order"]),
.wel-landing--layout-voyage .wel-block-shell__body > .wrap:has(form[data-wel-cod-form]) {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  padding: 0.35rem 0 0.5rem;
  margin: 1.25rem auto;
  width: min(100% - (var(--gutter) * 2), var(--max));
  box-sizing: border-box;
}

.wel-landing--layout-voyage .wel-cod__checkout-block {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-inline: 0;
}

/* Beat Classic `.wel-landing .wel-buy.wel-cod` gradient (0,3,0). */
.wel-landing.wel-landing--layout-voyage .wel-buy,
.wel-landing.wel-landing--layout-voyage .wel-buy.wel-cod,
.wel-landing.wel-landing--layout-voyage .wel-cod,
.wel-landing.wel-landing--layout-voyage form[data-wel-cod-form] {
  background: transparent;
  background-image: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  margin-top: 0;
  text-align: start;
}

/* Voyage COD customer stack — proper space between name / phone / address */
.wel-landing--layout-voyage .wel-cod__customer {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  min-width: 0;
}

.wel-landing--layout-voyage .wel-cod__customer > .wel-cod__field {
  gap: 0.45rem;
}

.wel-landing--layout-voyage .wel-cod__form:not(.wel-cod__form--voyage-split) {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.wel-landing--layout-voyage .wel-cod__form:not(.wel-cod__form--voyage-split) > .wel-cod__field {
  gap: 0.45rem;
}

/* Desktop: customer fields left · product + shipping/payment/CTA right */
@media (min-width: 900px) {
  .wel-landing--layout-voyage .wel-buy.wel-cod--voyage-split {
    display: grid !important;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    column-gap: 1.35rem;
    row-gap: 0.55rem;
    align-items: start;
  }

  .wel-landing--layout-voyage .wel-buy.wel-cod--voyage-split > form.wel-cod__form--voyage-split,
  .wel-landing--layout-voyage form.wel-cod__form--voyage-split {
    display: grid !important;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    column-gap: 1.35rem;
    row-gap: 0.65rem;
    align-items: start;
    width: 100%;
  }

  .wel-landing--layout-voyage .wel-buy.wel-cod--voyage-split > form.wel-cod__form--voyage-split {
    grid-column: 1 / -1;
  }

  .wel-landing--layout-voyage .wel-cod__customer {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }

  .wel-landing--layout-voyage .wel-cod__rail {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-self: start;
  }

  .wel-landing--layout-voyage .wel-cod__form--voyage-split > .wel-cod__thanks,
  .wel-landing--layout-voyage .wel-cod__form--voyage-split > .wel-cod__success {
    grid-column: 1 / -1;
  }

  /* Call/note sibling of form — under product column; stays visible when form[hidden] (OOS) */
  .wel-landing--layout-voyage .wel-buy.wel-cod--voyage-split > .wel-cod__foot {
    grid-column: 2;
    margin-top: 0;
  }

  .wel-landing--layout-voyage .wel-cod__rail > .wel-buy__chooser {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .wel-landing--layout-voyage .wel-cod__rail > .wel-buy__selected {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .wel-landing--layout-voyage .wel-cod__rail .wel-buy__picker {
    width: 100%;
    margin-top: 0.4rem;
    max-height: min(22rem, 55vh);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }

  .wel-landing--layout-voyage .wel-cod__rail .wel-cod__checkout-block {
    margin: 0;
  }

  .wel-landing--layout-voyage .wel-cod__rail .wel-cod__submit,
  .wel-landing--layout-voyage .wel-cod__rail a[data-wel-cod-call],
  .wel-landing--layout-voyage .wel-cod__rail a[data-wel-cod-oos] {
    width: 100%;
    margin-top: 0.15rem;
  }

  /* Legacy sibling chooser layout (pre-split) — keep for cached HTML */
  .wel-landing--layout-voyage .wel-buy.wel-cod:not(.wel-cod--voyage-split):has(> .wel-buy__chooser),
  .wel-landing--layout-voyage .wel-buy.wel-cod:not(.wel-cod--voyage-split):has(> .wel-buy__selected) {
    display: grid !important;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    column-gap: 1.35rem;
    row-gap: 0.65rem;
    align-items: start;
    isolation: isolate;
  }

  .wel-landing--layout-voyage .wel-buy.wel-cod:not(.wel-cod--voyage-split) > form[data-wel-cod-form] {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    position: relative;
    z-index: 1;
  }

  .wel-landing--layout-voyage .wel-buy.wel-cod:not(.wel-cod--voyage-split) > .wel-buy__chooser,
  .wel-landing--layout-voyage .wel-buy.wel-cod:not(.wel-cod--voyage-split) > .wel-buy__selected {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: start;
    position: relative;
    z-index: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    max-height: none;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    box-sizing: border-box;
    overflow: visible;
  }

  .wel-landing--layout-voyage .wel-buy.wel-cod:not(.wel-cod--voyage-split) > a[data-wel-cod-oos],
  .wel-landing--layout-voyage .wel-buy.wel-cod:not(.wel-cod--voyage-split) > a[data-wel-cod-call],
  .wel-landing--layout-voyage .wel-buy.wel-cod:not(.wel-cod--voyage-split) > .wel-buy__note {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 2;
    margin-top: 0.15rem;
    margin-bottom: 0;
    padding-bottom: 0.15rem;
    background: transparent;
  }

  /* After COD success: collapse 2-col so thanks isn't stranded in the left half */
  .wel-landing--layout-voyage .wel-buy.wel-cod.is-success,
  .wel-landing--layout-voyage .wel-buy.wel-cod:has(> form.is-success),
  .wel-landing--layout-voyage .wel-buy.wel-cod:has(form.is-success) {
    display: block !important;
    grid-template-columns: none;
  }

  .wel-landing--layout-voyage .wel-buy.wel-cod.is-success .wel-buy__chooser,
  .wel-landing--layout-voyage .wel-buy.wel-cod.is-success .wel-buy__selected,
  .wel-landing--layout-voyage .wel-buy.wel-cod.is-success .wel-cod__rail,
  .wel-landing--layout-voyage .wel-buy.wel-cod:has(form.is-success) .wel-buy__chooser,
  .wel-landing--layout-voyage .wel-buy.wel-cod:has(form.is-success) .wel-buy__selected,
  .wel-landing--layout-voyage .wel-buy.wel-cod:has(form.is-success) .wel-cod__rail {
    display: none !important;
  }

  .wel-landing--layout-voyage .wel-buy.wel-cod.is-success > form[data-wel-cod-form],
  .wel-landing--layout-voyage .wel-buy.wel-cod:has(form.is-success) > form[data-wel-cod-form] {
    grid-column: auto;
    display: block !important;
    width: 100%;
    max-width: 36rem;
    margin-inline: auto;
  }
}

.wel-landing--layout-voyage .wel-cod__form.is-success .wel-cod__thanks,
.wel-landing--layout-voyage .wel-cod.is-success .wel-cod__thanks {
  width: 100%;
  max-width: 36rem;
  margin-inline: auto;
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 18px;
  box-sizing: border-box;
}

/* Sticky clearance so scroll-up does not cover buy-note. */
.wel-landing--layout-voyage [data-wel-order] {
  scroll-margin-bottom: calc(var(--sticky-h, 4.75rem) + var(--safe-b, env(safe-area-inset-bottom, 0px)) + 0.75rem);
}

.wel-landing--layout-voyage .wel-buy__note {
  scroll-margin-bottom: calc(var(--sticky-h, 4.75rem) + var(--safe-b, env(safe-area-inset-bottom, 0px)) + 0.85rem);
}

/* Post-confirm helper + Call — no orphan white card */
.wel-landing.wel-landing--layout-voyage .wel-cod__foot {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  margin: 0.35rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.wel-landing.wel-landing--layout-voyage .wel-cod__foot .wel-buy__note,
.wel-landing.wel-landing--layout-voyage p.wel-buy__note {
  margin: 0;
  padding: 0 0.15rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink-soft, color-mix(in srgb, var(--ink) 62%, transparent));
}

.wel-landing.wel-landing--layout-voyage .wel-cod__foot a[data-wel-cod-call],
.wel-landing.wel-landing--layout-voyage .wel-cod__foot a[data-wel-cod-oos] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.85rem;
  margin: 0;
  padding: 0.7rem 1.1rem;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.wel-landing.wel-landing--layout-voyage .wel-cod__foot a[data-wel-cod-call]::before,
.wel-landing.wel-landing--layout-voyage .wel-cod__foot a[data-wel-cod-oos]::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.81.36 1.6.7 2.35a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.75.34 1.54.57 2.35.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.81.36 1.6.7 2.35a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.75.34 1.54.57 2.35.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (hover: hover) {
  .wel-landing.wel-landing--layout-voyage .wel-cod__foot a[data-wel-cod-call]:hover,
  .wel-landing.wel-landing--layout-voyage .wel-cod__foot a[data-wel-cod-oos]:hover {
    background: color-mix(in srgb, var(--cta) 10%, var(--voyage-paper));
    border-color: color-mix(in srgb, var(--cta) 55%, var(--line)) !important;
    color: var(--cta-deep, var(--cta));
  }
}

.wel-landing.wel-landing--layout-voyage .wel-buy,
.wel-landing.wel-landing--layout-voyage .wel-buy.wel-cod,
.wel-landing.wel-landing--layout-voyage .wel-buy__chooser {
  text-align: start;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__chooser-label,
.wel-landing.wel-landing--layout-voyage .wel-cod__checkout-block > .wel-cod__label,
.wel-landing.wel-landing--layout-voyage .wel-cod__checkout-head > .wel-cod__label {
  display: block;
  width: 100%;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: start;
  color: var(--ink) !important;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__picker,
.wel-landing.wel-landing--layout-voyage .wel-buy__picker--lines {
  margin-top: 0.4rem;
  display: grid;
  gap: 0.55rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

/* —— Product card (single + multi pick) —— */
.wel-landing.wel-landing--layout-voyage .wel-buy__selected {
  margin: 0;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--cta) 14%, var(--line));
  background:
    linear-gradient(
      165deg,
      color-mix(in srgb, var(--cta) 7%, var(--voyage-paper, var(--surface))) 0%,
      var(--voyage-paper, var(--surface)) 48%,
      var(--voyage-paper, var(--surface)) 100%
    );
  box-shadow:
    0 1px 0 color-mix(in srgb, #fff 55%, transparent) inset,
    0 12px 28px color-mix(in srgb, var(--ink) 5%, transparent);
}

.wel-landing.wel-landing--layout-voyage .wel-buy__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "media info"
    "qty qty";
  gap: 0.75rem 0.9rem;
  align-items: center;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__media {
  grid-area: media;
  flex: none;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__thumb {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--cta) 12%, var(--line));
  box-shadow: 0 8px 18px color-mix(in srgb, var(--ink) 8%, transparent);
  background: color-mix(in srgb, var(--cta) 6%, var(--voyage-paper, #fff));
}

.wel-landing.wel-landing--layout-voyage .wel-buy__info {
  grid-area: info;
  min-width: 0;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__name {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--heading, var(--ink)) !important;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__meta {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__stock {
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cta) 14%, var(--voyage-paper, #fff));
  color: var(--cta-deep, var(--heading));
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--cta) 18%, transparent);
}

.wel-landing.wel-landing--layout-voyage .wel-buy__stock::before {
  background: var(--cta);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cta) 22%, transparent);
}

.wel-landing.wel-landing--layout-voyage .wel-buy__price,
.wel-landing.wel-landing--layout-voyage .wel-buy__price .amount,
.wel-landing.wel-landing--layout-voyage .wel-buy__price .woocommerce-Price-amount,
.wel-landing.wel-landing--layout-voyage .wel-buy__price bdi {
  margin-top: 0.45rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cta) !important;
}

/* Quantity — compact stepper (not full-row wide pills) */
.wel-landing.wel-landing--layout-voyage .wel-buy__qty-wrap {
  grid-area: qty;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  width: 100%;
  margin: 0;
  padding: 0.45rem 0.45rem 0.45rem 0.85rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--cta) 6%, var(--voyage-paper, #fff));
  border: 1px solid color-mix(in srgb, var(--cta) 12%, var(--line));
  box-sizing: border-box;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__qty-label {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft, var(--ink));
  letter-spacing: 0.01em;
  text-transform: none;
  text-align: left;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__qty,
.wel-landing.wel-landing--layout-voyage .wel-buy__line-qty {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 2.15rem 2.35rem 2.15rem;
  align-items: center;
  gap: 0;
  width: max-content;
  max-width: 7.2rem;
  min-width: 0;
  margin: 0;
  padding: 0.12rem;
  border: 0;
  border-radius: 12px;
  background: var(--voyage-paper, #fff);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--cta) 16%, var(--line)),
    0 4px 12px color-mix(in srgb, var(--ink) 4%, transparent);
  overflow: visible;
  box-sizing: border-box;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__qty-btn,
.wel-landing.wel-landing--layout-voyage .wel-buy__line-qty .wel-buy__qty-btn,
.wel-landing.wel-landing--layout-voyage .wel-buy__qty button,
.wel-landing.wel-landing--layout-voyage .wel-buy__line-qty button {
  width: 2.15rem;
  height: 2.15rem;
  min-width: 2.15rem;
  min-height: 2.15rem;
  border: 0;
  border-radius: min(10px, var(--wel-btn-radius, 10px));
  /* Same Button style token as Confirm / sticky / hero Order */
  background: var(
    --wel-btn-fill,
    linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%)
  );
  color: var(--cta-ink, #fff);
  font-size: 1.05rem;
  font-weight: 700;
  /* Soften CTA shadow for chip size; still tracks Button style */
  box-shadow: var(
    --wel-btn-shadow,
    0 6px 14px color-mix(in srgb, var(--cta) 28%, transparent)
  );
  transition: transform 0.12s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

@media (hover: hover) {
  .wel-landing.wel-landing--layout-voyage .wel-buy__qty-btn:hover:not(:disabled),
  .wel-landing.wel-landing--layout-voyage .wel-buy__line-qty button:hover:not(:disabled),
  .wel-landing.wel-landing--layout-voyage .wel-buy__qty button:hover:not(:disabled) {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: var(
      --wel-btn-shadow-hover,
      0 8px 16px color-mix(in srgb, var(--cta) 34%, transparent)
    );
    color: var(--cta-ink, #fff);
    background: var(
      --wel-btn-fill,
      linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%)
    );
  }
}

.wel-landing.wel-landing--layout-voyage .wel-buy__qty-btn:active:not(:disabled),
.wel-landing.wel-landing--layout-voyage .wel-buy__line-qty button:active:not(:disabled),
.wel-landing.wel-landing--layout-voyage .wel-buy__qty button:active:not(:disabled) {
  transform: scale(0.94);
  filter: brightness(0.98);
  box-shadow: var(
    --wel-btn-shadow-active,
    0 2px 8px color-mix(in srgb, var(--cta) 26%, transparent)
  );
  background: var(
    --wel-btn-fill,
    linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%)
  );
  color: var(--cta-ink, #fff);
}

.wel-landing.wel-landing--layout-voyage .wel-buy__qty input,
.wel-landing.wel-landing--layout-voyage .wel-buy__line-qty input {
  width: 2.35rem;
  min-width: 2.35rem;
  max-width: 2.35rem;
  min-height: 2.15rem;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--heading, var(--ink));
  background: transparent;
  text-align: center;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__qty input:focus,
.wel-landing.wel-landing--layout-voyage .wel-buy__line-qty input:focus {
  background: color-mix(in srgb, var(--cta) 8%, transparent);
  outline: none;
}

/* Multi-line qty stays compact on the right of each product row */
.wel-landing.wel-landing--layout-voyage .wel-buy__pick--line .wel-buy__line-qty {
  justify-self: end;
  align-self: center;
  flex: 0 0 auto;
  width: max-content;
  max-width: 7.2rem;
}

/* Mobile: keep compact stepper (do not stretch full row) */
@media (max-width: 639px) {
  .wel-landing.wel-landing--layout-voyage .wel-buy__qty-wrap {
    width: 100%;
    margin-left: 0;
    min-width: 0;
    border-top: 0;
    padding-top: 0.45rem;
    margin-top: 0;
  }

  .wel-landing.wel-landing--layout-voyage .wel-buy__qty {
    flex: 0 0 auto;
    width: max-content;
    max-width: 7.2rem;
    min-width: 0;
    grid-template-columns: 2.15rem 2.35rem 2.15rem;
  }
}

/* Multi-product pick cards on Voyage */
.wel-landing.wel-landing--layout-voyage .wel-buy__pick,
.wel-landing.wel-landing--layout-voyage .wel-buy__pick--line,
.wel-landing.wel-landing--layout-voyage .wel-buy__line,
.wel-landing.wel-landing--layout-voyage .wel-cod__ship-row,
.wel-landing.wel-landing--layout-voyage .wel-cod__pay-row {
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--line) 85%, transparent);
  background: var(--field-bg, var(--surface));
  box-shadow: none;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__pick--line {
  padding: 0.75rem 0.8rem;
  gap: 0.65rem;
  align-items: center;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__pick--line .wel-buy__pick-img {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__pick:hover,
.wel-landing.wel-landing--layout-voyage .wel-buy__pick--line:hover,
.wel-landing.wel-landing--layout-voyage .wel-cod__ship-row:hover,
.wel-landing.wel-landing--layout-voyage .wel-cod__pay-row:hover {
  border-color: color-mix(in srgb, var(--cta) 32%, var(--line));
  transform: none;
}

.wel-landing.wel-landing--layout-voyage .wel-buy__pick.is-selected,
.wel-landing.wel-landing--layout-voyage .wel-buy__pick--line.is-selected,
.wel-landing.wel-landing--layout-voyage .wel-buy__line.is-selected,
.wel-landing.wel-landing--layout-voyage .wel-cod__ship-row:has(input:checked),
.wel-landing.wel-landing--layout-voyage .wel-cod__ship-row.is-selected,
.wel-landing.wel-landing--layout-voyage .wel-cod__pay-row.is-selected,
.wel-landing.wel-landing--layout-voyage .wel-cod__pay-row:has(input:checked) {
  border-color: color-mix(in srgb, var(--cta) 58%, var(--line));
  background: color-mix(in srgb, var(--cta) 9%, var(--field-bg, var(--surface)));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cta) 14%, transparent);
}

.wel-landing--layout-voyage .wel-buy__multi-hint {
  margin-top: 0.55rem;
  text-align: start;
  font-size: 0.8rem;
  color: var(--ink-soft, var(--muted, var(--ink)));
  background: transparent;
  border: 0;
}

.wel-landing--layout-voyage .wel-cod__checkout-kicker {
  display: none;
}

.wel-landing--layout-voyage .wel-cod__checkout-head {
  margin: 0 0 0.4rem;
}

.wel-landing--layout-voyage .wel-cod input,
.wel-landing--layout-voyage .wel-cod textarea,
.wel-landing--layout-voyage .wel-cod select,
.wel-landing--layout-voyage form[data-wel-cod-form] input,
.wel-landing--layout-voyage form[data-wel-cod-form] textarea,
.wel-landing--layout-voyage form[data-wel-cod-form] select {
  border-radius: 14px;
  border-color: color-mix(in srgb, var(--line) 88%, transparent);
  background: var(--field-bg, var(--surface));
  min-height: 2.95rem;
}

.wel-landing--layout-voyage .wel-cod input:focus,
.wel-landing--layout-voyage .wel-cod textarea:focus,
.wel-landing--layout-voyage form[data-wel-cod-form] input:focus,
.wel-landing--layout-voyage form[data-wel-cod-form] textarea:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cta) 18%, transparent);
  outline: none;
}

/* ========== CONTACT — plain assist row (not a button card) ========== */
.wel-landing--layout-voyage [data-wel-edit="contact"],
.wel-landing--layout-voyage .contact-strip {
  position: relative;
  isolation: isolate;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: var(--max);
  margin: 1.25rem auto;
  padding: 0.35rem 0;
  text-align: start;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box;
}

.wel-landing--layout-voyage .wrap [data-wel-edit="contact"],
.wel-landing--layout-voyage .wrap .contact-strip {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.wel-landing--layout-voyage .contact-strip::before {
  content: none;
  display: none;
}

.wel-landing--layout-voyage .contact-strip__ico,
.wel-landing--layout-voyage a.contact-strip__ico {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  border-radius: var(--wel-btn-radius, 16px);
  color: var(--cta-ink, #fff);
  background: var(--wel-btn-fill, linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%));
  box-shadow: var(--wel-btn-shadow, 0 8px 18px color-mix(in srgb, var(--cta) 28%, transparent));
  text-decoration: none;
}

.wel-landing--layout-voyage .contact-strip__ico svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.wel-landing--layout-voyage .contact-strip__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
  flex: 1 1 auto;
}

.wel-landing--layout-voyage .contact-strip__label {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.wel-landing--layout-voyage .contact-strip__phone,
.wel-landing--layout-voyage .contact-strip a.contact-strip__phone {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  margin: 0;
  padding: 0;
  font-size: clamp(1.2rem, 3.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--heading, var(--ink));
  text-decoration: none;
}

.wel-landing--layout-voyage .contact-strip__phone:hover,
.wel-landing--layout-voyage .contact-strip a.contact-strip__phone:hover {
  color: var(--cta-deep, var(--cta));
}

.wel-landing--layout-voyage .contact-strip a.contact-strip__action,
.wel-landing--layout-voyage .contact-strip__action {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 6.5rem;
  min-height: 2.75rem;
  height: auto;
  margin: 0;
  padding: 0.65rem 1.2rem;
  border: 0;
  border-radius: var(--wel-btn-radius, 999px);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--cta-ink, #fff) !important;
  text-decoration: none;
  background: var(--wel-btn-fill, linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%));
  box-shadow: var(--wel-btn-shadow, 0 8px 18px color-mix(in srgb, var(--cta) 25%, transparent));
  white-space: nowrap;
  overflow: visible;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.wel-landing--layout-voyage .contact-strip a.contact-strip__action:hover,
.wel-landing--layout-voyage .contact-strip__action:hover {
  filter: brightness(1.04);
  color: var(--cta-ink, #fff) !important;
  box-shadow: var(--wel-btn-shadow-hover, 0 12px 26px color-mix(in srgb, var(--cta) 48%, transparent));
}

@media (max-width: 560px) {
  .wel-landing--layout-voyage .contact-strip {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.85rem;
    text-align: center;
  }

  .wel-landing--layout-voyage .contact-strip__body {
    align-items: center;
  }

  .wel-landing--layout-voyage .contact-strip a.contact-strip__action,
  .wel-landing--layout-voyage .contact-strip__action {
    width: 100%;
    min-width: 0;
  }
}

/* ========== FAQ — white shell + modern accordion ========== */
.wel-landing--layout-voyage [data-wel-edit="faq"],
.wel-landing--layout-voyage .wel-faq {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 1.35rem auto;
  padding: 1.6rem 1.3rem 1.65rem;
  border-radius: var(--voyage-radius);
  background: var(--voyage-paper);
  border: 1px solid color-mix(in srgb, var(--cta) 10%, var(--line));
  box-shadow: var(--voyage-shadow-soft);
  box-sizing: border-box;
  width: 100%;
  max-width: var(--max);
}

.wel-landing--layout-voyage .wrap [data-wel-edit="faq"],
.wel-landing--layout-voyage .wrap .wel-faq {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.wel-landing--layout-voyage [data-wel-edit="faq"]::before,
.wel-landing--layout-voyage .wel-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      50% 40% at 100% 0%,
      color-mix(in srgb, var(--cta) 9%, transparent),
      transparent 70%
    );
  pointer-events: none;
  z-index: 0;
}

.wel-landing--layout-voyage [data-wel-edit="faq"] > *,
.wel-landing--layout-voyage .wel-faq > * {
  position: relative;
  z-index: 1;
}

.wel-landing--layout-voyage [data-wel-edit="faq"] .section-head,
.wel-landing--layout-voyage [data-wel-edit="faq"] .section-title,
.wel-landing--layout-voyage .wel-faq .section-head,
.wel-landing--layout-voyage .wel-faq .section-title {
  text-align: center;
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.wel-landing--layout-voyage [data-wel-edit="faq"] .section-head h2,
.wel-landing--layout-voyage .wel-faq .section-title h2,
.wel-landing--layout-voyage .wel-faq h2 {
  text-align: center;
  text-wrap: balance;
  font-size: clamp(1.4rem, 2.9vw, 1.85rem);
  max-width: 24ch;
  margin: 0;
}

.wel-landing--layout-voyage .wel-faq__sub {
  margin: 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.94rem;
  max-width: 40ch;
  line-height: 1.45;
}

.wel-landing--layout-voyage .wel-faq__list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
}

.wel-landing--layout-voyage .wel-faq__item,
.wel-landing--layout-voyage details.faq-item,
.wel-landing--layout-voyage [data-wel-edit="faq"] details {
  margin: 0;
  background: color-mix(in srgb, var(--voyage-paper) 90%, var(--cta) 4%);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--cta) 12%, var(--line));
  box-shadow:
    0 1px 0 color-mix(in srgb, #fff 65%, transparent) inset,
    0 8px 18px color-mix(in srgb, var(--ink) 4%, transparent);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wel-landing--layout-voyage .wel-faq__item[open],
.wel-landing--layout-voyage details.faq-item[open],
.wel-landing--layout-voyage [data-wel-edit="faq"] details[open] {
  border-color: color-mix(in srgb, var(--cta) 28%, var(--line));
  box-shadow:
    0 1px 0 color-mix(in srgb, #fff 65%, transparent) inset,
    0 12px 24px color-mix(in srgb, var(--cta) 10%, transparent);
}

.wel-landing--layout-voyage .wel-faq__item summary,
.wel-landing--layout-voyage details.faq-item summary,
.wel-landing--layout-voyage [data-wel-edit="faq"] details summary {
  list-style: none;
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
  min-height: var(--touch, 44px);
  margin: 0;
  padding: 1rem 1.1rem;
  font-weight: 750;
  font-size: 0.98rem;
  color: var(--heading, var(--ink));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  line-height: 1.35;
  text-align: start;
}

.wel-landing--layout-voyage .wel-faq__item summary::-webkit-details-marker,
.wel-landing--layout-voyage details.faq-item summary::-webkit-details-marker {
  display: none;
}

.wel-landing--layout-voyage .wel-faq__item summary::after,
.wel-landing--layout-voyage details.faq-item summary::after,
.wel-landing--layout-voyage [data-wel-edit="faq"] details summary::after {
  content: "+" !important;
  display: grid !important;
  position: static !important;
  top: auto !important;
  right: auto !important;
  translate: none !important;
  transform: none !important;
  flex: 0 0 auto;
  margin-left: auto;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  place-items: center;
  background: color-mix(in srgb, var(--cta) 12%, var(--voyage-paper));
  color: var(--cta-deep, var(--brand-dark));
  border: 1px solid color-mix(in srgb, var(--cta) 18%, transparent);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.wel-landing--layout-voyage .wel-faq__item[open] summary::after,
.wel-landing--layout-voyage details.faq-item[open] summary::after,
.wel-landing--layout-voyage [data-wel-edit="faq"] details[open] summary::after {
  content: "−" !important;
  background: var(
    --wel-btn-fill,
    linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%)
  );
  color: var(--cta-ink, #fff);
  border-color: transparent;
  border-radius: var(--wel-btn-radius, 999px);
}

.wel-landing--layout-voyage .wel-faq__item p,
.wel-landing--layout-voyage details.faq-item p,
.wel-landing--layout-voyage [data-wel-edit="faq"] details p {
  margin: 0;
  padding: 0 1.1rem 1.05rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: none;
}

@media (min-width: 720px) {
  .wel-landing--layout-voyage [data-wel-edit="faq"],
  .wel-landing--layout-voyage .wel-faq {
    padding: 1.85rem 1.75rem 1.9rem;
  }

  .wel-landing--layout-voyage .wel-faq__list {
    gap: 0.75rem;
    max-width: none;
    margin-inline: 0;
    width: 100%;
  }
}

/* ========== GUARANTEE — centered header + full-width point tiles ========== */
.wel-landing--layout-voyage [data-wel-edit="guarantee"],
.wel-landing--layout-voyage .guarantee,
.wel-landing--layout-voyage .wel-guarantee {
  margin: 1.35rem auto;
  padding-top: 0;
  border-radius: var(--voyage-radius);
  background: transparent;
  box-shadow: none;
  border: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.wel-landing--layout-voyage .wel-guarantee__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 1.45rem 1.25rem 1.5rem;
  border-radius: var(--voyage-radius);
  text-align: center;
  background:
    linear-gradient(
      165deg,
      color-mix(in srgb, var(--cta) 9%, var(--voyage-paper)) 0%,
      var(--voyage-paper) 55%
    );
  border: 1px solid color-mix(in srgb, var(--cta) 12%, var(--line));
  box-shadow: var(--voyage-shadow-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.wel-landing--layout-voyage .wel-guarantee__card::before {
  content: "";
  position: absolute;
  width: 8rem;
  height: 8rem;
  right: -2.25rem;
  top: -2.75rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cta) 9%, transparent);
  pointer-events: none;
  z-index: 0;
}

.wel-landing--layout-voyage .wel-guarantee__card > * {
  position: relative;
  z-index: 1;
}

.wel-landing--layout-voyage .wel-guarantee__badge-ico {
  position: static;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  border-radius: var(--wel-btn-radius, 14px);
  display: grid;
  place-items: center;
  background: var(
    --wel-btn-fill,
    linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%)
  );
  color: var(--cta-ink, #fff);
  box-shadow: var(
    --wel-btn-shadow,
    0 10px 18px color-mix(in srgb, var(--cta) 26%, transparent)
  );
  transform: none;
  left: auto;
  top: auto;
  font-size: 1rem;
  font-weight: 800;
  border: 0;
}

.wel-landing--layout-voyage .wel-guarantee__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.55rem;
  margin: 0;
  color: var(--heading, var(--ink));
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  text-align: center;
}

.wel-landing--layout-voyage .wel-guarantee__title span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.wel-landing--layout-voyage .wel-guarantee__title span + span {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 0.24rem 0.6rem;
  border-radius: var(--voyage-pill);
  background: var(--cta);
  color: var(--cta-ink, #fff);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: none;
}

.wel-landing--layout-voyage .wel-guarantee__title em {
  color: inherit;
  font-style: normal;
  font-size: inherit;
}

.wel-landing--layout-voyage .wel-guarantee__title::after,
.wel-landing--layout-voyage .wel-guarantee__title span::after {
  display: none !important;
  content: none !important;
}

.wel-landing--layout-voyage .wel-guarantee__badge {
  display: inline-flex;
  margin: 0;
  padding: 0.3rem 0.75rem;
  border-radius: var(--voyage-pill);
  background: color-mix(in srgb, var(--cta) 12%, var(--voyage-paper));
  color: var(--cta-deep, var(--brand-dark));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: none;
}

.wel-landing--layout-voyage .wel-guarantee__text {
  text-align: center;
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 46ch;
}

.wel-landing--layout-voyage .wel-guarantee__list {
  list-style: none;
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  width: 100% !important;
  max-width: none !important;
  margin: 0.15rem 0 0 !important;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.wel-landing--layout-voyage .wel-guarantee__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  justify-items: start;
  text-align: start;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: color-mix(in srgb, var(--cta) 7%, var(--voyage-paper));
  border: 1px solid color-mix(in srgb, var(--cta) 10%, transparent);
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  min-width: 0;
  box-sizing: border-box;
}

.wel-landing--layout-voyage .wel-guarantee__check {
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cta) 16%, var(--voyage-paper));
  color: var(--cta);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  border: 0;
}

.wel-landing--layout-voyage .wel-guarantee__cta {
  width: min(100%, 20rem);
  margin: 0.35rem auto 0;
  border-radius: var(--wel-btn-radius, var(--voyage-pill)) !important;
  text-align: center;
}

@media (min-width: 720px) {
  .wel-landing--layout-voyage .wel-guarantee__card {
    padding: 1.65rem 1.65rem 1.7rem;
    gap: 0.85rem;
  }

  /* Full card width — override Classic max-width: 28rem */
  .wel-landing--layout-voyage .wel-guarantee__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .wel-landing--layout-voyage .wel-guarantee__list li {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.6rem;
    min-height: 100%;
    padding: 1.15rem 1.2rem;
    font-size: 0.92rem;
  }

  .wel-landing--layout-voyage .wel-guarantee__check {
    margin-top: 0;
  }

  .wel-landing--layout-voyage .wel-guarantee__text {
    max-width: 52ch;
  }
}

@media (min-width: 720px) {
  .wel-landing--layout-voyage .wel-guarantee__list:has(> li:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wel-landing--layout-voyage .wel-guarantee__list:has(> li:nth-child(4)) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .wel-landing--layout-voyage .wel-guarantee__list:has(> li:nth-child(4)) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wel-landing--layout-voyage .wel-guarantee__list li {
    padding: 1.25rem 1.35rem;
  }
}

/* ========== STICKY — floating glass capsule (≠ Classic full strip) ========== */
.wel-landing--layout-voyage .wel-landing__sticky,
.wel-landing--layout-voyage .sticky[data-wel-sticky] {
  left: 0;
  right: 0;
  padding: 0.65rem max(var(--gutter), calc((100% - var(--max)) / 2)) calc(0.65rem + var(--safe-b));
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.wel-landing--layout-voyage .wel-landing__sticky-inner,
.wel-landing--layout-voyage .sticky-inner {
  --sticky-pad: 0.45rem;
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 0.45rem;
  padding: var(--sticky-pad);
  /* Outer radius = button radius + pad so corners nest (esp. Border style: Semi rounded) */
  border-radius: calc(var(--wel-btn-radius, 12px) + var(--sticky-pad));
  background: color-mix(in srgb, var(--voyage-paper) 88%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: var(--voyage-shadow);
  border: 1px solid color-mix(in srgb, var(--line) 65%, transparent);
  box-sizing: border-box;
}

.wel-landing--layout-voyage .sticky-inner .cta {
  width: 100%;
  text-align: center;
  min-height: 2.9rem;
  border-radius: var(--wel-btn-radius, 12px) !important;
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.2;
  padding: 0.65rem 0.85rem !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wel-landing--layout-voyage .sticky-inner .cta:not(.cta-ghost),
.wel-landing--layout-voyage.wel-landing--btn-diagonal .sticky-inner .cta:not(.cta-ghost),
.wel-landing--layout-voyage.wel-landing--btn-solid .sticky-inner .cta:not(.cta-ghost) {
  background: var(
    --wel-btn-fill,
    linear-gradient(180deg, var(--cta-light) 0%, var(--cta) 55%, var(--cta-deep) 100%)
  ) !important;
  color: var(--cta-ink, #fff) !important;
  box-shadow: var(
    --wel-btn-shadow,
    0 8px 18px color-mix(in srgb, var(--cta) 28%, transparent)
  );
}

.wel-landing--layout-voyage .sticky-inner .cta-ghost {
  background: var(--voyage-paper) !important;
  color: var(--cta-deep, var(--brand-dark)) !important;
  border: 1.5px solid color-mix(in srgb, var(--cta) 40%, var(--line)) !important;
}

/* WA + toast clear sticky capsule */
.wel-landing--layout-voyage .wel-wa-balloon,
.wel-landing--layout-voyage .wel-order-toast {
  border-radius: 16px;
  box-shadow: var(--voyage-shadow);
  bottom: calc(var(--sticky-h) + var(--safe-b) + 0.85rem) !important;
}

.wel-landing--layout-voyage .wel-wa-balloon {
  right: max(0.85rem, var(--gutter));
}

/* Mobile hero CTAs — full-width centered stack */
@media (max-width: 719px) {
  .wel-landing--layout-voyage .voyage-hero .cta-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
  }

  .wel-landing--layout-voyage .voyage-hero .cta:not(.cta-ghost),
  .wel-landing--layout-voyage.wel-landing--btn-diagonal .voyage-hero .cta:not(.cta-ghost) {
    width: 100%;
    max-width: 22rem;
    min-width: 0;
  }

  .wel-landing--layout-voyage .voyage-hero .cta-ghost {
    width: 100%;
    max-width: 22rem;
    justify-content: center;
    padding: 0 !important;
  }

  .wel-landing--layout-voyage .wel-landing__sticky-inner,
  .wel-landing--layout-voyage .sticky-inner {
    --sticky-pad: 0.4rem;
    gap: 0.4rem;
    padding: var(--sticky-pad);
    border-radius: calc(var(--wel-btn-radius, 12px) + var(--sticky-pad));
  }

  .wel-landing--layout-voyage {
    --sticky-h: 4.75rem;
  }
}

.wel-landing--layout-voyage [data-wel-edit="powered"],
.wel-landing--layout-voyage .wel-landing__powered,
.wel-landing--layout-voyage .powered-by {
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  padding: 1rem 0 0.35rem;
}

.wel-landing--layout-voyage .wel-landing__blocks > .wrap .brand {
  color: var(--cta);
  background: transparent;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.wel-landing--layout-voyage h1[data-wel-edit="title"] {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
