:root {
  --hpt-navy: #061b34;
  --hpt-deep: #021322;
  --hpt-blue: #082b4b;
  --hpt-gold: #d49622;
  --hpt-gold-dark: #b97617;
  --hpt-white: #ffffff;
  --hpt-muted: rgba(255,255,255,.82);
  --hpt-ink: #061126;
  --hpt-line: rgba(212,150,34,.68);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.home-test-page {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--hpt-ink);
  background: #021322;
  font-family: "Manrope", "Montserrat", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.home-test-page a { color: inherit; text-decoration: none; }

.home-test-page main {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding-top: 1px;
  background: linear-gradient(180deg, #021322 0%, #05263a 18%, #031a2d 56%, #02101c 100%);
}

.hpt-hero {
  position: relative;
  z-index: 2;
  isolation: isolate;
  min-height: 990px;
  padding-bottom: 106px;
  overflow: visible;
  color: #fff;
  background: var(--hpt-deep);
  animation: hptFadeIn .8s ease-out both;
}

.hpt-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(1.12) contrast(1.05) brightness(1.16);
  transform: scale(1.012);
  transition: transform 1.2s ease, filter 1.2s ease;
}

.hpt-hero:hover .hpt-hero__image {
  transform: scale(1.02);
  filter: saturate(1.12) contrast(1.05) brightness(1.2);
}

.hpt-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(2,16,30,.9) 0%,
      rgba(2,18,34,.82) 29%,
      rgba(3,25,45,.52) 50%,
      rgba(3,25,45,.16) 72%,
      rgba(3,25,45,.03) 100%),
    linear-gradient(180deg,
      rgba(1,12,22,.1) 0%,
      rgba(1,12,22,.04) 48%,
      rgba(1,12,22,.54) 100%),
    radial-gradient(circle at 78% 44%, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(90deg, rgba(2,16,30,.88), rgba(2,16,30,.08) 58%, rgba(2,16,30,.28));
}

.hpt-nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1560px, calc(100% - 96px));
  margin: 0 auto;
  padding: 34px 0 26px;
}

.hpt-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  font-size: 23px;
  line-height: 1.05;
}

.hpt-brand span {
  font-family: "Cinzel", "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: .045em;
  text-shadow: 0 3px 18px rgba(0,0,0,.28);
}

.hpt-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.hpt-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4.2vw, 76px);
  margin-left: auto;
  margin-right: 44px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .045em;
}

.hpt-nav__links a,
.hpt-mobile-menu a {
  position: relative;
  transition: color .22s ease, transform .22s ease;
}

.hpt-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--hpt-gold);
  transition: transform .24s ease;
}

.hpt-nav__links a:hover,
.hpt-mobile-menu a:hover,
.hpt-lang:hover {
  color: var(--hpt-gold);
}

.hpt-nav__links a:hover::after { transform: scaleX(1); }

.hpt-nav__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hpt-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  transition: color .22s ease;
}

.hpt-lang::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 3px;
  background: var(--hpt-gold);
}

.hpt-nav__divider {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,.68);
}

.hpt-whatsapp,
.hpt-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hpt-whatsapp svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
  transition: transform .22s ease, color .22s ease;
}

.hpt-whatsapp:hover svg {
  color: var(--hpt-gold);
  transform: translateY(-2px);
}

.hpt-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  gap: 7px;
  flex-direction: column;
}

.hpt-menu span {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.hpt-mobile-menu[hidden] { display: none !important; }

.hpt-mobile-menu {
  position: absolute;
  top: 96px;
  left: 24px;
  right: 24px;
  z-index: 10;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  background: rgba(3,22,40,.96);
  color: #fff;
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .06em;
}

.hpt-hero__content {
  position: relative;
  z-index: 2;
  width: min(1560px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: clamp(104px, 9.2vw, 146px);
}

.hpt-eyebrow {
  margin: 0 0 22px;
  color: var(--hpt-gold);
  text-transform: uppercase;
  font-size: clamp(15px, 1.25vw, 23px);
  font-weight: 800;
  letter-spacing: .11em;
}

.hpt-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(68px, 7vw, 128px);
  line-height: .88;
  letter-spacing: .012em;
  text-transform: uppercase;
  text-shadow: 0 5px 24px rgba(0,0,0,.28);
}

.hpt-hero h1 span { color: var(--hpt-gold); }

.hpt-lede {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--hpt-muted);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.48;
}

.hpt-stats {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: end;
  column-gap: 54px;
  width: max-content;
  max-width: 100%;
  margin-top: 46px;
}

.hpt-stats > div {
  min-width: 154px;
  padding-right: 54px;
  border-right: 1px solid var(--hpt-line);
}

.hpt-stats > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.hpt-stats strong,
.hpt-stats span { display: block; }

.hpt-stats strong {
  font-size: clamp(34px, 2.75vw, 48px);
  line-height: .95;
  letter-spacing: .01em;
}

.hpt-stats > div > span:not(.hpt-stars) {
  margin-bottom: 3px;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  font-weight: 700;
}

.hpt-stars {
  margin: 10px 0 8px;
  color: var(--hpt-gold);
  font-size: 22px;
  letter-spacing: .09em;
}

.hpt-stats small {
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .105em;
}
.hpt-hero-cta:focus-visible,
.hpt-lang:focus-visible,
.hpt-whatsapp:focus-visible,
.hpt-menu:focus-visible,
.hpt-nav a:focus-visible {
  outline: 3px solid rgba(212,150,34,.75);
  outline-offset: 5px;
  border-radius: 8px;
}
.hpt-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 318px;
  min-height: 74px;
  margin-top: 34px;
  padding: 0 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: linear-gradient(135deg, #b97812 0%, #d9941e 52%, #e3a52f 100%);
  color: #fff;
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 20px 48px rgba(212,150,34,.28), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.hpt-hero-cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
  box-shadow: 0 24px 52px rgba(185,118,23,.34), inset 0 1px 0 rgba(255,255,255,.34);
}

.hpt-hero-cta svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hpt-hero-cta span {
  margin-left: 2px;
  font-size: 30px;
  line-height: 1;
}

.hpt-steps {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: min(1500px, calc(100% - 96px));
  margin: -58px auto -58px;
  padding: 28px 54px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(2,20,38,.96);
  color: #fff;
  box-shadow: 0 26px 70px rgba(2,12,24,.28);
  backdrop-filter: blur(12px);
}

.hpt-steps article {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: auto;
  padding: 0;
  border-right: 0;
}

.hpt-steps article:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 2px;
  margin-left: 20px;
  background: rgba(255,255,255,.9);
}

.hpt-steps article:last-child { border-right: 0; }

.hpt-steps b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #071c33;
  font-size: 18px;
  font-weight: 900;
}

.hpt-steps span {
  display: block;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .01em;
  white-space: nowrap;
}

.hpt-steps p { display: none; }

@keyframes hptFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hpt-mobile-badges,
.hpt-mobile-trust-strip {
  display: none;
}
@media (max-width: 1180px) {
  .hpt-nav__links { gap: 24px; font-size: 14px; }
.hpt-steps { flex-wrap: wrap; }

  .hpt-steps article {
    border-right: 0;
    border-bottom: 0;
  }

  .hpt-steps article:last-child { border-bottom: 0; }
}

@media (max-width: 840px) {
  .hpt-hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 46px;
    overflow: hidden;
    background: #021322;
  }

  .hpt-hero__shade {
    display: block;
    background:
      linear-gradient(180deg,
        rgba(2,14,26,.95) 0%,
        rgba(2,14,26,.62) 46%,
        rgba(2,14,26,.92) 100%),
      linear-gradient(90deg,
        rgba(2,14,26,.98) 0%,
        rgba(2,14,26,.82) 38%,
        rgba(2,14,26,.24) 70%,
        rgba(2,14,26,.42) 100%);
  }

  .hpt-nav {
    order: 1;
    width: 100%;
    min-height: 76px;
    margin: 0;
    padding: 14px 22px 13px;
    border-bottom: 1px solid rgba(255,255,255,.14);
    background: rgba(2,16,30,.72);
    backdrop-filter: blur(10px);
  }

  .hpt-brand {
    gap: 10px;
    font-size: 15px;
  }

  .hpt-brand img {
    width: 45px;
    height: 45px;
  }

  .hpt-nav__links { display: none; }

  .hpt-nav__actions {
    margin-left: auto;
    gap: 14px;
  }

  .hpt-whatsapp { order: 1; }
  .hpt-nav__divider { order: 2; }
  .hpt-lang { order: 3; }
  .hpt-menu { order: 4; display: inline-flex; }

  .hpt-lang {
    min-height: 34px;
    font-size: 16px;
  }

  .hpt-lang::after {
    width: 22px;
    height: 2px;
  }

  .hpt-nav__divider {
    height: 30px;
    background: rgba(255,255,255,.48);
  }

  .hpt-whatsapp svg {
    width: 31px;
    height: 31px;
  }

  .hpt-menu {
    width: 42px;
    height: 42px;
    gap: 6px;
  }

  .hpt-menu span {
    width: 31px;
    height: 3px;
  }

  .hpt-mobile-menu {
    top: 78px;
    left: 14px;
    right: 14px;
  }

  .hpt-hero__content {
    order: 2;
    display: flex;
    flex-direction: column;
    width: min(100% - 44px, 520px);
    margin: 0 auto;
    padding-top: 28px;
  }

  .hpt-eyebrow {
    margin-bottom: 14px;
    font-size: 13px;
    letter-spacing: .16em;
  }

  .hpt-hero h1 {
    max-width: 75%;
    font-size: clamp(40px, 10.8vw, 58px);
    line-height: .91;
  }

  .hpt-lede {
    max-width: 70%;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hpt-mobile-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-top: 20px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 999px;
    background: rgba(2,18,34,.5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
    color: rgba(255,255,255,.88);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .02em;
    white-space: nowrap;
  }

  .hpt-mobile-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .hpt-mobile-badges svg {
    width: 17px;
    height: 17px;
    fill: var(--hpt-gold);
    flex: 0 0 auto;
  }

  .hpt-badge-star {
    color: var(--hpt-gold);
    font-size: 17px;
    line-height: 1;
  }

  .hpt-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    width: 100%;
    column-gap: 0;
    margin-top: 24px;
  }

  .hpt-stats > div {
    min-width: 0;
    padding: 0 18px;
  }

  .hpt-stats > div:first-child { padding-left: 0; }
  .hpt-stats > div:last-child { padding-right: 0; }

  .hpt-stats strong {
    font-size: 35px;
  }

  .hpt-stats > div > span:not(.hpt-stars) {
    font-size: 13px;
  }

  .hpt-stars {
    margin-top: 8px;
    font-size: 17px;
    letter-spacing: .08em;
  }

  .hpt-stats small {
    margin-top: 7px;
    font-size: 10px;
    letter-spacing: .08em;
  }
.hpt-hero__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: 69% 0;
    filter: saturate(1.12) contrast(1.05) brightness(1.18);
    transform: scale(1.02);
    box-shadow: none;
  }

  .hpt-hero:hover .hpt-hero__image { transform: scale(1.02); }

  .hpt-mobile-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    padding: 80px 18px 24px;
    background: #fff;
    color: var(--hpt-ink);
    box-shadow: 0 -1px 0 rgba(6,27,52,.06), inset 0 1px 0 rgba(255,255,255,.8);
  }

  .hpt-mobile-trust-strip article {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 8px;
    min-height: 92px;
    padding: 0 10px;
    border-right: 1px solid #e1e6ed;
    text-align: center;
  }

  .hpt-mobile-trust-strip article:last-child { border-right: 0; }

  .hpt-mobile-trust-strip svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: var(--hpt-ink);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .hpt-mobile-trust-strip span {
    font-size: 12px;
    line-height: 1.18;
    font-weight: 900;
  }

  .hpt-steps {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 96px 28px 34px;
    background: linear-gradient(180deg, #073352 0%, #052741 100%);
    color: #fff;
  }

  .hpt-steps article {
    grid-template-columns: 58px 1fr;
    column-gap: 20px;
    min-height: 108px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(212,150,34,.34);
  }

  .hpt-steps article::after {
    display: none;
  }

  .hpt-steps article:last-child { border-bottom: 0; }

  .hpt-steps b {
    width: 58px;
    height: 58px;
    font-size: 29px;
  }

  .hpt-steps span {
    font-size: 19px;
    line-height: 1.1;
  }

  .hpt-steps p {
    max-width: 280px;
    margin-top: 5px;
    color: rgba(255,255,255,.78);
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .hpt-nav {
    min-height: 74px;
    padding: 12px 16px;
  }

  .hpt-brand {
    gap: 8px;
    font-size: 13px;
  }

  .hpt-brand img {
    width: 40px;
    height: 40px;
  }

  .hpt-nav__actions { gap: 11px; }
  .hpt-lang { font-size: 15px; }
  .hpt-nav__divider { display: block; height: 28px; }
  .hpt-whatsapp svg { width: 28px; height: 28px; }
  .hpt-menu { width: 38px; height: 38px; }
  .hpt-menu span { width: 30px; }

  .hpt-hero {
    padding-bottom: 70px;
  }

  .hpt-hero__content {
    width: calc(100% - 24px);
    padding-top: 26px;
  }

  .hpt-hero__image {
    object-position: 69% 0;
    transform: scale(1.04);
  }

  .hpt-hero:hover .hpt-hero__image { transform: scale(1.04); }

  .hpt-eyebrow { font-size: 12px; }

  .hpt-hero h1 {
    max-width: 76%;
    font-size: clamp(38px, 12vw, 52px);
  }

  .hpt-lede {
    max-width: 72%;
    font-size: 15px;
  }

  .hpt-mobile-badges {
    gap: 5px;
    padding: 9px 10px;
    font-size: 9px;
    letter-spacing: .01em;
  }

  .hpt-mobile-badges span { gap: 4px; }
  .hpt-mobile-badges svg { width: 14px; height: 14px; }
  .hpt-badge-star { font-size: 14px; }

  .hpt-stats { margin-top: 22px; }
  .hpt-stats strong { font-size: 30px; }
  .hpt-stars { font-size: 15px; }
  .hpt-stats small { font-size: 9px; }
  .hpt-stats > div { padding: 0 11px; }
.hpt-mobile-trust-strip {
    padding: 76px 12px 22px;
  }

  .hpt-mobile-trust-strip article {
    min-height: 88px;
    padding: 0 6px;
  }

  .hpt-mobile-trust-strip svg {
    width: 34px;
    height: 34px;
  }

  .hpt-mobile-trust-strip span {
    font-size: 10.5px;
  }
}


@media (max-width: 560px) {
  .hpt-steps {
    padding: 92px 30px 34px;
  }

  .hpt-steps article {
    grid-template-columns: 54px 1fr;
    column-gap: 18px;
    min-height: 98px;
    padding: 18px 0;
  }

  .hpt-steps b {
    width: 54px;
    height: 54px;
    font-size: 27px;
  }

  .hpt-steps span { font-size: 17px; }
  .hpt-steps p { font-size: 14px; }
}
@media (max-width: 390px) {
  .hpt-brand span { max-width: 120px; }
  .hpt-hero h1 { font-size: clamp(36px, 11.4vw, 45px); }
  .hpt-lede { font-size: 14px; }
  .hpt-mobile-badges { font-size: 8px; }
  .hpt-stats > div { padding: 0 8px; }
}
/* Fleet CTA replacement overrides */
@media (max-width: 1180px) {
  .hpt-hero-cta {
    min-width: 300px;
  }
}

@media (max-width: 840px) {
  .hpt-hero-cta {
    width: min(100%, 330px);
    min-height: 58px;
    margin-top: 22px;
    padding: 0 22px;
    border-radius: 13px;
    font-size: 14px;
    letter-spacing: .07em;
  }

  .hpt-hero-cta svg {
    width: 31px;
    height: 31px;
  }

  .hpt-hero-cta span {
    font-size: 24px;
  }

  .hpt-steps {
    display: grid;
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    max-width: 520px;
    margin: 0 auto -30px;
    padding: 16px 22px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    background: rgba(2,20,38,.98);
    box-shadow: 0 22px 46px rgba(0,0,0,.22);
  }

  .hpt-steps article {
    min-height: 54px;
    padding: 10px 0;
  }

  .hpt-steps b {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .hpt-steps span {
    font-size: 14px;
    letter-spacing: .02em;
  }
}

@media (max-width: 560px) {
  .hpt-hero-cta {
    width: 100%;
    min-height: 56px;
    margin-top: 22px;
    border-radius: 13px;
    font-size: 13px;
  }

  .hpt-hero-cta svg {
    width: 29px;
    height: 29px;
  }

  .hpt-steps {
    margin: 0 auto -28px;
    padding: 14px 18px;
  }
}

/* Luxury yacht category listing */
.hpt-charter-showcase {
  position: relative;
  padding: 140px 0 118px;
  color: var(--hpt-white);
  background:
    radial-gradient(circle at 78% 16%, rgba(19, 102, 130, .22), transparent 34%),
    radial-gradient(circle at 14% 45%, rgba(212, 150, 34, .12), transparent 28%),
    linear-gradient(180deg, #021322 0%, #031a2d 48%, #02101c 100%);
  overflow: hidden;
}

.hpt-charter-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
  opacity: .45;
  pointer-events: none;
}

.hpt-charter-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -8%, rgba(255,255,255,.08), transparent 38%);
  pointer-events: none;
}

.hpt-charter-showcase__inner {
  position: relative;
  z-index: 1;
  width: min(1460px, calc(100% - 96px));
  margin: 0 auto;
}

.hpt-showcase-intro {
  max-width: 760px;
  margin: 0 auto 72px;
  text-align: center;
}

.hpt-showcase-intro__eyebrow,
.hpt-category__eyebrow {
  margin: 0 0 14px;
  color: var(--hpt-gold);
  font: 800 13px/1.2 Manrope, sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.hpt-showcase-intro h2,
.hpt-category h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.hpt-showcase-intro h2 {
  font-size: clamp(44px, 5vw, 78px);
  line-height: .92;
}

.hpt-showcase-intro p:not(.hpt-showcase-intro__eyebrow) {
  margin: 20px auto 0;
  max-width: 660px;
  color: rgba(255,255,255,.74);
  font-size: 17px;
  line-height: 1.75;
}

.hpt-category + .hpt-category {
  margin-top: 84px;
}

.hpt-category__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.hpt-category__eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.hpt-category__eyebrow::after {
  content: "";
  display: block;
  width: min(520px, 42vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(212,150,34,.9), rgba(212,150,34,0));
}

.hpt-category h3 {
  max-width: 760px;
  font-size: clamp(32px, 3.2vw, 58px);
  line-height: .98;
}

.hpt-category__description {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.7;
}

.hpt-category__duration {
  align-self: center;
  padding: 13px 18px;
  border: 1px solid rgba(212,150,34,.35);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  font: 800 13px/1 Manrope, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(255,255,255,.04);
}

.hpt-card-grid {
  display: grid;
  gap: 22px;
}

.hpt-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hpt-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hpt-card-grid--saona {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hpt-category--editorial {
  display: grid;
  grid-template-columns: minmax(260px, .84fr) minmax(0, 2.16fr);
  gap: 34px;
  align-items: start;
}

.hpt-category--editorial .hpt-category__header {
  display: block;
  margin-bottom: 0;
}

.hpt-category--editorial .hpt-category__eyebrow::after {
  width: 120px;
}

.hpt-charter-card {
  position: relative;
  display: block;
  min-height: 318px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  color: var(--hpt-white);
  text-decoration: none;
  background: #061523;
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
  isolation: isolate;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.hpt-card-grid--four .hpt-charter-card {
  min-height: 258px;
}

.hpt-category--editorial .hpt-charter-card {
  min-height: 308px;
}

.hpt-charter-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .7s ease, filter .7s ease;
}

.hpt-charter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2,12,22,.12) 0%, rgba(2,12,22,.15) 38%, rgba(2,12,22,.84) 100%),
    linear-gradient(90deg, rgba(2,12,22,.3), transparent 54%);
}

.hpt-card__shade {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(2,13,23,.92));
}

.hpt-card__price {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(2,18,33,.82);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  font: 900 12px/1 Manrope, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hpt-card__price strong {
  margin-left: 4px;
  font-size: 16px;
  letter-spacing: 0;
}

.hpt-card__flag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 11px 16px;
  border: 1px solid rgba(231,178,58,.5);
  color: #fff;
  background: linear-gradient(135deg, rgba(203,142,22,.95), rgba(230,177,51,.86));
  box-shadow: 0 12px 26px rgba(0,0,0,.2);
  font: 900 12px/1 Manrope, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hpt-card__content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.hpt-card__name {
  display: block;
  max-width: 94%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 700;
  line-height: .95;
  text-shadow: 0 3px 20px rgba(0,0,0,.65);
}

.hpt-card-grid--four .hpt-card__name {
  font-size: clamp(24px, 1.65vw, 32px);
}

.hpt-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 16px;
  color: rgba(255,255,255,.88);
  font: 800 12px/1.2 Manrope, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hpt-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hpt-card__meta i {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 2px solid var(--hpt-gold);
  border-radius: 50%;
}

.hpt-card__meta i::before,
.hpt-card__meta i::after {
  content: "";
  position: absolute;
  background: var(--hpt-gold);
}

.hpt-card__meta i::before {
  width: 5px;
  height: 5px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
}

.hpt-card__meta i::after {
  width: 9px;
  height: 2px;
  left: 1px;
  bottom: -4px;
  border-radius: 999px;
}


.hpt-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.hpt-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.76);
  color: #fff;
  background: rgba(2,16,30,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 26px rgba(0,0,0,.22);
  font: 900 12px/1 Manrope, sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .28s ease, border-color .28s ease, transform .28s ease;
}

.hpt-card__footer .hpt-card__meta {
  justify-content: flex-end;
  margin-top: 0;
  text-align: right;
  color: #fff;
}

.hpt-charter-card:hover .hpt-card__button,
.hpt-charter-card:focus-visible .hpt-card__button {
  border-color: var(--hpt-gold);
  background: rgba(212,150,34,.2);
  transform: translateY(-2px);
}
.hpt-charter-card:hover,
.hpt-charter-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(212,150,34,.74);
  box-shadow: 0 28px 66px rgba(0,0,0,.34);
}

.hpt-charter-card:hover img,
.hpt-charter-card:focus-visible img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.05);
}

.hpt-category__actions {
  margin: 30px 0 0;
  text-align: center;
}

.hpt-category__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--hpt-white);
  text-decoration: none;
  font: 900 14px/1 Manrope, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .28s ease, transform .28s ease;
}

.hpt-category__cta span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--hpt-gold);
  border-radius: 50%;
  color: var(--hpt-gold);
  font-size: 20px;
  line-height: 1;
  transition: background .28s ease, color .28s ease, transform .28s ease;
}

.hpt-category__cta:hover,
.hpt-category__cta:focus-visible {
  color: var(--hpt-gold);
  transform: translateY(-2px);
}

.hpt-category__cta:hover span,
.hpt-category__cta:focus-visible span {
  color: #031523;
  background: var(--hpt-gold);
  transform: translateX(3px);
}

.hpt-showcase-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 84px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(2,16,30,.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 28px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
}

.hpt-showcase-benefits article {
  min-height: 132px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.hpt-showcase-benefits article:last-child {
  border-right: 0;
}

.hpt-showcase-benefits span {
  display: block;
  margin-bottom: 13px;
  color: var(--hpt-gold);
  font: 800 13px/1 Manrope, sans-serif;
  letter-spacing: .16em;
}

.hpt-showcase-benefits strong {
  display: block;
  color: #fff;
  font: 900 15px/1.25 Manrope, sans-serif;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.hpt-showcase-benefits p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .hpt-charter-showcase__inner {
    width: min(100% - 44px, 1060px);
  }

  .hpt-card-grid--four {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hpt-category--editorial {
    grid-template-columns: 1fr;
  }

  .hpt-category--editorial .hpt-category__description {
    max-width: 820px;
  }

  .hpt-showcase-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hpt-showcase-benefits article:nth-child(2) {
    border-right: 0;
  }

  .hpt-showcase-benefits article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
}

@media (max-width: 840px) {
  .hpt-charter-showcase {
    padding: 86px 0 88px;
  }

  .hpt-charter-showcase__inner {
    width: calc(100% - 28px);
  }

  .hpt-showcase-intro {
    margin-bottom: 56px;
    text-align: left;
  }

  .hpt-showcase-intro h2 {
    font-size: clamp(36px, 10vw, 58px);
  }

  .hpt-category + .hpt-category {
    margin-top: 68px;
  }

  .hpt-category__header {
    display: block;
  }

  .hpt-category__duration {
    display: inline-flex;
    margin-top: 18px;
  }

  .hpt-category__eyebrow {
    white-space: normal;
  }

  .hpt-category__eyebrow::after {
    width: min(180px, 42vw);
  }

  .hpt-card-grid,
  .hpt-card-grid--three,
  .hpt-card-grid--four,
  .hpt-card-grid--saona {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hpt-charter-card,
  .hpt-card-grid--four .hpt-charter-card,
  .hpt-category--editorial .hpt-charter-card {
    min-height: 250px;
  }

  .hpt-showcase-benefits {
    margin-top: 66px;
  }
}

@media (max-width: 620px) {
  .hpt-charter-showcase {
    padding: 78px 0 74px;
  }

  .hpt-card-grid,
  .hpt-card-grid--three,
  .hpt-card-grid--four,
  .hpt-card-grid--saona {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hpt-category h3 {
    font-size: clamp(30px, 9.5vw, 42px);
  }

  .hpt-category__description {
    font-size: 15px;
  }

  .hpt-charter-card,
  .hpt-card-grid--four .hpt-charter-card,
  .hpt-category--editorial .hpt-charter-card {
    min-height: 292px;
    border-radius: 12px;
  }

  .hpt-card__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hpt-card__name,
  .hpt-card-grid--four .hpt-card__name {
    font-size: 31px;
  }

  .hpt-card__meta {
    font-size: 11px;
  }


  .hpt-card__footer {
    gap: 12px;
  }

  .hpt-card__button {
    min-width: 158px;
    min-height: 44px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: .12em;
  }

  .hpt-card__footer .hpt-card__meta {
    max-width: 42%;
    font-size: 10px;
  }
  .hpt-category__cta {
    width: 100%;
    justify-content: space-between;
    padding: 17px 18px;
    border: 1px solid rgba(212,150,34,.42);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    font-size: 12px;
  }

  .hpt-showcase-benefits {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .hpt-showcase-benefits article,
  .hpt-showcase-benefits article:nth-child(2),
  .hpt-showcase-benefits article:nth-child(-n+2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .hpt-showcase-benefits article:last-child {
    border-bottom: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* Final vertical steps card */
.hpt-steps {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: min(640px, calc(100% - 64px));
  margin: -58px auto -58px;
  padding: 0 24px 0 0;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(2, 17, 31, .99), rgba(5, 32, 52, .97));
  color: #fff;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .34);
  backdrop-filter: blur(12px);
}

.hpt-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr 28px;
  align-items: center;
  column-gap: 24px;
  min-height: 76px;
  padding: 0;
  border: 0;
}

.hpt-steps article:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 74px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, .11);
}

.hpt-steps article::after,
.hpt-steps article:not(:last-child)::after {
  content: "";
  display: block;
  justify-self: end;
  width: 14px;
  height: 14px;
  margin: 0;
  border-top: 3px solid var(--hpt-gold);
  border-right: 3px solid var(--hpt-gold);
  background: transparent;
  transform: rotate(45deg);
  transition: transform .24s ease, border-color .24s ease;
}

.hpt-steps article:hover::after {
  transform: translateX(4px) rotate(45deg);
  border-color: #f0b43e;
}

.hpt-steps b {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #eba936 0%, var(--hpt-gold) 52%, var(--hpt-gold-dark) 100%);
  color: #061126;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset -1px 0 rgba(0, 0, 0, .24), inset 0 1px rgba(255, 255, 255, .28);
}

.hpt-steps article:first-child b { border-radius: 18px 8px 0 0; }
.hpt-steps article:last-child b { border-radius: 0 0 8px 18px; }

.hpt-steps div {
  position: relative;
  min-width: 0;
  padding-left: 24px;
}

.hpt-steps div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 38px;
  background: var(--hpt-gold);
  transform: translateY(-50%);
}

.hpt-steps span {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1.18;
  text-transform: uppercase;
  white-space: nowrap;
}

.hpt-steps p { display: none !important; }

@media (max-width: 840px) {
  .hpt-steps {
    width: calc(100% - 32px);
    max-width: 520px;
    margin: 0 auto -30px;
    padding: 0 18px 0 0;
    border-radius: 20px;
  }

  .hpt-steps article {
    grid-template-columns: 66px 1fr 24px;
    column-gap: 18px;
    min-height: 72px;
    padding: 0;
  }

  .hpt-steps article:not(:last-child)::before { left: 66px; }

  .hpt-steps article::after,
  .hpt-steps article:not(:last-child)::after {
    display: block;
    width: 13px;
    height: 13px;
    border-width: 3px;
  }

  .hpt-steps b {
    width: 66px;
    height: auto;
    font-size: 30px;
  }

  .hpt-steps div { padding-left: 18px; }
  .hpt-steps div::before { height: 34px; }

  .hpt-steps span {
    font-size: 16px;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .hpt-steps {
    width: calc(100% - 28px);
    padding-right: 12px;
  }

  .hpt-steps article {
    grid-template-columns: 58px 1fr 20px;
    column-gap: 14px;
    min-height: 66px;
  }

  .hpt-steps article:not(:last-child)::before { left: 58px; }

  .hpt-steps b {
    width: 58px;
    font-size: 28px;
  }

  .hpt-steps div { padding-left: 14px; }
  .hpt-steps div::before { height: 30px; }

  .hpt-steps span { font-size: 14px; }

  .hpt-steps article::after,
  .hpt-steps article:not(:last-child)::after {
    width: 11px;
    height: 11px;
    border-width: 2px;
  }
}
/* End final vertical steps card */
/* Desktop steps reset: keep the premium vertical card only on mobile. */
@media (min-width: 841px) {
    .hpt-steps {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 34px;
        width: min(1180px, calc(100% - 96px));
        max-width: 1180px;
        margin: -44px auto 70px;
        padding: 25px 44px;
        border-radius: 14px;
        background: rgba(2, 20, 34, .95);
        border: 1px solid rgba(255, 255, 255, .12);
        box-shadow: 0 22px 56px rgba(0, 0, 0, .28);
    }

    .hpt-steps article {
        display: inline-flex;
        grid-template-columns: none;
        align-items: center;
        gap: 14px;
        min-height: auto;
        padding: 0;
        column-gap: 0;
        border: 0;
    }

    .hpt-steps article:not(:last-child)::before {
        display: none;
    }

    .hpt-steps article::after,
    .hpt-steps article:not(:last-child)::after {
        content: "";
        display: inline-block;
        justify-self: auto;
        width: 34px;
        height: 2px;
        margin-left: 20px;
        border: 0;
        background: rgba(255, 255, 255, .78);
        transform: none;
    }

    .hpt-steps article:last-child::after {
        display: none;
    }

    .hpt-steps article:hover::after {
        transform: none;
        border-color: transparent;
    }

    .hpt-steps b {
        align-self: auto;
        width: 36px;
        height: 36px;
        border-radius: 999px !important;
        background: #fff;
        color: #07192a;
        font-size: 16px;
        line-height: 1;
        box-shadow: none;
    }

    .hpt-steps div {
        padding-left: 0;
    }

    .hpt-steps div::before {
        display: none;
    }

    .hpt-steps span {
        color: #fff;
        font-size: 16px;
        letter-spacing: .01em;
        white-space: nowrap;
    }
}

/* Homepage test light luxury refinement 2026-07-20 */
@keyframes hptFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 841px) {
    .home-test-page {
        background: #f5f8fa;
        color: #07192a;
    }

    .hpt-hero {
        min-height: clamp(920px, 94vh, 1010px);
        padding: 0 0 126px;
        overflow: visible;
        color: #07192a;
        background: #f7fafc;
        isolation: isolate;
    }

    .hpt-hero__image {
        object-position: 73% 50%;
        filter: saturate(1.08) contrast(1.04) brightness(1.18);
        transform: scale(1.012);
        transition: transform .7s ease, filter .7s ease;
    }

    .hpt-hero:hover .hpt-hero__image {
        transform: scale(1.026);
        filter: saturate(1.1) contrast(1.05) brightness(1.2);
    }

    .hpt-hero__shade {
        background:
            linear-gradient(90deg,
                rgba(255, 255, 255, .995) 0%,
                rgba(255, 255, 255, .985) 24%,
                rgba(255, 255, 255, .88) 38%,
                rgba(255, 255, 255, .48) 54%,
                rgba(255, 255, 255, .14) 72%,
                rgba(255, 255, 255, .04) 100%),
            linear-gradient(180deg,
                rgba(255, 255, 255, .90) 0%,
                rgba(255, 255, 255, .22) 45%,
                rgba(247, 250, 252, .92) 100%);
    }

    .hpt-nav {
        width: min(1500px, calc(100% - 104px));
        padding-top: 26px;
        animation: hptFadeUp .7s ease both;
    }

    .hpt-brand img {
        filter: brightness(0) saturate(100%) invert(8%) sepia(38%) saturate(1470%) hue-rotate(174deg) brightness(89%) contrast(98%);
    }

    .hpt-brand span,
    .hpt-nav__links a,
    .hpt-lang {
        color: #07192a;
        text-shadow: none;
    }

    .hpt-nav__links a {
        position: relative;
        transition: color .2s ease, opacity .2s ease;
    }

    .hpt-nav__links a::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -9px;
        height: 2px;
        background: #d99720;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .22s ease;
    }

    .hpt-nav__links a:hover::after,
    .hpt-nav__links a:focus-visible::after {
        transform: scaleX(1);
    }

    .hpt-nav__divider {
        background: rgba(7, 25, 42, .28);
    }

    .hpt-whatsapp svg {
        fill: #07192a;
    }

    .hpt-menu span {
        background: #07192a;
    }

    .hpt-hero__content {
        width: min(1500px, calc(100% - 104px));
        padding-top: clamp(122px, 12vh, 166px);
        color: #07192a;
        animation: hptFadeUp .85s ease .08s both;
    }

    .hpt-eyebrow {
        margin-bottom: 22px;
        color: #d99720;
        text-shadow: none;
    }

    .hpt-hero h1 {
        max-width: 660px;
        color: #07192a;
        font-size: clamp(82px, 7.4vw, 128px);
        line-height: .88;
        text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
    }

    .hpt-hero h1 span {
        color: #d99720;
    }

    .hpt-lede {
        max-width: 560px;
        margin-top: 30px;
        color: #26384a;
        font-size: 20px;
        line-height: 1.5;
        text-shadow: none;
    }

    .hpt-hero-cta {
        margin-top: 30px;
        min-width: 282px;
        min-height: 66px;
        padding: 0 34px;
        border: 0;
        border-radius: 10px;
        background: linear-gradient(135deg, #c78413, #edae2f);
        color: #fff;
        box-shadow: 0 18px 42px rgba(199, 132, 19, .28), inset 0 1px 0 rgba(255, 255, 255, .35);
        transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
    }

    .hpt-hero-cta:hover,
    .hpt-hero-cta:focus-visible {
        transform: translateY(-3px);
        filter: brightness(1.04);
        box-shadow: 0 26px 54px rgba(199, 132, 19, .34), inset 0 1px 0 rgba(255, 255, 255, .42);
    }

    .hpt-hero-cta svg {
        width: 34px;
        height: 34px;
    }

    .hpt-stats {
        width: min(660px, 100%);
        margin-top: 38px;
        gap: 0;
        justify-content: flex-start;
        color: #07192a;
        text-shadow: none;
    }

    .hpt-stats > div {
        min-width: 178px;
        padding: 0 42px 0 0;
        margin-right: 42px;
        border-right: 1px solid rgba(203, 139, 29, .72);
    }

    .hpt-stats > div:last-child {
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
    }

    .hpt-stats strong {
        color: #07192a;
        font-size: 50px;
        line-height: .95;
        letter-spacing: .01em;
    }

    .hpt-stats > div > span:not(.hpt-stars) {
        margin-bottom: 2px;
        color: #07192a;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: .03em;
        text-transform: none;
        opacity: .82;
    }

    .hpt-stats .hpt-stars {
        margin-top: 10px;
        color: #d99720;
        letter-spacing: .11em;
    }

    .hpt-stats small {
        margin-top: 8px;
        color: #07192a;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .12em;
        opacity: 1;
    }

    .hpt-mobile-badges {
        display: none !important;
    }

    .hpt-steps {
        position: relative !important;
        z-index: 8 !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        width: min(930px, calc(100% - 112px)) !important;
        max-width: 930px !important;
        min-height: 56px !important;
        margin: -66px auto 0 !important;
        padding: 15px 30px !important;
        overflow: hidden !important;
        border: 1px solid rgba(7, 25, 42, .10) !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, .97) !important;
        box-shadow: 0 22px 50px rgba(7, 25, 42, .18) !important;
        transform: none !important;
    }

    .hpt-steps::before,
    .hpt-steps article:not(:last-child)::before,
    .hpt-steps div::before {
        display: none !important;
        content: none !important;
    }

    .hpt-steps article {
        display: inline-flex !important;
        flex: 0 1 auto !important;
        grid-template-columns: none !important;
        align-items: center !important;
        gap: 13px !important;
        min-height: auto !important;
        padding: 0 18px !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .hpt-steps article::after,
    .hpt-steps article:not(:last-child)::after {
        content: "" !important;
        position: static !important;
        display: inline-block !important;
        width: 38px !important;
        height: 1px !important;
        margin-left: 16px !important;
        border: 0 !important;
        background: rgba(7, 25, 42, .28) !important;
        transform: none !important;
    }

    .hpt-steps article:last-child::after {
        display: none !important;
        content: none !important;
    }

    .hpt-steps b {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 29px !important;
        width: 29px !important;
        height: 29px !important;
        min-height: 29px !important;
        border-radius: 999px !important;
        background: #07192a !important;
        color: #fff !important;
        font-family: "Montserrat", Arial, sans-serif !important;
        font-size: 15px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        box-shadow: none !important;
    }

    .hpt-steps div {
        display: block !important;
        padding-left: 0 !important;
    }

    .hpt-steps span {
        color: #07192a !important;
        font-family: "Montserrat", Arial, sans-serif !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        line-height: 1.1 !important;
        letter-spacing: .055em !important;
        white-space: nowrap !important;
        text-transform: uppercase !important;
    }

    .hpt-steps p {
        display: none !important;
    }

    .hpt-charter-showcase {
        margin-top: 0;
        padding: 96px 0 110px;
        color: #07192a;
        background: linear-gradient(180deg, #f7f9fb 0%, #eef4f6 46%, #f7f9fb 100%);
    }

    .hpt-charter-showcase::before,
    .hpt-charter-showcase::after {
        opacity: .18;
    }

    .hpt-charter-showcase__inner {
        width: min(1420px, calc(100% - 104px));
    }

    .hpt-showcase-intro {
        display: none !important;
    }

    .hpt-category {
        margin-top: 0;
    }

    .hpt-category + .hpt-category {
        margin-top: 86px;
    }

    .hpt-category__eyebrow {
        color: #d99720;
    }

    .hpt-category__heading-line {
        background: rgba(203, 139, 29, .55);
    }

    .hpt-category h3 {
        color: #07192a;
        text-shadow: none;
    }

    .hpt-category__description {
        max-width: 860px;
        color: #3a4a5d;
    }

    .hpt-category__duration {
        color: #07192a;
        background: #fff;
        border-color: rgba(203, 139, 29, .7);
    }

    .hpt-view-all {
        color: #07192a;
    }

    .hpt-view-all:hover,
    .hpt-view-all:focus-visible {
        color: #d99720;
    }
}
/* End homepage test light luxury refinement 2026-07-20 */

/* Homepage test light editorial correction 2026-07-20 */
@media (min-width: 841px) {
    .home-test-page {
        background: #f5f8fa !important;
    }

    .hpt-hero {
        min-height: clamp(790px, 84vh, 900px) !important;
        padding-bottom: 70px !important;
        color: #06192b !important;
        background: #f5f8fa !important;
        overflow: visible !important;
    }

    .hpt-hero__image {
        object-position: 77% 50% !important;
        filter: saturate(1.06) contrast(1.04) brightness(1.25) !important;
        transform: scale(1.012) !important;
    }

    .hpt-hero__shade {
        background:
            linear-gradient(90deg,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, .99) 23%,
                rgba(255, 255, 255, .86) 39%,
                rgba(255, 255, 255, .44) 58%,
                rgba(255, 255, 255, .08) 100%),
            linear-gradient(180deg,
                rgba(255, 255, 255, .92) 0%,
                rgba(255, 255, 255, .32) 54%,
                rgba(245, 248, 250, .98) 100%) !important;
    }

    .hpt-nav {
        color: #06192b !important;
        text-shadow: none !important;
    }

    .hpt-brand img {
        filter: brightness(0) saturate(100%) invert(8%) sepia(26%) saturate(1764%) hue-rotate(174deg) brightness(94%) contrast(96%) !important;
    }

    .hpt-brand span,
    .hpt-nav__links a,
    .hpt-lang {
        color: #06192b !important;
        text-shadow: none !important;
    }

    .hpt-nav__links a::after,
    .hpt-lang::after {
        background: #d99720 !important;
    }

    .hpt-whatsapp {
        color: #06192b !important;
    }

    .hpt-nav__divider {
        background: rgba(6, 25, 43, .25) !important;
    }

    .hpt-hero__content {
        padding-top: clamp(118px, 12vh, 150px) !important;
        color: #06192b !important;
    }

    .hpt-eyebrow {
        color: #d89517 !important;
        text-shadow: none !important;
    }

    .hpt-hero h1,
    .hpt-lede,
    .hpt-stats strong,
    .hpt-stats small,
    .hpt-stats > div > span:not(.hpt-stars) {
        color: #06192b !important;
        text-shadow: none !important;
    }

    .hpt-hero h1 span {
        color: #d99720 !important;
    }

    .hpt-lede {
        max-width: 520px !important;
    }

    .hpt-hero-cta {
        margin-top: 24px !important;
        min-width: 245px !important;
        min-height: 58px !important;
        border-radius: 8px !important;
        border: 0 !important;
        background: linear-gradient(135deg, #c68110, #eda923) !important;
        color: #fff !important;
        box-shadow: 0 18px 38px rgba(151, 92, 4, .25) !important;
    }

    .hpt-hero-cta:hover,
    .hpt-hero-cta:focus-visible {
        transform: translateY(-2px) !important;
        box-shadow: 0 22px 48px rgba(151, 92, 4, .32) !important;
    }

    .hpt-stats {
        margin-top: 34px !important;
        gap: 38px !important;
        color: #06192b !important;
    }

    .hpt-stats > div {
        min-width: 130px !important;
    }

    .hpt-stats > div + div {
        border-left-color: rgba(217, 151, 32, .72) !important;
    }

    .hpt-mobile-badges {
        display: none !important;
    }

    .hpt-steps {
        position: relative !important;
        z-index: 12 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        width: min(1060px, calc(100% - 180px)) !important;
        max-width: 1060px !important;
        min-height: 58px !important;
        margin: -30px auto 0 !important;
        padding: 13px 30px !important;
        border-radius: 10px !important;
        border: 1px solid rgba(6, 25, 43, .10) !important;
        background: rgba(255, 255, 255, .98) !important;
        box-shadow: 0 18px 44px rgba(6, 25, 43, .14) !important;
        overflow: hidden !important;
        transform: none !important;
    }

    .hpt-steps::before,
    .hpt-steps article::before,
    .hpt-steps div::before {
        display: none !important;
        content: none !important;
    }

    .hpt-steps article {
        position: relative !important;
        display: inline-flex !important;
        flex: 0 1 auto !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        min-height: 0 !important;
        padding: 0 22px !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        grid-template-columns: none !important;
    }

    .hpt-steps article::after {
        content: "" !important;
        position: static !important;
        display: inline-block !important;
        width: 40px !important;
        height: 1px !important;
        margin-left: 14px !important;
        border: 0 !important;
        background: rgba(6, 25, 43, .28) !important;
        transform: none !important;
    }

    .hpt-steps article:last-child::after {
        display: none !important;
        content: none !important;
    }

    .hpt-steps b {
        align-self: auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 28px !important;
        height: 28px !important;
        flex: 0 0 28px !important;
        border-radius: 50% !important;
        background: #07192a !important;
        color: #fff !important;
        font: 900 14px/1 "Manrope", Arial, sans-serif !important;
        box-shadow: none !important;
    }

    .hpt-steps div {
        display: block !important;
        min-width: 0 !important;
        padding-left: 0 !important;
    }

    .hpt-steps span {
        display: block !important;
        color: #07192a !important;
        font-family: "Manrope", Arial, sans-serif !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        line-height: 1.05 !important;
        letter-spacing: .055em !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }

    .hpt-steps p {
        display: none !important;
    }

    .hpt-charter-showcase {
        margin-top: 0 !important;
        padding-top: 86px !important;
        background: linear-gradient(180deg, #f5f8fa 0%, #eef5f7 52%, #f8fafb 100%) !important;
        color: #07192a !important;
    }

    .hpt-charter-showcase::before {
        opacity: .28 !important;
    }

    .hpt-category__eyebrow {
        color: #d99720 !important;
    }

    .hpt-category h3 {
        color: #07192a !important;
        text-shadow: none !important;
    }

    .hpt-category__description {
        color: #3a4a5d !important;
    }

    .hpt-category__duration {
        color: #07192a !important;
        background: rgba(255, 255, 255, .92) !important;
        border-color: rgba(203, 139, 29, .7) !important;
    }

    .hpt-view-all {
        color: #07192a !important;
    }
}

@media (max-width: 840px) {
    .hpt-steps {
        width: calc(100% - 28px) !important;
        max-width: 520px !important;
        margin: -18px auto 44px !important;
        overflow: hidden !important;
    }

    .hpt-steps article {
        min-width: 0 !important;
    }

    .hpt-steps span {
        overflow-wrap: anywhere !important;
    }

    .hpt-charter-showcase {
        margin-top: 0 !important;
    }
}
/* End homepage test light editorial correction 2026-07-20 */
/* Homepage test desktop steps specificity lock 2026-07-20 */
@media (min-width: 841px) {
    .hpt-steps article:not(:last-child)::before {
        display: none !important;
        content: none !important;
    }

    .hpt-steps article:not(:last-child)::after {
        content: "" !important;
        position: static !important;
        display: inline-block !important;
        width: 40px !important;
        height: 1px !important;
        margin-left: 14px !important;
        border: 0 !important;
        background: rgba(6, 25, 43, .28) !important;
        transform: none !important;
    }

    .hpt-steps article:last-child::after {
        display: none !important;
        content: none !important;
    }
}
/* End homepage test desktop steps specificity lock 2026-07-20 */
/* Homepage test final desktop/mobile steps guard 2026-07-20 */
@media (min-width: 841px) {
    .home-test-page .hpt-steps {
        position: relative !important;
        z-index: 14 !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 18px !important;
        width: min(980px, calc(100% - 220px)) !important;
        max-width: 980px !important;
        min-height: 56px !important;
        margin: -28px auto 54px !important;
        padding: 13px 28px !important;
        overflow: hidden !important;
        border: 1px solid rgba(6, 25, 43, .10) !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, .98) !important;
        color: #06192b !important;
        box-shadow: 0 18px 44px rgba(6, 25, 43, .16) !important;
        transform: none !important;
    }

    .home-test-page .hpt-steps article {
        position: static !important;
        display: inline-flex !important;
        flex: 0 1 auto !important;
        grid-template-columns: none !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        min-width: 0 !important;
        min-height: auto !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .home-test-page .hpt-steps article::before,
    .home-test-page .hpt-steps div::before {
        display: none !important;
        content: none !important;
    }

    .home-test-page .hpt-steps article::after,
    .home-test-page .hpt-steps article:not(:last-child)::after {
        content: "" !important;
        position: static !important;
        display: inline-block !important;
        flex: 0 0 32px !important;
        width: 32px !important;
        height: 1px !important;
        margin: 0 0 0 14px !important;
        border: 0 !important;
        background: rgba(6, 25, 43, .24) !important;
        transform: none !important;
    }

    .home-test-page .hpt-steps article:last-child::after {
        display: none !important;
        content: none !important;
    }

    .home-test-page .hpt-steps b {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 25px !important;
        width: 25px !important;
        height: 25px !important;
        min-height: 25px !important;
        border-radius: 999px !important;
        background: #06192b !important;
        color: #fff !important;
        font-family: "Manrope", Arial, sans-serif !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        box-shadow: none !important;
    }

    .home-test-page .hpt-steps div {
        display: block !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    .home-test-page .hpt-steps span {
        display: block !important;
        color: #06192b !important;
        font-family: "Manrope", Arial, sans-serif !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        letter-spacing: .055em !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }

    .home-test-page .hpt-steps p {
        display: none !important;
    }

    .home-test-page .hpt-charter-showcase {
        margin-top: 0 !important;
        padding-top: 72px !important;
    }
}

@media (max-width: 840px) {
    .home-test-page .hpt-steps {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: calc(100% - 32px) !important;
        max-width: 560px !important;
        margin: -18px auto 42px !important;
        padding: 0 14px 0 0 !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, rgba(2, 17, 31, .99), rgba(5, 32, 52, .97)) !important;
        border: 1px solid rgba(255, 255, 255, .10) !important;
        box-shadow: 0 22px 58px rgba(0, 0, 0, .30) !important;
        overflow: hidden !important;
        color: #fff !important;
    }
}
/* End homepage test final desktop/mobile steps guard 2026-07-20 */

/* Homepage test desktop step strip lock 2026-07-20 */
@media screen and (min-width: 900px) {
    body.home-test-page .hpt-steps {
        position: relative !important;
        z-index: 16 !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 18px !important;
        width: min(1120px, calc(100% - 160px)) !important;
        max-width: 1120px !important;
        min-height: 58px !important;
        margin: -30px auto 64px !important;
        padding: 13px 36px !important;
        overflow: hidden !important;
        border: 1px solid rgba(6, 25, 43, .12) !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, .98) !important;
        color: #06192b !important;
        box-shadow: 0 18px 45px rgba(6, 25, 43, .16) !important;
        transform: none !important;
    }

    body.home-test-page .hpt-steps::before,
    body.home-test-page .hpt-steps article::before,
    body.home-test-page .hpt-steps div::before {
        display: none !important;
        content: none !important;
    }

    body.home-test-page .hpt-steps article {
        position: static !important;
        display: inline-flex !important;
        flex: 0 1 auto !important;
        flex-direction: row !important;
        grid-template-columns: none !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        width: auto !important;
        min-width: 0 !important;
        min-height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    body.home-test-page .hpt-steps article::after,
    body.home-test-page .hpt-steps article:not(:last-child)::after {
        content: "" !important;
        position: static !important;
        display: inline-block !important;
        flex: 0 0 34px !important;
        width: 34px !important;
        height: 1px !important;
        margin: 0 0 0 16px !important;
        border: 0 !important;
        background: rgba(6, 25, 43, .28) !important;
        transform: none !important;
    }

    body.home-test-page .hpt-steps article:last-child::after {
        display: none !important;
        content: none !important;
    }

    body.home-test-page .hpt-steps b {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 26px !important;
        width: 26px !important;
        height: 26px !important;
        min-height: 26px !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: #06192b !important;
        color: #ffffff !important;
        font-family: "Manrope", Arial, sans-serif !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        box-shadow: none !important;
    }

    body.home-test-page .hpt-steps div {
        display: block !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    body.home-test-page .hpt-steps span {
        display: block !important;
        color: #06192b !important;
        font-family: "Manrope", Arial, sans-serif !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        letter-spacing: .055em !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }

    body.home-test-page .hpt-steps p {
        display: none !important;
    }

    body.home-test-page .hpt-charter-showcase {
        margin-top: 0 !important;
        padding-top: 76px !important;
    }
}

@media screen and (max-width: 899px) {
    body.home-test-page .hpt-steps {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: calc(100% - 32px) !important;
        max-width: 560px !important;
        margin: -18px auto 42px !important;
        padding: 0 14px 0 0 !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, rgba(2, 17, 31, .99), rgba(5, 32, 52, .97)) !important;
        border: 1px solid rgba(255, 255, 255, .10) !important;
        box-shadow: 0 22px 58px rgba(0, 0, 0, .30) !important;
        overflow: hidden !important;
        color: #ffffff !important;
    }
}
/* End homepage test desktop step strip lock 2026-07-20 */
/* Homepage test light luxury direction 2026-07-20 */
@media screen and (min-width: 900px) {
    body.home-test-page {
        background: #f5f8fa !important;
        color: #071b31 !important;
    }

    body.home-test-page .hpt-hero {
        min-height: clamp(820px, 98vh, 1000px) !important;
        padding-bottom: 0 !important;
        overflow: visible !important;
        color: #071b31 !important;
        background: #f7fbfd !important;
    }

    body.home-test-page .hpt-hero__image {
        opacity: 1 !important;
        filter: saturate(1.05) contrast(1.02) brightness(1.08) !important;
        object-position: 68% center !important;
        transform: none !important;
    }

    body.home-test-page .hpt-hero__shade {
        background:
            linear-gradient(90deg, rgba(247, 251, 253, .99) 0%, rgba(247, 251, 253, .97) 24%, rgba(247, 251, 253, .78) 42%, rgba(247, 251, 253, .28) 62%, rgba(247, 251, 253, .03) 84%),
            linear-gradient(180deg, rgba(247, 251, 253, .12) 0%, rgba(247, 251, 253, .02) 55%, rgba(247, 251, 253, .88) 100%) !important;
    }

    body.home-test-page .hpt-nav {
        width: min(1740px, calc(100% - 96px)) !important;
        padding-top: 28px !important;
        color: #071b31 !important;
    }

    body.home-test-page .hpt-brand,
    body.home-test-page .hpt-nav__links a,
    body.home-test-page .hpt-lang {
        color: #071b31 !important;
        text-shadow: none !important;
    }

    body.home-test-page .hpt-brand img {
        filter: brightness(0) saturate(100%) invert(10%) sepia(35%) saturate(1393%) hue-rotate(176deg) brightness(92%) contrast(96%) !important;
    }

    body.home-test-page .hpt-nav__links a::after {
        background: #d99a1f !important;
    }

    body.home-test-page .hpt-nav__links a:hover,
    body.home-test-page .hpt-lang:hover {
        color: #b97810 !important;
    }

    body.home-test-page .hpt-nav__divider {
        background: rgba(7, 27, 49, .30) !important;
    }

    body.home-test-page .hpt-whatsapp svg,
    body.home-test-page .hpt-menu span {
        color: #071b31 !important;
        stroke: #071b31 !important;
    }

    body.home-test-page .hpt-hero__content {
        max-width: 620px !important;
        margin-left: max(5.8vw, 64px) !important;
        padding-top: clamp(150px, 17vh, 190px) !important;
        padding-bottom: 160px !important;
    }

    body.home-test-page .hpt-eyebrow {
        color: #c98918 !important;
        text-shadow: none !important;
    }

    body.home-test-page .hpt-hero h1 {
        color: #071b31 !important;
        text-shadow: 0 1px 0 rgba(255, 255, 255, .55) !important;
    }

    body.home-test-page .hpt-hero h1 span {
        color: #d9951b !important;
    }

    body.home-test-page .hpt-lede {
        max-width: 520px !important;
        color: #263a4e !important;
        text-shadow: none !important;
    }

    body.home-test-page .hpt-hero-cta {
        min-width: 258px !important;
        min-height: 66px !important;
        margin-top: 18px !important;
        border: 0 !important;
        border-radius: 10px !important;
        color: #ffffff !important;
        background: linear-gradient(135deg, #c67f12 0%, #eba727 100%) !important;
        box-shadow: 0 18px 42px rgba(188, 121, 15, .24) !important;
        transition: transform .22s ease, box-shadow .22s ease, background .22s ease !important;
    }

    body.home-test-page .hpt-hero-cta:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 24px 52px rgba(188, 121, 15, .32) !important;
        background: linear-gradient(135deg, #b9730f 0%, #f0b033 100%) !important;
    }

    body.home-test-page .hpt-stats {
        width: min(610px, 100%) !important;
        margin-top: 38px !important;
        gap: 0 !important;
        color: #071b31 !important;
    }

    body.home-test-page .hpt-stats article {
        min-width: 0 !important;
        padding: 0 36px !important;
        color: #071b31 !important;
    }

    body.home-test-page .hpt-stats article:first-child {
        padding-left: 0 !important;
    }

    body.home-test-page .hpt-stats article:not(:last-child) {
        border-right: 1px solid rgba(199, 137, 24, .72) !important;
    }

    body.home-test-page .hpt-stats strong,
    body.home-test-page .hpt-stats span {
        color: #071b31 !important;
        text-shadow: none !important;
    }

    body.home-test-page .hpt-stats small {
        color: #071b31 !important;
        opacity: .92 !important;
        text-shadow: none !important;
    }

    body.home-test-page .hpt-steps {
        position: absolute !important;
        left: 50% !important;
        right: auto !important;
        bottom: -38px !important;
        z-index: 5 !important;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        width: min(1180px, calc(100% - 120px)) !important;
        max-width: 1180px !important;
        margin: 0 !important;
        padding: 16px 48px !important;
        transform: translateX(-50%) !important;
        overflow: visible !important;
        border: 1px solid rgba(7, 27, 49, .10) !important;
        border-radius: 13px !important;
        background: rgba(255, 255, 255, .94) !important;
        box-shadow: 0 18px 46px rgba(7, 27, 49, .18) !important;
        color: #071b31 !important;
    }

    body.home-test-page .hpt-steps article {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 38px !important;
        padding: 0 30px !important;
        gap: 14px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        color: #071b31 !important;
    }

    body.home-test-page .hpt-steps article:not(:last-child) {
        border-right: 1px solid rgba(7, 27, 49, .18) !important;
    }

    body.home-test-page .hpt-steps article::before,
    body.home-test-page .hpt-steps article::after {
        display: none !important;
        content: none !important;
    }

    body.home-test-page .hpt-steps b {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 28px !important;
        width: 28px !important;
        height: 28px !important;
        min-height: 28px !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: #071b31 !important;
        color: #ffffff !important;
        font-family: "Manrope", Arial, sans-serif !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        box-shadow: none !important;
    }

    body.home-test-page .hpt-steps div {
        display: block !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    body.home-test-page .hpt-steps span {
        display: block !important;
        color: #071b31 !important;
        font-family: "Manrope", Arial, sans-serif !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        letter-spacing: .055em !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }

    body.home-test-page .hpt-steps p {
        display: none !important;
    }

    body.home-test-page .hpt-charter-showcase {
        margin-top: 0 !important;
        padding-top: 108px !important;
        background:
            radial-gradient(circle at 88% 0%, rgba(198, 127, 18, .09), transparent 30%),
            linear-gradient(180deg, #f8fbfd 0%, #eef5f7 100%) !important;
        color: #071b31 !important;
    }

    body.home-test-page .hpt-category h3,
    body.home-test-page .hpt-section-heading h2 {
        color: #071b31 !important;
        text-shadow: none !important;
    }

    body.home-test-page .hpt-category__description,
    body.home-test-page .hpt-section-heading p {
        color: #30475c !important;
    }
}

@media screen and (max-width: 899px) {
    body.home-test-page .hpt-hero {
        overflow: hidden !important;
    }

    body.home-test-page .hpt-steps {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
}
/* Homepage test light hero production polish 2026-07-20 */
@media screen and (min-width: 900px) {
    body.home-test-page {
        background: #f6f8fa !important;
        color: #071b31 !important;
    }

    body.home-test-page .hpt-hero {
        min-height: clamp(780px, 92vh, 920px) !important;
        overflow: visible !important;
        background: #f7fafc !important;
        color: #071b31 !important;
        border-bottom: 0 !important;
    }

    body.home-test-page .hpt-hero__image {
        opacity: 1 !important;
        filter: saturate(1.08) contrast(1.03) brightness(1.14) !important;
        object-position: 72% center !important;
        transform: scale(1.015) !important;
    }

    body.home-test-page .hpt-hero__shade {
        background:
            linear-gradient(90deg, rgba(249, 252, 253, .99) 0%, rgba(249, 252, 253, .98) 23%, rgba(249, 252, 253, .78) 43%, rgba(249, 252, 253, .26) 64%, rgba(249, 252, 253, .04) 82%),
            linear-gradient(180deg, rgba(249, 252, 253, .86) 0%, rgba(249, 252, 253, .18) 30%, rgba(249, 252, 253, .06) 70%, rgba(249, 252, 253, .78) 100%) !important;
    }

    body.home-test-page .hpt-nav {
        width: min(1760px, calc(100% - 92px)) !important;
        color: #071b31 !important;
        text-shadow: none !important;
    }

    body.home-test-page .hpt-brand,
    body.home-test-page .hpt-nav__links a,
    body.home-test-page .hpt-lang {
        color: #071b31 !important;
        text-shadow: none !important;
    }

    body.home-test-page .hpt-brand img {
        filter: brightness(0) saturate(100%) invert(9%) sepia(36%) saturate(1450%) hue-rotate(178deg) brightness(90%) contrast(96%) !important;
    }

    body.home-test-page .hpt-whatsapp svg,
    body.home-test-page .hpt-menu span {
        color: #071b31 !important;
        stroke: #071b31 !important;
    }

    body.home-test-page .hpt-hero__content {
        width: min(640px, 42vw) !important;
        max-width: 640px !important;
        margin-left: max(5.8vw, 64px) !important;
        padding-top: clamp(150px, 16vh, 185px) !important;
        padding-bottom: 152px !important;
    }

    body.home-test-page .hpt-eyebrow {
        color: #c98918 !important;
        text-shadow: none !important;
    }

    body.home-test-page .hpt-hero h1 {
        color: #071b31 !important;
        text-shadow: 0 1px 0 rgba(255,255,255,.62) !important;
    }

    body.home-test-page .hpt-hero h1 span {
        color: #d7961d !important;
    }

    body.home-test-page .hpt-lede {
        max-width: 560px !important;
        color: #24394d !important;
        text-shadow: none !important;
    }

    body.home-test-page .hpt-hero-cta {
        display: inline-flex !important;
        margin-top: 18px !important;
        min-width: 252px !important;
        min-height: 62px !important;
        border: 0 !important;
        border-radius: 8px !important;
        background: linear-gradient(135deg, #c37a10 0%, #ecad2d 100%) !important;
        box-shadow: 0 18px 42px rgba(195,122,16,.25) !important;
        color: #ffffff !important;
    }

    body.home-test-page .hpt-hero-cta:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 24px 52px rgba(195,122,16,.34) !important;
    }

    body.home-test-page .hpt-stats {
        width: min(620px, 100%) !important;
        margin-top: 34px !important;
        gap: 0 !important;
        color: #071b31 !important;
    }

    body.home-test-page .hpt-stats article {
        padding: 0 42px !important;
        color: #071b31 !important;
    }

    body.home-test-page .hpt-stats article:first-child {
        padding-left: 0 !important;
    }

    body.home-test-page .hpt-stats article:not(:last-child) {
        border-right: 1px solid rgba(201,137,24,.72) !important;
    }

    body.home-test-page .hpt-stats strong,
    body.home-test-page .hpt-stats span,
    body.home-test-page .hpt-stats small {
        color: #071b31 !important;
        text-shadow: none !important;
    }

    body.home-test-page .hpt-steps {
        position: absolute !important;
        left: 50% !important;
        right: auto !important;
        bottom: -28px !important;
        z-index: 8 !important;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        width: min(1040px, calc(100% - 220px)) !important;
        max-width: 1040px !important;
        min-height: 58px !important;
        margin: 0 !important;
        padding: 13px 42px !important;
        transform: translateX(-50%) !important;
        overflow: hidden !important;
        border: 1px solid rgba(7,27,49,.10) !important;
        border-radius: 10px !important;
        background: rgba(255,255,255,.96) !important;
        box-shadow: 0 18px 38px rgba(7,27,49,.16) !important;
        color: #071b31 !important;
    }

    body.home-test-page .hpt-steps article {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 32px !important;
        padding: 0 28px !important;
        gap: 13px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    body.home-test-page .hpt-steps article:not(:last-child) {
        border-right: 1px solid rgba(7,27,49,.18) !important;
    }

    body.home-test-page .hpt-steps article::before,
    body.home-test-page .hpt-steps article::after {
        display: none !important;
        content: none !important;
    }

    body.home-test-page .hpt-steps b {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 24px !important;
        width: 24px !important;
        height: 24px !important;
        min-height: 24px !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: #071b31 !important;
        color: #ffffff !important;
        font-family: "Manrope", Arial, sans-serif !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        box-shadow: none !important;
    }

    body.home-test-page .hpt-steps div {
        display: block !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    body.home-test-page .hpt-steps span {
        display: block !important;
        color: #071b31 !important;
        font-family: "Manrope", Arial, sans-serif !important;
        font-size: 11px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        letter-spacing: .045em !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }

    body.home-test-page .hpt-steps p {
        display: none !important;
    }

    body.home-test-page .hpt-charter-showcase {
        margin-top: 0 !important;
        padding-top: 96px !important;
        background: linear-gradient(180deg, #f8fbfd 0%, #eef5f7 100%) !important;
        color: #071b31 !important;
    }
}

@media screen and (max-width: 899px) {
    body.home-test-page .hpt-steps {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: calc(100% - 32px) !important;
        margin: -8px auto 0 !important;
        transform: none !important;
    }
}

/* ============================================================
   Yacht Category Premium Redesign — 2026-07-20
   Scope: .hpt-charter-showcase and descendants only
   Backups: home-page-test.aspx.bak-20260720-yacht
            home-page-test.css.bak-20260720-yacht
   ============================================================ */

body.home-test-page .hpt-charter-showcase {
    position: relative;
    margin-top: 0 !important;
    padding: clamp(72px, 8vw, 108px) 0 clamp(88px, 9vw, 120px) !important;
    color: #06192b !important;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='80' viewBox='0 0 1440 80'%3E%3Cpath fill='%23e8eef2' d='M0 40c120-28 240-28 360 0s240 28 360 0 240-28 360 0 240 28 360 0v40H0z'/%3E%3C/svg%3E") repeat-x top / 1440px 56px,
        linear-gradient(180deg, #f4f7f9 0%, #eef3f6 42%, #f6f9fb 100%) !important;
    overflow: hidden;
}

body.home-test-page .hpt-charter-showcase::before {
    opacity: .35;
    background-image:
        linear-gradient(rgba(6, 25, 43, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 25, 43, .028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000 8%, #000 92%, transparent);
}

body.home-test-page .hpt-charter-showcase::after {
    background: radial-gradient(circle at 12% 8%, rgba(212, 150, 34, .07), transparent 42%);
    opacity: 1;
}

body.home-test-page .hpt-charter-showcase__inner {
    width: min(1420px, calc(100% - clamp(32px, 5vw, 96px)));
    margin: 0 auto;
}

/* Category spacing and tropical dividers */
body.home-test-page .hpt-category {
    position: relative;
    padding-top: clamp(70px, 6vw, 96px);
}

body.home-test-page .hpt-category:first-child {
    padding-top: 0;
}

body.home-test-page .hpt-category + .hpt-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100%, 1120px);
    height: 64px;
    transform: translateX(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1120' height='64' viewBox='0 0 1120 64' fill='none'%3E%3Cpath d='M0 32H420' stroke='%2306192b' stroke-opacity='.34' stroke-width='1.15'/%3E%3Cpath d='M700 32H1120' stroke='%2306192b' stroke-opacity='.34' stroke-width='1.15'/%3E%3Cpath d='M0 31H386' stroke='%23d49622' stroke-opacity='.48' stroke-width='1.05'/%3E%3Cpath d='M734 31H1120' stroke='%23d49622' stroke-opacity='.48' stroke-width='1.05'/%3E%3Cpath d='M432 32h48M640 32h48' stroke='%23d49622' stroke-opacity='.74' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='502' cy='32' r='3.2' fill='%23d49622' fill-opacity='.88'/%3E%3Ccircle cx='618' cy='32' r='3.2' fill='%23d49622' fill-opacity='.88'/%3E%3Ccircle cx='560' cy='13' r='5' stroke='%2306192b' stroke-width='3'/%3E%3Cpath d='M560 18V52M546 27H574' stroke='%2306192b' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M536 31c1 16 11 27 24 27s23-11 24-27' stroke='%2306192b' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M536 31l-6 9 11 2M584 31l6 9-11 2' stroke='%2306192b' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M552 52h16' stroke='%23d49622' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    pointer-events: none;
}

body.home-test-page .hpt-category + .hpt-category {
    margin-top: clamp(56px, 6vw, 88px);
}

/* — Category headers — */
body.home-test-page .hpt-category__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: clamp(16px, 2.5vw, 32px);
    align-items: start;
    margin-bottom: clamp(28px, 3.2vw, 40px);
}

body.home-test-page .hpt-category__header--stack {
    display: block;
}

body.home-test-page .hpt-category__intro {
    min-width: 0;
}

body.home-test-page .hpt-category__eyebrow {
    display: block;
    margin: 0 0 12px;
    color: #c98918;
    font: 800 11px/1.2 Manrope, sans-serif;
    letter-spacing: .24em;
    text-transform: uppercase;
}

body.home-test-page .hpt-category__eyebrow::after {
    display: none;
}

body.home-test-page .hpt-category h3 {
    max-width: 820px;
    margin: 0;
    color: #06192b !important;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(30px, 3.4vw, 52px);
    font-weight: 700;
    line-height: .98;
    letter-spacing: .015em;
    text-transform: uppercase;
    text-shadow: none !important;
}

body.home-test-page .hpt-category__description {
    max-width: 680px;
    margin: 14px 0 0;
    color: #4a5d70 !important;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.72;
}

body.home-test-page .hpt-category__rule {
    width: min(120px, 28vw);
    height: 1px;
    margin-top: 22px;
    background: linear-gradient(90deg, rgba(212, 150, 34, .85), rgba(212, 150, 34, 0));
}

body.home-test-page .hpt-category__duration {
    align-self: center;
    padding: 11px 18px;
    border: 1px solid rgba(201, 137, 24, .55);
    border-radius: 999px;
    color: #06192b;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 4px 18px rgba(6, 25, 43, .06);
    font: 800 11px/1 Manrope, sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Tiny tropical island silhouette */
body.home-test-page .hpt-category {
    --hpt-island-color: #d49622;
}

body.home-test-page .hpt-category.hpt-category--active {
    --hpt-island-color: #9aa3a8;
}

body.home-test-page .hpt-category__island {
    display: block;
    flex-shrink: 0;
    width: clamp(76px, 8vw, 112px);
    height: clamp(58px, 6.4vw, 86px);
    margin-top: 8px;
    opacity: .82;
    background-color: var(--hpt-island-color);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 72'%3E%3Cpath d='M12 58c11-8 27-10 43-5 10 3 19 2 29-4-3 9-18 15-36 15-16 0-30-2-36-6Z'/%3E%3Cpath d='M51 58c3-13 2-26-2-40l5-1c5 15 5 30 1 43l-4-2Z'/%3E%3Cpath d='M51 21C37 12 25 14 14 24c14-2 25 0 37 6v-9Z'/%3E%3Cpath d='M52 21C61 10 72 6 86 9c-8 8-18 14-32 18l-2-6Z'/%3E%3Cpath d='M52 21c-3-10 1-17 9-21 2 10 0 18-7 24l-2-3Z'/%3E%3Cpath d='M53 25c13-1 22 4 28 15-13-2-21-6-29-11l1-4Z'/%3E%3Cpath d='M50 26c-10 0-19 5-27 14 12-1 21-4 29-10l-2-4Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 72'%3E%3Cpath d='M12 58c11-8 27-10 43-5 10 3 19 2 29-4-3 9-18 15-36 15-16 0-30-2-36-6Z'/%3E%3Cpath d='M51 58c3-13 2-26-2-40l5-1c5 15 5 30 1 43l-4-2Z'/%3E%3Cpath d='M51 21C37 12 25 14 14 24c14-2 25 0 37 6v-9Z'/%3E%3Cpath d='M52 21C61 10 72 6 86 9c-8 8-18 14-32 18l-2-6Z'/%3E%3Cpath d='M52 21c-3-10 1-17 9-21 2 10 0 18-7 24l-2-3Z'/%3E%3Cpath d='M53 25c13-1 22 4 28 15-13-2-21-6-29-11l1-4Z'/%3E%3Cpath d='M50 26c-10 0-19 5-27 14 12-1 21-4 29-10l-2-4Z'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: background-color .35s ease, opacity .35s ease, transform .35s ease;
}

body.home-test-page .hpt-category.hpt-category--active .hpt-category__island {
    opacity: .9;
    transform: translateY(-2px);
}
body.home-test-page .hpt-category--editorial .hpt-category__island {
    display: none;
}

/* — Editorial layouts — */
body.home-test-page .hpt-category--editorial {
    display: grid;
    grid-template-columns: minmax(240px, .92fr) minmax(0, 2.08fr);
    gap: clamp(24px, 3.5vw, 48px);
    align-items: start;
}

body.home-test-page .hpt-category--editorial .hpt-category__header {
    display: block;
    margin-bottom: 0;
}

body.home-test-page .hpt-category--editorial .hpt-category__cards {
    min-width: 0;
}

body.home-test-page .hpt-category--editorial-wide .hpt-card-grid--saona {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* — Card grids — */
body.home-test-page .hpt-card-track {
    width: 100%;
}

body.home-test-page .hpt-card-grid {
    display: grid;
    gap: clamp(16px, 1.8vw, 22px);
}

body.home-test-page .hpt-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.home-test-page .hpt-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.home-test-page .hpt-card-grid--saona {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Regular boat cards */
body.home-test-page .hpt-charter-card {
    position: relative;
    display: block;
    overflow: hidden;
    height: 240px;
    min-height: 0 !important;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #fff !important;
    text-decoration: none !important;
    background: #000;
    box-shadow: none;
    isolation: isolate;
}

body.home-test-page .hpt-charter-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .2) 45%, rgba(0, 0, 0, .75) 100%);
    pointer-events: none;
}

body.home-test-page .hpt-charter-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
    transition: transform .45s ease;
}

body.home-test-page .hpt-card__shade {
    display: none;
}

body.home-test-page .hpt-card__price {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    padding: 6px 12px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 999px;
    color: #111;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
    backdrop-filter: blur(6px);
    font: 700 14px/1 Manrope, sans-serif;
    letter-spacing: .02em;
    text-transform: uppercase;
}

body.home-test-page .hpt-card__price strong {
    margin-left: 4px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
}

body.home-test-page .hpt-card__flag {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    padding: 7px 12px;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: #caa45c;
    box-shadow: none;
    font: 700 11px/1 Manrope, sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.home-test-page .hpt-card__content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 3;
    padding: 0;
    text-align: left;
    color: #fff;
}

body.home-test-page .hpt-card__name {
    display: block;
    max-width: 100%;
    margin-bottom: 14px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

body.home-test-page .hpt-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

body.home-test-page .hpt-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 190px;
    min-width: 0;
    max-width: 190px;
    height: 38px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 0;
    color: #fff;
    background: rgba(0, 0, 0, .22);
    box-shadow: none;
    font: 600 12px/1 Manrope, sans-serif;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background .28s ease;
}

body.home-test-page .hpt-card__footer .hpt-card__meta {
    position: static;
    flex: 1 1 auto;
    min-width: 0;
    margin-top: 0;
    color: #d8b25c;
    font: 700 11px/1.1 Manrope, sans-serif;
    letter-spacing: .07em;
    text-align: right;
    text-transform: uppercase;
}

body.home-test-page .hpt-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

body.home-test-page .hpt-card__meta span::after {
    content: none;
}

body.home-test-page .hpt-card__meta i {
    display: none;
}

body.home-test-page .hpt-charter-card:hover,
body.home-test-page .hpt-charter-card:focus-visible {
    color: #fff;
    transform: none;
    border-color: transparent;
    box-shadow: none;
    outline: none;
}

body.home-test-page .hpt-charter-card:focus-visible {
    outline: 3px solid rgba(212, 150, 34, .65);
    outline-offset: 3px;
}

body.home-test-page .hpt-charter-card:hover img,
body.home-test-page .hpt-charter-card:focus-visible img {
    transform: scale(1.04);
    filter: none;
}

body.home-test-page .hpt-charter-card:hover .hpt-card__button,
body.home-test-page .hpt-charter-card:focus-visible .hpt-card__button {
    color: #fff;
    text-decoration-color: transparent;
    background: rgba(255, 255, 255, .12);
    transform: none;
}
/* — Category CTA buttons — */
body.home-test-page .hpt-category__actions {
    margin: clamp(28px, 3.2vw, 38px) 0 0;
    text-align: center;
}

body.home-test-page .hpt-category__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 clamp(28px, 4vw, 42px);
    border: 1px solid rgba(185, 118, 23, .35);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #c78413 0%, #dba028 52%, #e8ad32 100%);
    box-shadow: 0 14px 34px rgba(188, 121, 15, .24), inset 0 1px 0 rgba(255, 255, 255, .28);
    font: 900 12px/1 Manrope, sans-serif;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
}

body.home-test-page .hpt-category__cta-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 18px;
    transition: transform .28s ease;
}

body.home-test-page .hpt-category__cta:hover,
body.home-test-page .hpt-category__cta:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(1.04);
    box-shadow: 0 18px 42px rgba(188, 121, 15, .32), inset 0 1px 0 rgba(255, 255, 255, .34);
    outline: none;
}

body.home-test-page .hpt-category__cta:focus-visible {
    outline: 3px solid rgba(212, 150, 34, .55);
    outline-offset: 4px;
}

body.home-test-page .hpt-category__cta:hover .hpt-category__cta-icon,
body.home-test-page .hpt-category__cta:focus-visible .hpt-category__cta-icon {
    transform: translateX(3px);
}

body.home-test-page .hpt-category__cta span {
    display: none;
}

/* — Benefits bar (light theme within showcase) — */
body.home-test-page .hpt-showcase-benefits {
    margin-top: clamp(64px, 7vw, 96px);
    border: 1px solid rgba(6, 25, 43, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 48px rgba(6, 25, 43, .08);
    backdrop-filter: blur(10px);
}

body.home-test-page .hpt-showcase-benefits article {
    border-right-color: rgba(6, 25, 43, .08);
}

body.home-test-page .hpt-showcase-benefits strong {
    color: #06192b;
}

body.home-test-page .hpt-showcase-benefits p {
    color: #4a5d70;
}

/* — Tablet: 1024px — */
@media (max-width: 1180px) {
    body.home-test-page .hpt-card-grid--four {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.home-test-page .hpt-category--editorial {
        grid-template-columns: 1fr;
    }

    body.home-test-page .hpt-category--editorial .hpt-category__island {
        display: none;
    }

    body.home-test-page .hpt-category__header {
        grid-template-columns: 1fr;
    }

    body.home-test-page .hpt-category__island {
        display: none;
    }

    body.home-test-page .hpt-category__duration {
        display: inline-flex;
        order: 2;
        margin-top: 16px;
    }
}

/* — Tablet: 768–1024 — */
@media (max-width: 1024px) {
    body.home-test-page .hpt-card-grid--three,
    body.home-test-page .hpt-card-grid--four,
    body.home-test-page .hpt-card-grid--saona {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.home-test-page .hpt-charter-card {
        aspect-ratio: 4 / 3.2;
    }
}

/* — Mobile: horizontal card track — */
@media (max-width: 767px) {
    body.home-test-page .hpt-charter-showcase {
        padding: 56px 0 72px;
    }

    body.home-test-page .hpt-charter-showcase__inner {
        width: calc(100% - 24px);
    }

    body.home-test-page .hpt-category + .hpt-category {
        margin-top: 52px;
    }

    body.home-test-page .hpt-category + .hpt-category::before {
        height: 44px;
        background-size: 620px 44px;
    }

    body.home-test-page .hpt-category h3 {
        font-size: clamp(26px, 8.2vw, 36px);
    }

    body.home-test-page .hpt-category__description {
        font-size: 15px;
        line-height: 1.65;
    }

    body.home-test-page .hpt-category__header {
        margin-bottom: 22px;
    }

    body.home-test-page .hpt-card-track {
        margin: 0;
        padding: 0;
        overflow: visible;
        scroll-snap-type: none;
    }

    body.home-test-page .hpt-card-track::-webkit-scrollbar {
        display: none;
    }

    body.home-test-page .hpt-card-grid,
    body.home-test-page .hpt-card-grid--three,
    body.home-test-page .hpt-card-grid--four,
    body.home-test-page .hpt-card-grid--saona {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
        min-width: 0;
        padding-bottom: 0;
    }

    body.home-test-page .hpt-charter-card {
        flex: none;
        width: 100%;
        height: 260px;
        aspect-ratio: unset;
        border-radius: 0;
        scroll-snap-align: none;
    }

    body.home-test-page .hpt-card__name {
        font-size: 28px;
    }

    body.home-test-page .hpt-card__footer {
        margin-top: 0;
        padding-top: 0;
    }

    body.home-test-page .hpt-card__button,
    body.home-test-page .hpt-card__footer .hpt-card__meta {
        font-size: 11px;
        letter-spacing: .1em;
    }

    body.home-test-page .hpt-category__cta {
        width: 100%;
        min-height: 48px;
        padding: 0 22px;
        font-size: 11px;
        letter-spacing: .1em;
    }

    body.home-test-page .hpt-showcase-benefits {
        grid-template-columns: 1fr;
        margin-top: 52px;
        border-radius: 12px;
    }

    body.home-test-page .hpt-showcase-benefits article,
    body.home-test-page .hpt-showcase-benefits article:nth-child(2),
    body.home-test-page .hpt-showcase-benefits article:nth-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid rgba(6, 25, 43, .08);
    }
}

/* — Small mobile: single column fallback option at very narrow — */
@media (max-width: 430px) {
    body.home-test-page .hpt-charter-card {
        flex: none;
        width: 100%;
    }

    body.home-test-page .hpt-category__cta {
        min-height: 46px;
        font-size: 10px;
    }
}

/* — Large desktop: 4-col Saona grid — */
@media (min-width: 1280px) {
    body.home-test-page .hpt-card-grid--four {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1440px) {
    body.home-test-page .hpt-charter-showcase__inner {
        width: min(1420px, calc(100% - 104px));
    }

    body.home-test-page .hpt-charter-card {
        border-radius: 0;
    }
}

/* End Yacht Category Premium Redesign */
/* Homepage test steps placement guard 2026-07-20 */
body.home-test-page .hpt-steps__icon {
    display: none !important;
}

@media screen and (min-width: 900px) {
    body.home-test-page main {
        position: relative !important;
        display: block !important;
    }

    body.home-test-page main > .hpt-steps {
        position: absolute !important;
        inset: auto !important;
        top: -28px !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        z-index: 18 !important;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        width: min(1040px, calc(100% - 220px)) !important;
        max-width: 1040px !important;
        min-height: 58px !important;
        margin: 0 !important;
        padding: 13px 42px !important;
        transform: translateX(-50%) !important;
        order: 0 !important;
    }

    body.home-test-page main > .hpt-charter-showcase {
        order: 1 !important;
        margin-top: 0 !important;
        padding-top: clamp(88px, 7vw, 112px) !important;
    }
}

@media screen and (max-width: 899px) {
    body.home-test-page main {
        display: block !important;
    }

    body.home-test-page main > .hpt-steps {
        position: relative !important;
        inset: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        order: 0 !important;
    }

    body.home-test-page main > .hpt-charter-showcase {
        order: 1 !important;
    }
}
/* Homepage test desktop vertical steps 2026-07-20 */
@media screen and (min-width: 900px) {
    body.home-test-page main > .hpt-steps {
        position: relative !important;
        inset: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        z-index: 18 !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        width: min(560px, calc(100% - 96px)) !important;
        max-width: 560px !important;
        min-height: 0 !important;
        margin: -60px auto clamp(60px, 6vw, 86px) !important;
        padding: 0 24px 0 0 !important;
        transform: none !important;
        overflow: hidden !important;
        border: 1px solid rgba(255, 255, 255, .12) !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, rgba(2, 17, 31, .99), rgba(5, 32, 52, .97)) !important;
        box-shadow: 0 28px 72px rgba(0, 0, 0, .30) !important;
        color: #fff !important;
        backdrop-filter: blur(12px) !important;
        order: 0 !important;
    }

    body.home-test-page .hpt-steps article {
        position: relative !important;
        display: grid !important;
        grid-template-columns: 74px minmax(0, 1fr) 28px !important;
        align-items: center !important;
        justify-content: normal !important;
        min-height: 76px !important;
        padding: 0 !important;
        gap: 0 !important;
        column-gap: 24px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        color: #fff !important;
    }

    body.home-test-page .hpt-steps article:not(:last-child) {
        border-right: 0 !important;
    }

    body.home-test-page .hpt-steps article:not(:last-child)::before {
        content: "" !important;
        position: absolute !important;
        left: 74px !important;
        right: 0 !important;
        bottom: 0 !important;
        display: block !important;
        height: 1px !important;
        background: rgba(255, 255, 255, .11) !important;
    }

    body.home-test-page .hpt-steps article::after,
    body.home-test-page .hpt-steps article:not(:last-child)::after {
        content: "" !important;
        display: block !important;
        justify-self: end !important;
        width: 14px !important;
        height: 14px !important;
        margin: 0 !important;
        border: 0 !important;
        border-top: 3px solid var(--hpt-gold) !important;
        border-right: 3px solid var(--hpt-gold) !important;
        background: transparent !important;
        transform: rotate(45deg) !important;
        transition: transform .24s ease, border-color .24s ease !important;
    }

    body.home-test-page .hpt-steps article:last-child::after {
        display: block !important;
    }

    body.home-test-page .hpt-steps article:hover::after {
        transform: translateX(4px) rotate(45deg) !important;
        border-color: #f0b43e !important;
    }

    body.home-test-page .hpt-steps b {
        align-self: stretch !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 74px !important;
        width: 74px !important;
        height: auto !important;
        min-height: 76px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: linear-gradient(180deg, #eba936 0%, var(--hpt-gold) 52%, var(--hpt-gold-dark) 100%) !important;
        color: #061126 !important;
        font-size: 34px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        box-shadow: inset -1px 0 rgba(0, 0, 0, .24), inset 0 1px rgba(255, 255, 255, .28) !important;
    }

    body.home-test-page .hpt-steps article:first-child b {
        border-radius: 18px 8px 0 0 !important;
    }

    body.home-test-page .hpt-steps article:last-child b {
        border-radius: 0 0 8px 18px !important;
    }

    body.home-test-page .hpt-steps div {
        position: relative !important;
        display: block !important;
        min-width: 0 !important;
        padding: 0 0 0 24px !important;
    }

    body.home-test-page .hpt-steps div::before {
        content: "" !important;
        position: absolute !important;
        left: 0 !important;
        top: 50% !important;
        display: block !important;
        width: 1px !important;
        height: 38px !important;
        background: var(--hpt-gold) !important;
        transform: translateY(-50%) !important;
    }

    body.home-test-page .hpt-steps div span {
        display: block !important;
        color: #fff !important;
        font-size: 18px !important;
        font-weight: 900 !important;
        letter-spacing: .01em !important;
        line-height: 1.18 !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }

    body.home-test-page .hpt-steps p {
        display: none !important;
    }

    body.home-test-page main > .hpt-charter-showcase {
        padding-top: clamp(72px, 6vw, 96px) !important;
    }
}
/* Homepage test desktop step number stretch 2026-07-20 */
@media screen and (min-width: 900px) {
    body.home-test-page .hpt-steps b {
        height: 100% !important;
    }
}
/* Homepage test desktop step row alignment 2026-07-20 */
@media screen and (min-width: 900px) {
    body.home-test-page .hpt-steps article {
        height: 76px !important;
        min-height: 76px !important;
    }

    body.home-test-page .hpt-steps article:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, .11) !important;
    }

    body.home-test-page .hpt-steps article:not(:last-child)::before {
        content: none !important;
        display: none !important;
    }

    body.home-test-page .hpt-steps b {
        height: 100% !important;
        min-height: 0 !important;
    }
}
/* Homepage test centered desktop shell and steps fix 2026-07-20 */
body.home-test-page .hpt-steps .hpt-steps__icon {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

@media screen and (min-width: 1200px) {
    body.home-test-page {
        background: #f4f8f9 !important;
    }

    body.home-test-page .hpt-hero,
    body.home-test-page main {
        width: min(1420px, calc(100% - 48px)) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body.home-test-page .hpt-hero {
        margin-top: 24px !important;
        min-height: clamp(760px, 82vh, 920px) !important;
        overflow: hidden !important;
        border: 1px solid #dfeaec !important;
        border-bottom: 0 !important;
        border-radius: 8px 8px 0 0 !important;
        box-shadow: 0 26px 70px rgba(7, 20, 45, .12) !important;
    }

    body.home-test-page .hpt-hero__image {
        object-position: 72% center !important;
    }

    body.home-test-page .hpt-nav,
    body.home-test-page .hpt-hero__content {
        width: min(1260px, calc(100% - 72px)) !important;
        max-width: 1260px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body.home-test-page .hpt-hero__content {
        padding-top: clamp(112px, 10vh, 150px) !important;
        padding-bottom: clamp(110px, 11vh, 150px) !important;
    }

    body.home-test-page main {
        margin-top: 0 !important;
        overflow: visible !important;
        border-left: 1px solid #dfeaec !important;
        border-right: 1px solid #dfeaec !important;
        background: #021322 !important;
    }

    body.home-test-page main > .hpt-steps {
        width: min(560px, calc(100% - 96px)) !important;
        max-width: 560px !important;
        margin: -60px auto clamp(56px, 5vw, 78px) !important;
    }

    body.home-test-page .hpt-steps article {
        grid-template-columns: 74px minmax(0, 1fr) 28px !important;
    }

    body.home-test-page .hpt-steps div {
        grid-column: 2 !important;
        width: auto !important;
        min-width: 0 !important;
    }

    body.home-test-page .hpt-steps div span {
        width: auto !important;
        min-width: max-content !important;
    }

    body.home-test-page .hpt-charter-showcase {
        border-radius: 0 0 8px 8px !important;
    }
}
/* Homepage test dark hero desktop restore 2026-07-20 */
@media screen and (min-width: 900px) {
    body.home-test-page {
        background: #f4f8f9 !important;
    }

    body.home-test-page .hpt-hero,
    body.home-test-page main {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    body.home-test-page .hpt-hero {
        margin-top: 0 !important;
        min-height: clamp(720px, 88vh, 900px) !important;
        padding-bottom: clamp(118px, 12vh, 150px) !important;
        overflow: hidden !important;
        color: #ffffff !important;
        background: #021322 !important;
    }

    body.home-test-page .hpt-hero::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        z-index: 1;
        height: clamp(72px, 8vw, 116px);
        pointer-events: none;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='120' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f5f0e8' d='M0 82c120 16 235 17 344 3 116-15 218-42 347-30 122 12 218 46 352 40 134-6 236-48 397-69v94H0z'/%3E%3Cpath fill='%23fffaf0' fill-opacity='.92' d='M0 96c148-4 238-23 355-21 108 2 205 32 328 27 136-6 231-43 360-43 127 0 228 34 397 22v39H0z'/%3E%3C/svg%3E") bottom center / 100% 100% no-repeat;
    }

    body.home-test-page .hpt-hero__image {
        opacity: 1 !important;
        object-position: 73% center !important;
        filter: saturate(1.08) contrast(1.08) brightness(.74) !important;
        transform: scale(1.015) !important;
    }

    body.home-test-page .hpt-hero__shade {
        background:
            linear-gradient(90deg, rgba(2, 19, 34, .96) 0%, rgba(2, 22, 40, .88) 30%, rgba(3, 30, 52, .52) 54%, rgba(3, 30, 52, .16) 76%, rgba(3, 30, 52, .04) 100%),
            linear-gradient(180deg, rgba(1, 12, 22, .42) 0%, rgba(1, 12, 22, .12) 48%, rgba(1, 12, 22, .92) 100%),
            radial-gradient(circle at 78% 46%, rgba(255, 255, 255, .13), transparent 34%) !important;
    }

    body.home-test-page .hpt-nav,
    body.home-test-page .hpt-hero__content {
        width: min(1420px, calc(100% - 80px)) !important;
        max-width: 1420px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    body.home-test-page .hpt-nav {
        padding: 28px 0 24px !important;
        color: #ffffff !important;
        text-shadow: 0 2px 14px rgba(0, 0, 0, .22) !important;
    }

    body.home-test-page .hpt-brand,
    body.home-test-page .hpt-nav__links a,
    body.home-test-page .hpt-lang {
        color: #ffffff !important;
        text-shadow: 0 2px 14px rgba(0, 0, 0, .28) !important;
    }

    body.home-test-page .hpt-brand img {
        filter: none !important;
    }

    body.home-test-page .hpt-nav__divider {
        background: rgba(255, 255, 255, .58) !important;
    }

    body.home-test-page .hpt-whatsapp svg,
    body.home-test-page .hpt-menu span {
        color: #ffffff !important;
        stroke: #ffffff !important;
    }

    body.home-test-page .hpt-hero__content {
        padding-top: clamp(48px, 7vh, 88px) !important;
        padding-bottom: 0 !important;
    }

    body.home-test-page .hpt-eyebrow {
        color: #d49622 !important;
        text-shadow: 0 2px 14px rgba(0, 0, 0, .28) !important;
    }

    body.home-test-page .hpt-hero h1 {
        max-width: 560px !important;
        color: #ffffff !important;
        font-size: clamp(58px, 5.9vw, 104px) !important;
        line-height: .88 !important;
        text-shadow: 0 6px 26px rgba(0, 0, 0, .36) !important;
    }

    body.home-test-page .hpt-hero h1 span {
        color: #d49622 !important;
    }

    body.home-test-page .hpt-lede {
        max-width: 500px !important;
        color: rgba(255, 255, 255, .9) !important;
        font-size: clamp(16px, 1.15vw, 19px) !important;
        line-height: 1.55 !important;
        text-shadow: 0 3px 16px rgba(0, 0, 0, .34) !important;
    }

    body.home-test-page .hpt-hero-cta {
        min-width: 238px !important;
        min-height: 58px !important;
        margin-top: 26px !important;
        border: 1px solid rgba(255, 255, 255, .18) !important;
        border-radius: 8px !important;
        background: linear-gradient(135deg, #bf7811 0%, #e3a52f 100%) !important;
        color: #ffffff !important;
        box-shadow: 0 18px 42px rgba(0, 0, 0, .28), 0 18px 40px rgba(212, 150, 34, .24) !important;
    }

    body.home-test-page .hpt-stats {
        margin-top: 34px !important;
        color: #ffffff !important;
    }

    body.home-test-page .hpt-stats strong,
    body.home-test-page .hpt-stats span,
    body.home-test-page .hpt-stats small {
        color: #ffffff !important;
        text-shadow: 0 3px 16px rgba(0, 0, 0, .34) !important;
    }

    body.home-test-page .hpt-stats > div {
        border-right-color: rgba(212, 150, 34, .62) !important;
    }

    body.home-test-page main {
        margin-top: 0 !important;
        padding-top: 1px !important;
        overflow: visible !important;
        background: #021322 !important;
    }

    body.home-test-page main > .hpt-steps {
        position: relative !important;
        inset: auto !important;
        z-index: 20 !important;
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 0 !important;
        width: min(1120px, calc(100% - 80px)) !important;
        max-width: 1120px !important;
        min-height: 0 !important;
        margin: -84px auto 48px !important;
        padding: 12px 18px !important;
        transform: none !important;
        overflow: hidden !important;
        border: 1px solid rgba(255, 255, 255, .18) !important;
        border-radius: 10px !important;
        background: rgba(2, 25, 43, .94) !important;
        box-shadow: 0 22px 54px rgba(0, 0, 0, .28) !important;
        backdrop-filter: blur(12px) !important;
        color: #ffffff !important;
    }

    body.home-test-page .hpt-steps article {
        position: relative !important;
        display: grid !important;
        grid-template-columns: 40px minmax(0, 1fr) 22px !important;
        align-items: center !important;
        min-height: 48px !important;
        height: 48px !important;
        column-gap: 14px !important;
        padding: 0 18px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    body.home-test-page .hpt-steps article:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, .14) !important;
        border-bottom: 0 !important;
    }

    body.home-test-page .hpt-steps article::before,
    body.home-test-page .hpt-steps article:not(:last-child)::before {
        content: none !important;
        display: none !important;
    }

    body.home-test-page .hpt-steps article::after,
    body.home-test-page .hpt-steps article:not(:last-child)::after {
        content: "" !important;
        display: block !important;
        justify-self: end !important;
        width: 10px !important;
        height: 10px !important;
        margin: 0 !important;
        border: 0 !important;
        border-top: 3px solid #d49622 !important;
        border-right: 3px solid #d49622 !important;
        background: transparent !important;
        transform: rotate(45deg) !important;
    }

    body.home-test-page .hpt-steps b {
        align-self: center !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 34px !important;
        height: 34px !important;
        min-height: 34px !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: linear-gradient(180deg, #edb13a 0%, #d49622 100%) !important;
        color: #061126 !important;
        font-size: 15px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
        box-shadow: none !important;
    }

    body.home-test-page .hpt-steps article:first-child b,
    body.home-test-page .hpt-steps article:last-child b {
        border-radius: 999px !important;
    }

    body.home-test-page .hpt-steps div {
        grid-column: auto !important;
        position: relative !important;
        min-width: 0 !important;
        width: auto !important;
        padding: 0 !important;
    }

    body.home-test-page .hpt-steps div::before {
        content: none !important;
        display: none !important;
    }

    body.home-test-page .hpt-steps div span {
        display: block !important;
        width: auto !important;
        min-width: 0 !important;
        color: #ffffff !important;
        font-size: 12px !important;
        font-weight: 900 !important;
        letter-spacing: .045em !important;
        line-height: 1.1 !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }

    body.home-test-page .hpt-charter-showcase {
        margin-top: 0 !important;
        padding-top: clamp(84px, 7vw, 110px) !important;
        border-radius: 0 !important;
    }
}
/* Homepage test dark hero proportion tweak 2026-07-20 */
@media screen and (min-width: 900px) {
    body.home-test-page .hpt-hero {
        min-height: clamp(700px, 86vh, 880px) !important;
        padding-bottom: 0 !important;
    }

    body.home-test-page .hpt-hero__content {
        padding-top: clamp(40px, 6vh, 72px) !important;
    }

    body.home-test-page .hpt-hero h1 {
        font-size: clamp(58px, 5.85vw, 88px) !important;
        line-height: .87 !important;
    }

    body.home-test-page .hpt-lede {
        margin-top: 24px !important;
    }

    body.home-test-page .hpt-hero-cta {
        margin-top: 24px !important;
    }

    body.home-test-page .hpt-stats {
        margin-top: 30px !important;
    }
}
/* Homepage test dark hero overlap polish 2026-07-20 */
@media screen and (min-width: 900px) {
    body.home-test-page .hpt-brand span {
        color: #ffffff !important;
        opacity: 1 !important;
        text-shadow: 0 2px 14px rgba(0, 0, 0, .32) !important;
    }

    body.home-test-page .hpt-hero__content {
        padding-top: clamp(12px, 2.4vh, 28px) !important;
        padding-bottom: 0 !important;
    }

    body.home-test-page .hpt-eyebrow {
        margin-bottom: 18px !important;
        font-size: clamp(13px, .96vw, 17px) !important;
        letter-spacing: .14em !important;
    }

    body.home-test-page .hpt-hero h1 {
        max-width: 520px !important;
        font-size: clamp(58px, 5.85vw, 78px) !important;
        line-height: .88 !important;
    }

    body.home-test-page .hpt-lede {
        max-width: 470px !important;
        margin-top: 20px !important;
        font-size: clamp(15px, 1.05vw, 18px) !important;
        line-height: 1.48 !important;
    }

    body.home-test-page .hpt-hero-cta {
        min-height: 54px !important;
        margin-top: 20px !important;
    }

    body.home-test-page .hpt-stats {
        position: relative !important;
        z-index: 4 !important;
        margin-top: 24px !important;
        column-gap: 42px !important;
    }

    body.home-test-page .hpt-stats > div {
        min-width: 128px !important;
        padding-right: 42px !important;
    }

    body.home-test-page .hpt-stats strong {
        font-size: clamp(30px, 2.35vw, 40px) !important;
    }

    body.home-test-page .hpt-stats > div > span:not(.hpt-stars) {
        font-size: 13px !important;
    }

    body.home-test-page .hpt-stars {
        margin: 8px 0 6px !important;
        font-size: 17px !important;
    }

    body.home-test-page .hpt-stats small {
        margin-top: 6px !important;
        font-size: 11px !important;
    }

    body.home-test-page main > .hpt-steps {
        margin-top: -78px !important;
    }
}
/* Homepage test wide desktop hero clearance guard 2026-07-20 */
@media screen and (min-width: 900px) {
    body.home-test-page .hpt-hero {
        min-height: clamp(820px, 86vh, 900px) !important;
    }

    body.home-test-page main > .hpt-steps {
        margin-top: -64px !important;
    }
}
/* Homepage test clean hero-to-showcase transition 2026-07-20 */
@media screen and (min-width: 900px) {
    body.home-test-page main {
        background: linear-gradient(180deg, #fbf8f0 0%, #f6f9fb 120px, #f6f9fb 100%) !important;
    }

    body.home-test-page main > .hpt-steps {
        margin-top: -64px !important;
        margin-bottom: 18px !important;
    }

    body.home-test-page .hpt-charter-showcase {
        padding-top: clamp(70px, 5.4vw, 92px) !important;
        background:
            radial-gradient(circle at 82% 5%, rgba(212, 150, 34, .055), transparent 26%),
            linear-gradient(180deg, #fbfaf7 0%, #eef5f7 52%, #f6f9fb 100%) !important;
    }
}
/* Homepage test stronger showcase transition spacing 2026-07-20 */
@media screen and (min-width: 900px) {
    body.home-test-page main > .hpt-charter-showcase {
        padding-top: clamp(58px, 4.4vw, 76px) !important;
        background:
            radial-gradient(circle at 82% 5%, rgba(212, 150, 34, .055), transparent 26%),
            linear-gradient(180deg, #fbfaf7 0%, #eef5f7 52%, #f6f9fb 100%) !important;
    }
}
/* Homepage test sail boat feature section 2026-07-20 */
body.home-test-page .hpt-sail-section {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 7vw, 110px) 0 clamp(82px, 8vw, 118px);
    color: #06192b;
    background:
        radial-gradient(circle at 12% 5%, rgba(212, 150, 34, .08), transparent 28%),
        linear-gradient(180deg, #fbfaf6 0%, #f7f5ef 100%);
}

body.home-test-page .hpt-sail-section::before,
body.home-test-page .hpt-sail-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

body.home-test-page .hpt-sail-section::before {
    left: -150px;
    top: -70px;
    width: 360px;
    height: 360px;
    opacity: .1;
    background: repeating-radial-gradient(ellipse at center, rgba(6, 25, 43, .7) 0 1px, transparent 1px 18px);
    transform: rotate(-18deg);
}

body.home-test-page .hpt-sail-section::after {
    right: -120px;
    bottom: -40px;
    width: 440px;
    height: 180px;
    opacity: .18;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='180' viewBox='0 0 520 180' fill='none'%3E%3Cpath d='M0 38c42 22 84 22 126 0s84-22 126 0 84 22 126 0 84-22 142 0M0 78c42 22 84 22 126 0s84-22 126 0 84 22 126 0 84-22 142 0M0 118c42 22 84 22 126 0s84-22 126 0 84 22 126 0 84-22 142 0' stroke='%23d49622' stroke-opacity='.36' stroke-width='1'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.home-test-page .hpt-sail-shell {
    position: relative;
    z-index: 1;
    width: min(1420px, calc(100% - clamp(32px, 5vw, 96px)));
    margin: 0 auto;
}

body.home-test-page .hpt-sail-header {
    max-width: 880px;
    margin: 0 auto clamp(34px, 4.2vw, 52px);
    text-align: center;
}

body.home-test-page .hpt-sail-header__icon,
body.home-test-page .hpt-sail-card__mark {
    display: inline-block;
    width: 54px;
    height: 54px;
    background-color: #c98918;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72'%3E%3Cpath d='M35 10h3v36h-3z'/%3E%3Cpath d='M32 14C19 19 12 31 11 45c10-2 18-7 23-16V14z'/%3E%3Cpath d='M40 17c10 6 16 15 19 28-8-1-15-5-19-11V17z'/%3E%3Cpath d='M18 53c8 5 17 6 27 2 5-2 10-1 15 2-8 6-17 8-28 6-7-1-12-4-14-10z'/%3E%3Cpath d='M14 62c7 3 14 3 21 0 7 3 14 3 23 0v4c-8 3-16 3-23 0-7 3-14 3-21 0v-4z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72'%3E%3Cpath d='M35 10h3v36h-3z'/%3E%3Cpath d='M32 14C19 19 12 31 11 45c10-2 18-7 23-16V14z'/%3E%3Cpath d='M40 17c10 6 16 15 19 28-8-1-15-5-19-11V17z'/%3E%3Cpath d='M18 53c8 5 17 6 27 2 5-2 10-1 15 2-8 6-17 8-28 6-7-1-12-4-14-10z'/%3E%3Cpath d='M14 62c7 3 14 3 21 0 7 3 14 3 23 0v4c-8 3-16 3-23 0-7 3-14 3-21 0v-4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.home-test-page .hpt-sail-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 8px 0 14px;
    color: #c98918;
    font: 800 13px/1.2 Manrope, sans-serif;
    letter-spacing: .24em;
    text-transform: uppercase;
}

body.home-test-page .hpt-sail-eyebrow span {
    display: block;
    width: 56px;
    height: 1px;
    background: rgba(201, 137, 24, .72);
}

body.home-test-page .hpt-sail-header h2 {
    max-width: 900px;
    margin: 0 auto;
    color: #06192b;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(42px, 4.4vw, 72px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: .012em;
    text-transform: uppercase;
}

body.home-test-page .hpt-sail-wave {
    display: block;
    width: 56px;
    height: 12px;
    margin: 18px auto 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='16' viewBox='0 0 84 16' fill='none'%3E%3Cpath d='M2 6c7 6 14 6 21 0s14-6 21 0 14 6 21 0 12-5 17 0' stroke='%23d49622' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.home-test-page .hpt-sail-header p:not(.hpt-sail-eyebrow) {
    max-width: 650px;
    margin: 0 auto;
    color: #30475c;
    font-size: 17px;
    line-height: 1.68;
}

body.home-test-page .hpt-sail-list {
    display: grid;
    gap: 34px;
}

body.home-test-page .hpt-sail-card {
    position: relative;
    display: grid;
    min-height: 410px;
    overflow: hidden;
    border: 1px solid rgba(6, 25, 43, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 28px 68px rgba(6, 25, 43, .12);
}

body.home-test-page .hpt-sail-card--image-left {
    grid-template-columns: minmax(0, 1.18fr) minmax(420px, .92fr);
}

body.home-test-page .hpt-sail-card--image-right {
    grid-template-columns: minmax(420px, .92fr) minmax(0, 1.18fr);
}

body.home-test-page .hpt-sail-card__media {
    position: relative;
    display: block;
    min-height: 410px;
    overflow: hidden;
}

body.home-test-page .hpt-sail-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}

body.home-test-page .hpt-sail-card:hover .hpt-sail-card__media img {
    transform: scale(1.035);
    filter: saturate(1.06) contrast(1.03);
}

body.home-test-page .hpt-sail-price {
    position: absolute;
    top: 26px;
    left: 28px;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    min-width: 88px;
    padding: 10px 14px 11px;
    border-radius: 8px;
    background: linear-gradient(180deg, #e7ae35, #c98b1b);
    color: #fff;
    font: 800 13px/1.1 Manrope, sans-serif;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(123, 82, 14, .26);
}

body.home-test-page .hpt-sail-card--image-right .hpt-sail-price {
    left: auto;
    right: 28px;
}

body.home-test-page .hpt-sail-price strong {
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

body.home-test-page .hpt-sail-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 4vw, 58px);
}

body.home-test-page .hpt-sail-card__mark {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
}

body.home-test-page .hpt-sail-card h3 {
    margin: 0;
    color: #06192b;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(30px, 2.4vw, 42px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .02em;
    text-transform: uppercase;
}

body.home-test-page .hpt-sail-card__rule {
    display: block;
    width: 52px;
    height: 2px;
    margin: 18px 0 24px;
    background: #d49622;
}

body.home-test-page .hpt-sail-facts {
    display: grid;
    gap: 14px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    color: #30475c;
    font-size: 15px;
    line-height: 1.35;
}

body.home-test-page .hpt-sail-facts li {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.home-test-page .hpt-sail-fact-icon,
body.home-test-page .hpt-sail-benefit-icon {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    background: #c98918;
    -webkit-mask: var(--hpt-sail-icon) center / contain no-repeat;
    mask: var(--hpt-sail-icon) center / contain no-repeat;
}

body.home-test-page .hpt-sail-fact-icon--person { --hpt-sail-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm-7 9c1-5 4-8 7-8s6 3 7 8H5Z'/%3E%3C/svg%3E"); }
body.home-test-page .hpt-sail-fact-icon--group { --hpt-sail-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm6 1a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7ZM2 21c1-5 4-8 7-8s6 3 7 8H2Zm11 0c.6-2.4 1.8-4.4 3.5-5.7 2.5.8 4.4 2.8 5.5 5.7h-9Z'/%3E%3C/svg%3E"); }
body.home-test-page .hpt-sail-fact-icon--pin { --hpt-sail-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8 2 5 5 5 9c0 5 7 13 7 13s7-8 7-13c0-4-3-7-7-7Zm0 10a3 3 0 1 1 0-6 3 3 0 0 1 0 6Z'/%3E%3C/svg%3E"); }
body.home-test-page .hpt-sail-fact-icon--sun { --hpt-sail-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 2h2v4h-2V2Zm0 16h2v4h-2v-4ZM2 11h4v2H2v-2Zm16 0h4v2h-4v-2ZM4.2 5.6l1.4-1.4 2.8 2.8L7 8.4 4.2 5.6Zm11.4 11.4 1.4-1.4 2.8 2.8-1.4 1.4-2.8-2.8Zm2.8-12.8 1.4 1.4L17 8.4 15.6 7l2.8-2.8ZM7 15.6 8.4 17l-2.8 2.8-1.4-1.4L7 15.6ZM12 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8Z'/%3E%3C/svg%3E"); }

body.home-test-page .hpt-sail-card__body p {
    max-width: 520px;
    margin: 0 0 26px;
    color: #30475c;
    font-size: 16px;
    line-height: 1.72;
}

body.home-test-page .hpt-sail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: fit-content;
    min-width: 256px;
    min-height: 54px;
    padding: 0 26px;
    border-radius: 8px;
    background: #06192b;
    color: #fff;
    font: 900 13px/1 Manrope, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(6, 25, 43, .2);
    transition: transform .22s ease, background .22s ease;
}

body.home-test-page .hpt-sail-button span {
    color: #d49622;
    font-size: 24px;
    line-height: 1;
}

body.home-test-page .hpt-sail-button:hover {
    transform: translateY(-2px);
    background: #0a2743;
}

body.home-test-page .hpt-sail-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 38px;
    padding: 28px 30px;
    border: 1px solid rgba(6, 25, 43, .1);
    border-radius: 22px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 24px 60px rgba(6, 25, 43, .08);
    backdrop-filter: blur(8px);
}

body.home-test-page .hpt-sail-benefits article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px 16px;
    align-items: center;
    min-width: 0;
    padding: 0 24px;
    border-right: 1px solid rgba(6, 25, 43, .12);
}

body.home-test-page .hpt-sail-benefits article:last-child {
    border-right: 0;
}

body.home-test-page .hpt-sail-benefit-icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
}

body.home-test-page .hpt-sail-benefit-icon--shield { --hpt-sail-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 4 5v6c0 5 3 9 8 11 5-2 8-6 8-11V5l-8-3Zm-1 14-4-4 1.7-1.7 2.3 2.3 4.8-5 1.8 1.6L11 16Z'/%3E%3C/svg%3E"); }
body.home-test-page .hpt-sail-benefit-icon--star { --hpt-sail-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 2 3 6 7 .9-5 4.8 1.3 6.8L12 17l-6.3 3.5L7 13.7 2 8.9 9 8l3-6Z'/%3E%3C/svg%3E"); }
body.home-test-page .hpt-sail-benefit-icon--clock { --hpt-sail-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 11h5v-2h-4V6h-2v7Z'/%3E%3C/svg%3E"); }
body.home-test-page .hpt-sail-benefit-icon--support { --hpt-sail-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3a8 8 0 0 0-8 8v4a3 3 0 0 0 3 3h2v-7H6a6 6 0 0 1 12 0h-3v7h2c-.6 1.2-1.8 2-3.5 2H12v2h1.5c3.6 0 6.5-2.4 6.5-5.5V11a8 8 0 0 0-8-8Z'/%3E%3C/svg%3E"); }

body.home-test-page .hpt-sail-benefits strong {
    color: #06192b;
    font: 900 14px/1.25 Manrope, sans-serif;
    letter-spacing: .035em;
    text-transform: uppercase;
}

body.home-test-page .hpt-sail-benefits p {
    grid-column: 2;
    margin: 0;
    color: #30475c;
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 1024px) {
    body.home-test-page .hpt-sail-card,
    body.home-test-page .hpt-sail-card--image-left,
    body.home-test-page .hpt-sail-card--image-right {
        grid-template-columns: 1fr;
    }

    body.home-test-page .hpt-sail-card__media,
    body.home-test-page .hpt-sail-card__media img {
        min-height: 300px;
    }

    body.home-test-page .hpt-sail-card--image-right .hpt-sail-card__media {
        order: -1;
    }

    body.home-test-page .hpt-sail-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    body.home-test-page .hpt-sail-benefits article:nth-child(2) {
        border-right: 0;
    }

    body.home-test-page .hpt-sail-benefits article:nth-child(-n+2) {
        padding-bottom: 22px;
        margin-bottom: 22px;
        border-bottom: 1px solid rgba(6, 25, 43, .12);
    }
}

@media (max-width: 767px) {
    body.home-test-page .hpt-sail-section {
        padding: 56px 0 64px;
    }

    body.home-test-page .hpt-sail-shell {
        width: calc(100% - 28px);
    }

    body.home-test-page .hpt-sail-header {
        margin-bottom: 24px;
    }

    body.home-test-page .hpt-sail-header__icon {
        width: 42px;
        height: 42px;
    }

    body.home-test-page .hpt-sail-eyebrow {
        gap: 12px;
        margin-top: 6px;
        font-size: 11px;
        letter-spacing: .16em;
    }

    body.home-test-page .hpt-sail-eyebrow span {
        width: 34px;
    }

    body.home-test-page .hpt-sail-header h2 {
        font-size: clamp(32px, 9.2vw, 44px);
    }

    body.home-test-page .hpt-sail-header p:not(.hpt-sail-eyebrow) {
        font-size: 14px;
        line-height: 1.62;
    }

    body.home-test-page .hpt-sail-list {
        gap: 16px;
    }

    body.home-test-page .hpt-sail-card {
        min-height: 0;
        border-radius: 16px;
    }

    body.home-test-page .hpt-sail-card__media,
    body.home-test-page .hpt-sail-card__media img {
        min-height: 0;
        height: 210px;
    }

    body.home-test-page .hpt-sail-card__body {
        padding: 18px 18px 20px;
    }

    body.home-test-page .hpt-sail-card__mark {
        width: 34px;
        height: 34px;
        margin: 0 10px 0 0;
        vertical-align: middle;
    }

    body.home-test-page .hpt-sail-card h3 {
        display: inline-block;
        max-width: calc(100% - 50px);
        font-size: 22px;
        vertical-align: middle;
    }

    body.home-test-page .hpt-sail-card__rule {
        margin: 12px 0 14px;
    }

    body.home-test-page .hpt-sail-facts {
        grid-template-columns: 1fr 1fr;
        gap: 8px 12px;
        margin-bottom: 14px;
        font-size: 11px;
    }

    body.home-test-page .hpt-sail-facts li:last-child {
        grid-column: 1 / -1;
    }

    body.home-test-page .hpt-sail-fact-icon {
        width: 16px;
        height: 16px;
    }

    body.home-test-page .hpt-sail-card__body p {
        margin-bottom: 16px;
        font-size: 12px;
        line-height: 1.65;
    }

    body.home-test-page .hpt-sail-button {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        font-size: 11px;
    }

    body.home-test-page .hpt-sail-price {
        top: 14px;
        left: 14px;
        min-width: 70px;
        padding: 8px 10px;
        font-size: 10px;
    }

    body.home-test-page .hpt-sail-card--image-right .hpt-sail-price {
        right: auto;
        left: 14px;
    }

    body.home-test-page .hpt-sail-price strong {
        font-size: 16px;
    }

    body.home-test-page .hpt-sail-benefits {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: 14px;
        padding: 14px 8px;
        border-radius: 0;
    }

    body.home-test-page .hpt-sail-benefits article,
    body.home-test-page .hpt-sail-benefits article:nth-child(-n+2) {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        margin: 0;
        padding: 0 6px;
        border-bottom: 0;
        border-right: 1px solid rgba(6, 25, 43, .12);
        text-align: center;
    }

    body.home-test-page .hpt-sail-benefits article:last-child {
        border-right: 0;
    }

    body.home-test-page .hpt-sail-benefit-icon {
        width: 28px;
        height: 28px;
    }

    body.home-test-page .hpt-sail-benefits strong {
        font-size: 9px;
        line-height: 1.18;
    }

    body.home-test-page .hpt-sail-benefits p {
        display: none;
    }
}
/* Homepage test review experience section 2026-07-20 */
body.home-test-page .hpt-review-section {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 7.5vw, 118px) 0 clamp(70px, 7vw, 104px);
    color: #06192b;
    background:
        radial-gradient(circle at 88% 10%, rgba(82, 145, 191, .13), transparent 22%),
        radial-gradient(circle at 8% 2%, rgba(212, 150, 34, .08), transparent 24%),
        linear-gradient(180deg, #fbfaf6 0%, #f8f5ee 100%);
}

body.home-test-page .hpt-review-section::before,
body.home-test-page .hpt-review-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

body.home-test-page .hpt-review-section::before {
    left: -95px;
    top: -125px;
    width: 360px;
    height: 360px;
    opacity: .11;
    background: repeating-radial-gradient(ellipse at center, rgba(6, 25, 43, .7) 0 1px, transparent 1px 18px);
    transform: rotate(-18deg);
}

body.home-test-page .hpt-review-section::after {
    right: -50px;
    top: 98px;
    width: min(520px, 40vw);
    height: 190px;
    opacity: .22;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='620' height='220' viewBox='0 0 620 220' fill='none'%3E%3Cpath d='M0 190c70-64 124-77 191-47 79 36 128 26 211-47 72-63 132-81 218-46v170H0v-30Z' fill='%2398bfd8' fill-opacity='.34'/%3E%3Cpath d='M382 101h140v10H382z' fill='%232d78ba'/%3E%3Cpath d='M405 74h92l30 27H372l33-27Z' fill='%232d78ba'/%3E%3Cpath d='M427 56h49v18h-49z' fill='%232d78ba'/%3E%3Cpath d='M398 42c18-14 35-14 53 0M80 82c16-13 31-13 47 0M136 118c11-9 21-9 32 0' stroke='%232d78ba' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.home-test-page .hpt-review-shell {
    position: relative;
    z-index: 1;
    width: min(1420px, calc(100% - clamp(32px, 5vw, 96px)));
    margin: 0 auto;
}

body.home-test-page .hpt-review-header {
    max-width: 760px;
    margin: 0 auto clamp(30px, 3.4vw, 42px);
    text-align: center;
}

body.home-test-page .hpt-review-header__icon {
    display: block;
    width: 48px;
    height: 38px;
    margin: 0 auto 8px;
    background: #c98918;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 70'%3E%3Cpath d='M46 8h4v33h-4z'/%3E%3Cpath d='M43 14C30 18 21 27 17 41c11-1 20-6 26-16V14zM53 16c12 3 21 10 27 23-11 1-20-3-27-12V16zM24 49c9 5 18 5 27 0 8 4 17 4 28 0-8 7-17 10-28 9-11 1-20-2-27-9zM22 62c9 4 18 4 28 0 9 4 18 4 28 0v4c-10 4-19 4-28 0-10 4-19 4-28 0v-4zM16 8c10 1 17 6 20 15-9 0-16-5-20-15zM60 21c2-10 8-16 19-18-3 10-10 16-19 18z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 70'%3E%3Cpath d='M46 8h4v33h-4z'/%3E%3Cpath d='M43 14C30 18 21 27 17 41c11-1 20-6 26-16V14zM53 16c12 3 21 10 27 23-11 1-20-3-27-12V16zM24 49c9 5 18 5 27 0 8 4 17 4 28 0-8 7-17 10-28 9-11 1-20-2-27-9zM22 62c9 4 18 4 28 0 9 4 18 4 28 0v4c-10 4-19 4-28 0-10 4-19 4-28 0v-4zM16 8c10 1 17 6 20 15-9 0-16-5-20-15zM60 21c2-10 8-16 19-18-3 10-10 16-19 18z'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.home-test-page .hpt-review-eyebrow {
    margin: 0 0 8px;
    color: #c98918;
    font: 800 13px/1.2 Manrope, sans-serif;
    letter-spacing: .38em;
    text-transform: uppercase;
}

body.home-test-page .hpt-review-header h2 {
    margin: 0;
    color: #06192b;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(43px, 4.7vw, 76px);
    font-weight: 700;
    line-height: .9;
    letter-spacing: .012em;
}

body.home-test-page .hpt-review-header > p:not(.hpt-review-eyebrow) {
    max-width: 560px;
    margin: 14px auto 0;
    color: #233d57;
    font-size: 16px;
    line-height: 1.6;
}

body.home-test-page .hpt-review-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(420px, 1fr);
    gap: 22px;
    align-items: stretch;
}

body.home-test-page .hpt-review-trust-card,
body.home-test-page .hpt-review-photo-hero {
    min-height: 322px;
    border: 1px solid rgba(6, 25, 43, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 22px 62px rgba(6, 25, 43, .1);
}

body.home-test-page .hpt-review-trust-card {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
    overflow: hidden;
    backdrop-filter: blur(8px);
}

body.home-test-page .hpt-review-trust-card__summary,
body.home-test-page .hpt-review-quote-card {
    padding: clamp(28px, 3vw, 42px);
}

body.home-test-page .hpt-review-trust-card__summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.home-test-page .hpt-review-kicker {
    margin: 0 0 8px;
    color: #06192b;
    font: 900 12px/1 Manrope, sans-serif;
    letter-spacing: .22em;
    text-transform: uppercase;
}

body.home-test-page .hpt-review-rating-row {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin: 0 0 4px;
    color: #06192b;
}

body.home-test-page .hpt-review-rating-row strong {
    font: 900 clamp(54px, 5vw, 72px)/.9 Manrope, sans-serif;
    letter-spacing: 0;
}

body.home-test-page .hpt-review-rating-row > span:nth-child(2) {
    font: 800 20px/1 Manrope, sans-serif;
}

body.home-test-page .hpt-review-stars {
    display: inline-flex;
    gap: 3px;
    color: #c98918;
    font-size: 18px;
    letter-spacing: 0;
}

body.home-test-page .hpt-review-small-copy {
    margin: 0 0 22px;
    color: #30475c;
    font-size: 14px;
}

body.home-test-page .hpt-review-trust-list {
    display: grid;
    gap: 13px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    color: #233d57;
    font-size: 14px;
    line-height: 1.38;
}

body.home-test-page .hpt-review-trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

body.home-test-page .hpt-review-list-icon,
body.home-test-page .hpt-review-stat-icon {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    background: #c98918;
    -webkit-mask: var(--hpt-review-icon) center / contain no-repeat;
    mask: var(--hpt-review-icon) center / contain no-repeat;
}

body.home-test-page .hpt-review-list-icon--boat { --hpt-review-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 16h16l-3 5H7l-3-5Zm2-3 4-7h4l4 7H6Zm5-5-3 5h8l-3-5h-2ZM3 14h18v2H3v-2Z'/%3E%3C/svg%3E"); }
body.home-test-page .hpt-review-list-icon--crew { --hpt-review-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm6 1a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7ZM2 21c1-5 4-8 7-8s6 3 7 8H2Zm11 0c.7-2.5 1.9-4.4 3.5-5.7 2.5.8 4.4 2.8 5.5 5.7h-9Z'/%3E%3C/svg%3E"); }
body.home-test-page .hpt-review-list-icon--chat { --hpt-review-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16v12H8l-4 4V4Zm4 5h8V7H8v2Zm0 4h6v-2H8v2Z'/%3E%3C/svg%3E"); }

body.home-test-page .hpt-review-google-link {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding-top: 19px;
    border-top: 1px solid rgba(6, 25, 43, .12);
    color: #0b5fca;
    font: 800 12px/1.2 Manrope, sans-serif;
}

body.home-test-page .hpt-google-word {
    display: inline-flex;
    font: 700 29px/1 Arial, sans-serif;
    letter-spacing: -0.04em;
}

body.home-test-page .hpt-google-word span:nth-child(1),
body.home-test-page .hpt-review-google-g { color: #4285f4; }
body.home-test-page .hpt-google-word span:nth-child(2),
body.home-test-page .hpt-google-word span:nth-child(6) { color: #db4437; }
body.home-test-page .hpt-google-word span:nth-child(3) { color: #f4b400; }
body.home-test-page .hpt-google-word span:nth-child(4) { color: #4285f4; }
body.home-test-page .hpt-google-word span:nth-child(5) { color: #0f9d58; }

body.home-test-page .hpt-review-google-link .hpt-review-stars {
    font-size: 14px;
}

body.home-test-page .hpt-review-quote-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    border-left: 1px solid rgba(6, 25, 43, .12);
}

body.home-test-page .hpt-review-quote-mark {
    color: #c98918;
    font: 900 78px/.7 Georgia, serif;
}

body.home-test-page .hpt-review-quote-card blockquote {
    max-width: 460px;
    margin: 12px 0 34px;
    color: #06192b;
    font-size: 18px;
    line-height: 1.55;
}

body.home-test-page .hpt-review-quote-card figcaption {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 14px;
}

body.home-test-page .hpt-review-avatar {
    width: 54px;
    height: 54px;
    overflow: hidden;
    border-radius: 50%;
    background: #e7edf0;
}

body.home-test-page .hpt-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.home-test-page .hpt-review-quote-card strong {
    display: block;
    color: #06192b;
    font: 900 14px/1.2 Manrope, sans-serif;
}

body.home-test-page .hpt-review-quote-card small {
    display: block;
    margin-top: 3px;
    color: #30475c;
    font-size: 13px;
}

body.home-test-page .hpt-review-google-g {
    justify-self: end;
    font: 900 22px/1 Arial, sans-serif;
}

body.home-test-page .hpt-review-controls {
    position: absolute;
    right: clamp(32px, 3.2vw, 52px);
    bottom: 28px;
    display: flex;
    gap: 16px;
}

body.home-test-page .hpt-review-controls button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(6, 25, 43, .18);
    border-radius: 50%;
    appearance: none;
    cursor: pointer;
    color: #06192b;
    font-size: 28px;
    line-height: 1;
    background: rgba(255, 255, 255, .72);
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

body.home-test-page .hpt-review-controls button:hover,
body.home-test-page .hpt-review-controls button:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(201, 137, 24, .55);
    background: rgba(255, 255, 255, .95);
    outline: none;
}

body.home-test-page .hpt-review-google-g {
    text-decoration: none;
}

body.home-test-page .hpt-review-photo-hero {
    position: relative;
    overflow: hidden;
}

body.home-test-page .hpt-review-photo-hero img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 322px;
    object-fit: cover;
}

body.home-test-page .hpt-review-hero-stats {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 38px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 46px rgba(6, 25, 43, .18);
    backdrop-filter: blur(8px);
}

body.home-test-page .hpt-review-hero-stats span {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 3px 16px;
    align-items: center;
    padding: 24px 34px;
    color: #06192b;
}

body.home-test-page .hpt-review-hero-stats span + span {
    border-left: 1px solid rgba(6, 25, 43, .12);
}

body.home-test-page .hpt-review-stat-icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
}

body.home-test-page .hpt-review-stat-icon--star { --hpt-review-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 2 3 6 7 .9-5 4.8 1.3 6.8L12 17l-6.3 3.5L7 13.7 2 8.9 9 8l3-6Z'/%3E%3C/svg%3E"); }
body.home-test-page .hpt-review-stat-icon--smile { --hpt-review-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20ZM8 9h2v2H8V9Zm6 0h2v2h-2V9Zm-6.2 5h2.1c.5 1 1.2 1.8 2.1 1.8S13.7 15 14.2 14h2.1c-.7 2.3-2.3 3.8-4.3 3.8S8.5 16.3 7.8 14Z'/%3E%3C/svg%3E"); }

body.home-test-page .hpt-review-hero-stats strong {
    font: 900 22px/1.1 Manrope, sans-serif;
}

body.home-test-page .hpt-review-hero-stats small {
    color: #233d57;
    font-size: 14px;
}

body.home-test-page .hpt-review-photo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

body.home-test-page .hpt-review-photo-grid a {
    position: relative;
    display: block;
    min-width: 0;
    height: 166px;
    overflow: hidden;
    border-radius: 8px;
    background: #dce8ed;
    box-shadow: 0 16px 32px rgba(6, 25, 43, .13);
}

body.home-test-page .hpt-review-photo-grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

body.home-test-page .hpt-review-photo-grid a:hover img {
    transform: scale(1.045);
}

body.home-test-page .hpt-review-photo-grid a > span {
    position: absolute;
    left: 9px;
    right: 9px;
    bottom: 8px;
    display: grid;
    grid-template-columns: 20px minmax(58px, 1fr) 28px minmax(64px, auto);
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 6px 9px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 10px 22px rgba(6, 25, 43, .14);
    color: #06192b;
}

body.home-test-page .hpt-review-photo-grid b {
    color: #4285f4;
    font: 900 20px/1 Arial, sans-serif;
}

body.home-test-page .hpt-review-photo-grid i {
    color: #d49622;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 1px;
    white-space: nowrap;
}

body.home-test-page .hpt-review-photo-grid strong {
    font: 900 13px/1 Manrope, sans-serif;
}

body.home-test-page .hpt-review-photo-grid small {
    color: #233d57;
    font: 800 8px/1.1 Manrope, sans-serif;
    white-space: nowrap;
}

body.home-test-page .hpt-review-cta-wrap {
    margin: 28px 0 0;
    text-align: center;
}

body.home-test-page .hpt-review-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    min-width: min(360px, 100%);
    min-height: 58px;
    padding: 0 38px;
    border: 1px solid rgba(201, 137, 24, .62);
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    color: #06192b;
    font: 900 13px/1 Manrope, sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase;
    box-shadow: 0 18px 42px rgba(6, 25, 43, .08);
}

body.home-test-page .hpt-review-cta span {
    color: #d49622;
    font-size: 22px;
    letter-spacing: 0;
}

@media (max-width: 1180px) {
    body.home-test-page .hpt-review-feature {
        grid-template-columns: 1fr;
    }

    body.home-test-page .hpt-review-photo-hero {
        min-height: 390px;
    }

    body.home-test-page .hpt-review-photo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    body.home-test-page .hpt-review-section {
        padding: 58px 0 62px;
    }

    body.home-test-page .hpt-review-shell {
        width: calc(100% - 28px);
    }

    body.home-test-page .hpt-review-header__icon {
        width: 42px;
        height: 34px;
    }

    body.home-test-page .hpt-review-eyebrow {
        font-size: 11px;
        letter-spacing: .2em;
    }

    body.home-test-page .hpt-review-header h2 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: .92;
    }

    body.home-test-page .hpt-review-header > p:not(.hpt-review-eyebrow) {
        font-size: 14px;
    }

    body.home-test-page .hpt-review-trust-card {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    body.home-test-page .hpt-review-trust-card__summary,
    body.home-test-page .hpt-review-quote-card {
        padding: 22px 20px;
    }

    body.home-test-page .hpt-review-quote-card {
        border-top: 1px solid rgba(6, 25, 43, .1);
        border-left: 0;
    }

    body.home-test-page .hpt-review-rating-row {
        flex-wrap: wrap;
    }

    body.home-test-page .hpt-review-rating-row strong {
        font-size: 48px;
    }

    body.home-test-page .hpt-review-google-link {
        flex-wrap: wrap;
    }

    body.home-test-page .hpt-google-word {
        font-size: 27px;
    }

    body.home-test-page .hpt-review-quote-mark {
        font-size: 58px;
    }

    body.home-test-page .hpt-review-quote-card blockquote {
        margin-bottom: 22px;
        font-size: 15px;
    }

    body.home-test-page .hpt-review-controls {
        display: none;
    }

    body.home-test-page .hpt-review-photo-hero {
        min-height: 320px;
        border-radius: 16px;
    }

    body.home-test-page .hpt-review-photo-hero img {
        min-height: 320px;
    }

    body.home-test-page .hpt-review-hero-stats {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    body.home-test-page .hpt-review-hero-stats span {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 2px 9px;
        padding: 14px 12px;
    }

    body.home-test-page .hpt-review-stat-icon {
        width: 30px;
        height: 30px;
    }

    body.home-test-page .hpt-review-hero-stats strong {
        font-size: 17px;
    }

    body.home-test-page .hpt-review-hero-stats small {
        font-size: 11px;
    }

    body.home-test-page .hpt-review-photo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        order: 2;
        margin-top: 16px;
    }

    body.home-test-page .hpt-review-photo-grid a {
        height: 142px;
        border-radius: 7px;
    }

    body.home-test-page .hpt-review-photo-grid a > span {
        left: 6px;
        right: 6px;
        bottom: 6px;
        grid-template-columns: 16px minmax(42px, 1fr) 24px;
        gap: 5px;
        min-height: 30px;
        padding: 5px 7px;
    }

    body.home-test-page .hpt-review-photo-grid b {
        font-size: 16px;
    }

    body.home-test-page .hpt-review-photo-grid i {
        font-size: 9px;
        letter-spacing: 0;
    }

    body.home-test-page .hpt-review-photo-grid strong {
        font-size: 12px;
    }

    body.home-test-page .hpt-review-photo-grid small {
        display: none;
    }

    body.home-test-page .hpt-review-cta {
        min-width: 0;
        width: 100%;
        min-height: 52px;
        padding: 0 22px;
        font-size: 11px;
        letter-spacing: .1em;
    }
}
body.home-test-page .hpt-review-quote-card blockquote,
body.home-test-page .hpt-review-quote-card figcaption {
    transition: opacity .18s ease, transform .18s ease;
}

body.home-test-page .hpt-review-quote-card.is-changing blockquote,
body.home-test-page .hpt-review-quote-card.is-changing figcaption {
    opacity: 0;
    transform: translateY(4px);
}
/* Homepage test private experiences section 2026-07-21 */
body.home-test-page .hpt-experience-section {
    position: relative;
    overflow: hidden;
    padding: clamp(74px, 7vw, 106px) 0 clamp(66px, 7vw, 96px);
    color: #06192b;
    background:
        radial-gradient(circle at 8% 8%, rgba(201, 137, 24, .08), transparent 26%),
        linear-gradient(180deg, #fbfaf6 0%, #f6f4ee 100%);
}

body.home-test-page .hpt-experience-shell {
    position: relative;
    z-index: 1;
    width: min(1420px, calc(100% - clamp(32px, 5vw, 96px)));
    margin: 0 auto;
}

body.home-test-page .hpt-experience-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(380px, .72fr) minmax(0, 1.28fr);
    align-items: center;
    min-height: 540px;
    margin-bottom: 28px;
}

body.home-test-page .hpt-experience-copy {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 10px 0 28px;
}

body.home-test-page .hpt-experience-eyebrow,
body.home-test-page .hpt-experience-mobile-heading p {
    margin: 0 0 14px;
    color: #c98918;
    font: 800 12px/1.2 Manrope, sans-serif;
    letter-spacing: .22em;
    text-transform: uppercase;
}

body.home-test-page .hpt-experience-copy h2 {
    margin: 0;
    color: #06192b;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(56px, 5.4vw, 86px);
    font-weight: 700;
    line-height: .93;
    letter-spacing: .006em;
}

body.home-test-page .hpt-experience-copy > p:not(.hpt-experience-eyebrow) {
    max-width: 500px;
    margin: 24px 0 0;
    color: #30475c;
    font-size: 16px;
    line-height: 1.7;
}

body.home-test-page .hpt-experience-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    max-width: 530px;
    margin-top: 48px;
}

body.home-test-page .hpt-experience-benefits article {
    min-width: 0;
}

body.home-test-page .hpt-experience-line-icon {
    display: block;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    color: #c98918;
    font-size: 37px;
    line-height: 1;
}

body.home-test-page .hpt-experience-line-icon--diamond::before { content: "◇"; }
body.home-test-page .hpt-experience-line-icon--calendar::before { content: "▣"; }
body.home-test-page .hpt-experience-line-icon--shield::before { content: "♢"; }

body.home-test-page .hpt-experience-benefits strong {
    display: block;
    color: #06192b;
    font: 900 14px/1.25 Manrope, sans-serif;
}

body.home-test-page .hpt-experience-benefits small {
    display: block;
    margin-top: 8px;
    color: #30475c;
    font-size: 13px;
    line-height: 1.45;
}

body.home-test-page .hpt-experience-yacht {
    position: absolute;
    top: -54px;
    right: min(-52px, -3vw);
    bottom: 18px;
    width: min(68vw, 1000px);
    margin: 0;
    overflow: hidden;
    opacity: .98;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .18) 8%, #000 28%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .18) 8%, #000 28%, #000 100%);
}

body.home-test-page .hpt-experience-yacht::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 250, 246, .96) 0%, rgba(251, 250, 246, .56) 22%, transparent 48%), linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.12));
}

body.home-test-page .hpt-experience-yacht img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

body.home-test-page .hpt-experience-mobile-heading {
    display: none;
}

body.home-test-page .hpt-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.home-test-page .hpt-experience-card {
    position: relative;
    display: block;
    min-height: 390px;
    overflow: hidden;
    border-radius: 10px;
    background: #06192b;
    box-shadow: 0 18px 42px rgba(6, 25, 43, .16);
    isolation: isolate;
}

body.home-test-page .hpt-experience-card--wide {
    grid-column: 1 / -1;
    min-height: 330px;
}

body.home-test-page .hpt-experience-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}

body.home-test-page .hpt-experience-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.06) contrast(1.02);
}

body.home-test-page .hpt-experience-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 18, 31, .95) 0%, rgba(4, 18, 31, .66) 38%, rgba(4, 18, 31, .12) 74%),
        linear-gradient(180deg, rgba(4, 18, 31, .04) 0%, rgba(4, 18, 31, .86) 100%);
}

body.home-test-page .hpt-experience-card-icon {
    position: absolute;
    z-index: 2;
    top: 30px;
    left: 32px;
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 50%;
    color: #fff;
    font-size: 27px;
    line-height: 1;
    background: rgba(6, 25, 43, .34);
    backdrop-filter: blur(4px);
}

body.home-test-page .hpt-experience-card-body {
    position: absolute;
    z-index: 2;
    left: 32px;
    bottom: 30px;
    width: min(390px, calc(100% - 64px));
    color: #fff;
}

body.home-test-page .hpt-experience-card-body strong {
    display: block;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(37px, 3.4vw, 50px);
    font-weight: 700;
    line-height: .93;
}

body.home-test-page .hpt-experience-card-body small {
    display: block;
    width: 46px;
    height: 2px;
    margin: 20px 0 16px;
    background: #d49622;
}

body.home-test-page .hpt-experience-card-body em {
    display: block;
    max-width: 410px;
    color: rgba(255, 255, 255, .94);
    font: 600 13px/1.55 Manrope, sans-serif;
    font-style: normal;
}

body.home-test-page .hpt-experience-card-body b {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: 176px;
    min-height: 46px;
    margin-top: 22px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, .72);
    color: #fff;
    font: 900 11px/1 Manrope, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.home-test-page .hpt-experience-card-body b span {
    color: #d49622;
    font-size: 22px;
    line-height: 1;
}

body.home-test-page .hpt-experience-info-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 18px;
    padding: 26px 34px;
    border: 1px solid rgba(6, 25, 43, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 46px rgba(6, 25, 43, .08);
}

body.home-test-page .hpt-experience-info-strip article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 7px 18px;
    align-items: center;
    padding: 0 24px;
    border-right: 1px solid rgba(6, 25, 43, .1);
}

body.home-test-page .hpt-experience-info-strip article:last-child {
    border-right: 0;
}

body.home-test-page .hpt-experience-strip-icon {
    grid-row: span 2;
    color: #c98918;
    font-size: 42px;
    line-height: 1;
}

body.home-test-page .hpt-experience-info-strip strong {
    color: #06192b;
    font: 900 11px/1.2 Manrope, sans-serif;
    letter-spacing: .13em;
    text-transform: uppercase;
}

body.home-test-page .hpt-experience-info-strip small {
    color: #30475c;
    font-size: 12px;
    line-height: 1.45;
}

body.home-test-page .hpt-experience-cta-panel {
    display: grid;
    grid-template-columns: 94px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-top: 18px;
    padding: 28px 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, #06192b 0%, #082942 100%);
    color: #fff;
    box-shadow: 0 24px 52px rgba(6, 25, 43, .18);
}

body.home-test-page .hpt-experience-sail {
    display: block;
    width: 78px;
    height: 72px;
    border: 2px solid rgba(255, 255, 255, .78);
    border-width: 0 0 2px 0;
    position: relative;
}

body.home-test-page .hpt-experience-sail::before,
body.home-test-page .hpt-experience-sail::after {
    content: "";
    position: absolute;
    bottom: 12px;
    border-style: solid;
}

body.home-test-page .hpt-experience-sail::before {
    left: 25px;
    border-width: 0 0 52px 22px;
    border-color: transparent transparent rgba(255,255,255,.9) transparent;
}

body.home-test-page .hpt-experience-sail::after {
    left: 49px;
    border-width: 0 16px 38px 0;
    border-color: transparent rgba(255,255,255,.75) transparent transparent;
}

body.home-test-page .hpt-experience-cta-panel strong {
    display: block;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 27px;
    line-height: 1.1;
}

body.home-test-page .hpt-experience-cta-panel p {
    margin: 0;
}

body.home-test-page .hpt-experience-cta-panel div p {
    margin-top: 6px;
    color: rgba(255,255,255,.86);
    font-size: 14px;
}

body.home-test-page .hpt-experience-cta-panel > p {
    display: grid;
    gap: 12px;
    justify-items: center;
}

body.home-test-page .hpt-experience-cta-panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-width: 280px;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 4px;
    background: linear-gradient(180deg, #d9a34a, #bd7e20);
    color: #fff;
    font: 900 12px/1 Manrope, sans-serif;
    letter-spacing: .09em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

body.home-test-page .hpt-experience-cta-panel a span {
    font-size: 24px;
    line-height: 1;
}

body.home-test-page .hpt-experience-cta-panel small {
    color: rgba(255,255,255,.9);
    font-size: 14px;
}

@media (max-width: 1060px) {
    body.home-test-page .hpt-experience-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    body.home-test-page .hpt-experience-yacht {
        position: relative;
        inset: auto;
        width: 100%;
        height: 260px;
        margin-top: 22px;
        border-radius: 12px;
        -webkit-mask-image: none;
        mask-image: none;
    }

    body.home-test-page .hpt-experience-yacht::after {
        background: linear-gradient(180deg, transparent 30%, rgba(251, 250, 246, .1));
    }

    body.home-test-page .hpt-experience-info-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    body.home-test-page .hpt-experience-info-strip article:nth-child(2) {
        border-right: 0;
    }

    body.home-test-page .hpt-experience-info-strip article:nth-child(-n+2) {
        padding-bottom: 22px;
        margin-bottom: 22px;
        border-bottom: 1px solid rgba(6, 25, 43, .1);
    }

    body.home-test-page .hpt-experience-cta-panel {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    body.home-test-page .hpt-experience-cta-panel > p {
        grid-column: 1 / -1;
        justify-items: stretch;
    }
}

@media (max-width: 767px) {
    body.home-test-page .hpt-experience-section {
        padding: 46px 0 56px;
    }

    body.home-test-page .hpt-experience-shell {
        width: calc(100% - 28px);
    }

    body.home-test-page .hpt-experience-copy h2 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: .96;
    }

    body.home-test-page .hpt-experience-copy > p:not(.hpt-experience-eyebrow) {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.62;
    }

    body.home-test-page .hpt-experience-yacht {
        height: 180px;
        order: 2;
        margin-top: 16px;
    }

    body.home-test-page .hpt-experience-benefits {
        grid-template-columns: 1fr;
        gap: 0;
        order: 3;
        margin-top: -18px;
        padding: 18px 18px;
        border: 1px solid rgba(6, 25, 43, .08);
        border-radius: 13px;
        background: rgba(255,255,255,.88);
        box-shadow: 0 16px 34px rgba(6,25,43,.08);
    }

    body.home-test-page .hpt-experience-benefits article {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 3px 13px;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(6,25,43,.08);
    }

    body.home-test-page .hpt-experience-benefits article:last-child {
        border-bottom: 0;
    }

    body.home-test-page .hpt-experience-line-icon {
        grid-row: span 2;
        width: 34px;
        height: 34px;
        margin: 0;
        font-size: 29px;
    }

    body.home-test-page .hpt-experience-benefits strong {
        font-size: 11px;
    }

    body.home-test-page .hpt-experience-benefits small {
        margin: 0;
        font-size: 10px;
    }

    body.home-test-page .hpt-experience-mobile-heading {
        display: block;
        margin: 26px 0 14px;
    }

    body.home-test-page .hpt-experience-mobile-heading h3 {
        margin: 0;
        color: #06192b;
        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 28px;
        line-height: 1;
    }

    body.home-test-page .hpt-experience-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body.home-test-page .hpt-experience-card,
    body.home-test-page .hpt-experience-card--wide {
        grid-column: auto;
        min-height: 318px;
        border-radius: 8px;
    }

    body.home-test-page .hpt-experience-card-icon {
        top: 16px;
        left: 16px;
        width: 48px;
        height: 48px;
        font-size: 21px;
    }

    body.home-test-page .hpt-experience-card-body {
        left: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
    }

    body.home-test-page .hpt-experience-card-body strong {
        font-size: 29px;
    }

    body.home-test-page .hpt-experience-card-body small {
        margin: 11px 0 10px;
    }

    body.home-test-page .hpt-experience-card-body em {
        font-size: 11px;
        line-height: 1.5;
    }

    body.home-test-page .hpt-experience-card-body b {
        min-width: 0;
        min-height: 38px;
        margin-top: 13px;
        padding: 0 15px;
        font-size: 9px;
    }

    body.home-test-page .hpt-experience-info-strip {
        grid-template-columns: 1fr;
        margin-top: 14px;
        padding: 20px 18px;
        border-radius: 13px;
    }

    body.home-test-page .hpt-experience-info-strip article,
    body.home-test-page .hpt-experience-info-strip article:nth-child(-n+2) {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        margin: 0;
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(6,25,43,.09);
    }

    body.home-test-page .hpt-experience-info-strip article:last-child {
        border-bottom: 0;
    }

    body.home-test-page .hpt-experience-strip-icon {
        font-size: 34px;
    }

    body.home-test-page .hpt-experience-info-strip strong {
        font-size: 10px;
    }

    body.home-test-page .hpt-experience-info-strip small {
        font-size: 10px;
    }

    body.home-test-page .hpt-experience-cta-panel {
        grid-template-columns: 1fr;
        gap: 12px;
        justify-items: center;
        margin-top: 14px;
        padding: 28px 22px;
        text-align: center;
    }

    body.home-test-page .hpt-experience-sail {
        width: 64px;
        height: 60px;
    }

    body.home-test-page .hpt-experience-cta-panel strong {
        font-size: 27px;
    }

    body.home-test-page .hpt-experience-cta-panel div p {
        font-size: 12px;
        line-height: 1.5;
    }

    body.home-test-page .hpt-experience-cta-panel > p {
        width: 100%;
    }

    body.home-test-page .hpt-experience-cta-panel a {
        width: 100%;
        min-width: 0;
        min-height: 45px;
        font-size: 9px;
    }

    body.home-test-page .hpt-experience-cta-panel small {
        font-size: 11px;
    }
}
@media (max-width: 1060px) {
    body.home-test-page .hpt-experience-hero {
        display: flex;
        flex-direction: column;
    }

    body.home-test-page .hpt-experience-copy {
        order: 1;
        width: 100%;
    }

    body.home-test-page .hpt-experience-hero > .hpt-experience-benefits {
        width: 100%;
    }
}
/* Homepage test private experiences layout correction 2026-07-21 */
body.home-test-page .hpt-experience-copy {
    grid-column: 1;
    grid-row: 1;
}

body.home-test-page .hpt-experience-hero > .hpt-experience-benefits {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin-top: 34px;
}

@media (max-width: 1060px) {
    body.home-test-page .hpt-experience-hero {
        display: flex;
        flex-direction: column;
    }

    body.home-test-page .hpt-experience-copy {
        order: 1;
        width: 100%;
    }

    body.home-test-page .hpt-experience-yacht {
        order: 2;
    }

    body.home-test-page .hpt-experience-hero > .hpt-experience-benefits {
        order: 3;
        width: 100%;
    }
}

@media (max-width: 767px) {
    body.home-test-page .hpt-experience-hero > .hpt-experience-benefits {
        margin-top: -18px;
    }
}
/* Homepage test destinations section 2026-07-21 */
body.home-test-page .hpt-destination-section {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 6.5vw, 104px) 0 clamp(68px, 7vw, 98px);
    color: #06192b;
    background:
        radial-gradient(circle at 7% 8%, rgba(201, 137, 24, .07), transparent 26%),
        linear-gradient(180deg, #fbfaf6 0%, #f7f5ef 100%);
}

body.home-test-page .hpt-destination-shell {
    position: relative;
    z-index: 1;
    width: min(1420px, calc(100% - clamp(32px, 5vw, 96px)));
    margin: 0 auto;
}

body.home-test-page .hpt-destination-hero {
    position: relative;
    min-height: 430px;
    margin-bottom: 30px;
}

body.home-test-page .hpt-destination-copy {
    position: relative;
    z-index: 2;
    max-width: 590px;
    padding-top: 4px;
}

body.home-test-page .hpt-destination-line {
    display: block;
    width: 56px;
    height: 1px;
    margin: 0 0 18px;
    background: rgba(201, 137, 24, .72);
}

body.home-test-page .hpt-destination-eyebrow {
    margin: 0 0 18px;
    color: #c98918;
    font: 800 13px/1.2 Manrope, sans-serif;
    letter-spacing: .22em;
    text-transform: uppercase;
}

body.home-test-page .hpt-destination-copy h2 {
    margin: 0;
    color: #06192b;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(56px, 5.4vw, 84px);
    font-weight: 700;
    line-height: .96;
    letter-spacing: .006em;
}

body.home-test-page .hpt-destination-copy > p:not(.hpt-destination-eyebrow) {
    max-width: 560px;
    margin: 24px 0 0;
    color: #30475c;
    font-size: 16px;
    line-height: 1.72;
}

body.home-test-page .hpt-destination-yacht {
    position: absolute;
    top: -68px;
    right: min(-70px, -4vw);
    width: min(74vw, 1050px);
    height: 505px;
    margin: 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .14) 8%, #000 30%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .14) 8%, #000 30%, #000 100%);
}

body.home-test-page .hpt-destination-yacht::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(251, 250, 246, .98) 0%, rgba(251, 250, 246, .64) 24%, rgba(251, 250, 246, .03) 62%),
        linear-gradient(180deg, rgba(251, 250, 246, .08) 0%, rgba(251, 250, 246, .25) 100%);
}

body.home-test-page .hpt-destination-yacht img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

body.home-test-page .hpt-destination-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

body.home-test-page .hpt-destination-card {
    position: relative;
    display: block;
    min-height: 280px;
    overflow: hidden;
    border-radius: 10px;
    background: #06192b;
    box-shadow: 0 18px 42px rgba(6, 25, 43, .14);
    isolation: isolate;
}

body.home-test-page .hpt-destination-card--wide {
    grid-column: 1 / -1;
    min-height: 280px;
}

body.home-test-page .hpt-destination-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .45s ease;
}

body.home-test-page .hpt-destination-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.06) contrast(1.03);
}

body.home-test-page .hpt-destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 18, 31, .92) 0%, rgba(4, 18, 31, .58) 42%, rgba(4, 18, 31, .1) 82%),
        linear-gradient(180deg, rgba(4, 18, 31, .02) 0%, rgba(4, 18, 31, .82) 100%);
}

body.home-test-page .hpt-destination-card-icon {
    position: absolute;
    z-index: 2;
    top: 25px;
    left: 28px;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(212, 150, 34, .9);
    border-radius: 50%;
    color: #d49622;
    font-size: 0;
    line-height: 1;
    background: rgba(6, 25, 43, .56);
    backdrop-filter: blur(4px);
}
body.home-test-page .hpt-destination-card-icon svg {
    display: block;
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.home-test-page .hpt-destination-card-body {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 26px;
    color: #fff;
}

body.home-test-page .hpt-destination-card-body strong {
    display: block;
    color: #fff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(35px, 3vw, 46px);
    font-weight: 700;
    line-height: 1;
}

body.home-test-page .hpt-destination-card-body small {
    display: block;
    width: 44px;
    height: 2px;
    margin: 15px 0 13px;
    background: #d49622;
}

body.home-test-page .hpt-destination-card-body em {
    display: block;
    max-width: 590px;
    color: rgba(255, 255, 255, .95);
    font: 700 13px/1.55 Manrope, sans-serif;
    font-style: normal;
}

body.home-test-page .hpt-destination-card-body b {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: 202px;
    min-height: 45px;
    margin-top: 20px;
    padding: 0 19px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 4px;
    color: #fff;
    font: 900 12px/1 Manrope, sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.home-test-page .hpt-destination-card-body b span {
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

body.home-test-page .hpt-destination-pill {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: fit-content;
    max-width: calc(100% - 36px);
    min-height: 66px;
    margin: -50px auto 0;
    padding: 0 38px;
    border: 1px solid rgba(6, 25, 43, .08);
    border-radius: 12px;
    background: rgba(255, 255, 255, .92);
    color: #30475c;
    font: 800 14px/1.2 Manrope, sans-serif;
    box-shadow: 0 18px 42px rgba(6, 25, 43, .16);
    backdrop-filter: blur(8px);
}

body.home-test-page .hpt-destination-pill-icon {
    position: relative;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    color: #d49622;
}

body.home-test-page .hpt-destination-pill-icon::before {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 8px;
    width: 22px;
    height: 24px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: skewX(-18deg);
}

body.home-test-page .hpt-destination-pill-icon::after {
    content: "";
    position: absolute;
    left: 8px;
    bottom: 4px;
    width: 30px;
    height: 8px;
    border-bottom: 2px solid currentColor;
    border-radius: 50%;
}

body.home-test-page .hpt-destination-pill i {
    color: #d49622;
    font-style: normal;
}

@media (max-width: 1060px) {
    body.home-test-page .hpt-destination-hero {
        min-height: 0;
    }

    body.home-test-page .hpt-destination-yacht {
        position: relative;
        inset: auto;
        width: 100%;
        height: 260px;
        margin-top: 24px;
        border-radius: 12px;
        -webkit-mask-image: none;
        mask-image: none;
    }

    body.home-test-page .hpt-destination-yacht::after {
        background: linear-gradient(180deg, transparent 35%, rgba(251, 250, 246, .12));
    }

    body.home-test-page .hpt-destination-pill {
        flex-wrap: wrap;
        gap: 12px 16px;
        min-height: 0;
        padding: 18px 24px;
    }
}

@media (max-width: 767px) {
    body.home-test-page .hpt-destination-section {
        padding: 48px 0 60px;
    }

    body.home-test-page .hpt-destination-shell {
        width: calc(100% - 28px);
    }

    body.home-test-page .hpt-destination-line {
        width: 40px;
        margin-bottom: 12px;
    }

    body.home-test-page .hpt-destination-eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
        letter-spacing: .18em;
    }

    body.home-test-page .hpt-destination-copy h2 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: .98;
    }

    body.home-test-page .hpt-destination-copy > p:not(.hpt-destination-eyebrow) {
        margin-top: 14px;
        font-size: 13px;
        line-height: 1.62;
    }

    body.home-test-page .hpt-destination-yacht {
        height: 180px;
        margin-top: 16px;
    }

    body.home-test-page .hpt-destination-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    body.home-test-page .hpt-destination-card,
    body.home-test-page .hpt-destination-card--wide {
        grid-column: auto;
        min-height: 268px;
        border-radius: 8px;
    }

    body.home-test-page .hpt-destination-card-icon {
        top: 16px;
        left: 16px;
        width: 48px;
        height: 48px;
        font-size: 0;
    }
    body.home-test-page .hpt-destination-card-icon svg {
        width: 29px;
        height: 29px;
        stroke-width: 2.8;
    }

    body.home-test-page .hpt-destination-card-body {
        left: 18px;
        right: 18px;
        bottom: 17px;
    }

    body.home-test-page .hpt-destination-card-body strong {
        font-size: 30px;
    }

    body.home-test-page .hpt-destination-card-body small {
        margin: 10px 0 9px;
    }

    body.home-test-page .hpt-destination-card-body em {
        font-size: 11px;
        line-height: 1.5;
    }

    body.home-test-page .hpt-destination-card-body b {
        min-width: 0;
        min-height: 37px;
        margin-top: 12px;
        padding: 0 14px;
        font-size: 9px;
        letter-spacing: .08em;
    }

    body.home-test-page .hpt-destination-pill {
        display: grid;
        grid-template-columns: 38px minmax(0, 1fr);
        justify-items: start;
        width: auto;
        max-width: none;
        margin-top: 14px;
        padding: 16px 18px;
        border-radius: 12px;
        font-size: 11px;
    }

    body.home-test-page .hpt-destination-pill-icon {
        grid-row: span 7;
        width: 34px;
        height: 34px;
    }

    body.home-test-page .hpt-destination-pill i {
        display: none;
    }
}
/* Homepage test why-book section 2026-07-21 */
body.home-test-page .hpt-trust-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0 86px;
    background:
        radial-gradient(circle at 3% 12%, rgba(201, 137, 24, .06), transparent 25%),
        linear-gradient(180deg, #fbfaf6 0%, #f8f5ef 100%);
    color: #06192b;
}

body.home-test-page .hpt-trust-shell {
    width: min(1600px, calc(100% - 112px));
    margin: 0 auto;
}

body.home-test-page .hpt-trust-top {
    display: grid;
    grid-template-columns: minmax(380px, 520px) minmax(620px, 1fr);
    gap: 72px;
    align-items: center;
}

body.home-test-page .hpt-trust-copy {
    max-width: 520px;
}

body.home-test-page .hpt-trust-kicker-line {
    display: block;
    width: 34px;
    height: 1px;
    margin: 0 0 18px;
    background: #c98918;
}

body.home-test-page .hpt-trust-eyebrow {
    margin: 0 0 24px;
    color: #c98918;
    font: 800 13px/1.2 Manrope, sans-serif;
    text-transform: uppercase;
}

body.home-test-page .hpt-trust-copy h2 {
    margin: 0;
    color: #06192b;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 78px;
    font-weight: 700;
    line-height: 1;
}

body.home-test-page .hpt-trust-wave {
    display: flex;
    gap: 4px;
    width: 74px;
    margin: 22px 0 18px;
}

body.home-test-page .hpt-trust-wave i {
    display: block;
    width: 20px;
    height: 10px;
    border-top: 3px solid #c98918;
    border-radius: 50%;
}

body.home-test-page .hpt-trust-copy > p:not(.hpt-trust-eyebrow) {
    max-width: 510px;
    margin: 0;
    color: #20384f;
    font-size: 16px;
    line-height: 1.72;
}

body.home-test-page .hpt-trust-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 344px;
    min-height: 58px;
    margin-top: 28px;
    padding: 0 28px;
    border-radius: 5px;
    background: #06192b;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font: 900 13px/1 Manrope, sans-serif;
    box-shadow: 0 16px 34px rgba(6, 25, 43, .2);
}

body.home-test-page .hpt-trust-cta:hover {
    background: #0a2945;
    color: #fff;
}

body.home-test-page .hpt-trust-cta-icon,
body.home-test-page .hpt-trust-video-avatar,
body.home-test-page .hpt-trust-card-icon,
body.home-test-page .hpt-trust-stats span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

body.home-test-page .hpt-trust-cta-icon svg,
body.home-test-page .hpt-trust-video-avatar svg,
body.home-test-page .hpt-trust-card-icon svg,
body.home-test-page .hpt-trust-stats svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.home-test-page .hpt-trust-cta-icon {
    width: 24px;
    height: 24px;
    color: #d99a1b;
}

body.home-test-page .hpt-trust-cta-icon svg {
    width: 24px;
    height: 24px;
}

body.home-test-page .hpt-trust-video {
    position: relative;
    display: block;
    min-height: 560px;
    overflow: hidden;
    border-radius: 28px;
    background: #06192b;
    color: #fff;
    box-shadow: 0 22px 58px rgba(6, 25, 43, .18);
    isolation: isolate;
}

body.home-test-page .hpt-trust-video img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s ease;
}

body.home-test-page .hpt-trust-video:hover img {
    transform: scale(1.025);
}

body.home-test-page .hpt-trust-video-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(6, 25, 43, .28) 0%, rgba(6, 25, 43, .04) 42%, rgba(6, 25, 43, .72) 100%),
        linear-gradient(90deg, rgba(6, 25, 43, .12), rgba(6, 25, 43, .02));
}

body.home-test-page .hpt-trust-video-head {
    position: absolute;
    z-index: 3;
    top: 30px;
    left: 30px;
    right: 34px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 18px;
    gap: 18px;
    align-items: center;
}

body.home-test-page .hpt-trust-video-avatar {
    width: 58px;
    height: 58px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #c98918;
}

body.home-test-page .hpt-trust-video-avatar svg {
    width: 31px;
    height: 31px;
}

body.home-test-page .hpt-trust-video-head strong,
body.home-test-page .hpt-trust-video-head small {
    display: block;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .28);
}

body.home-test-page .hpt-trust-video-head strong {
    font: 900 19px/1.25 Manrope, sans-serif;
}

body.home-test-page .hpt-trust-video-head small {
    margin-top: 3px;
    font: 700 14px/1.2 Manrope, sans-serif;
}

body.home-test-page .hpt-trust-video-head i,
body.home-test-page .hpt-trust-video-head i::before,
body.home-test-page .hpt-trust-video-head i::after {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
}

body.home-test-page .hpt-trust-video-head i {
    position: relative;
    justify-self: end;
}

body.home-test-page .hpt-trust-video-head i::before,
body.home-test-page .hpt-trust-video-head i::after {
    content: "";
    position: absolute;
    left: 0;
}

body.home-test-page .hpt-trust-video-head i::before {
    top: -10px;
}

body.home-test-page .hpt-trust-video-head i::after {
    top: 10px;
}

body.home-test-page .hpt-trust-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 34px rgba(6, 25, 43, .28);
    transform: translate(-50%, -50%);
}

body.home-test-page .hpt-trust-play::before {
    content: "";
    margin-left: 6px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 23px solid #06192b;
}

body.home-test-page .hpt-trust-video-bar {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 28px auto minmax(180px, 1fr) auto 24px;
    gap: 18px;
    align-items: center;
    min-height: 78px;
    padding: 0 38px;
    background: rgba(4, 18, 31, .74);
    color: #fff;
    font: 800 15px/1 Manrope, sans-serif;
    backdrop-filter: blur(7px);
}

body.home-test-page .hpt-trust-video-mini-play {
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 16px solid #fff;
}

body.home-test-page .hpt-trust-video-progress {
    position: relative;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .34);
}

body.home-test-page .hpt-trust-video-progress::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8%;
    border-radius: inherit;
    background: #d99a1b;
}

body.home-test-page .hpt-trust-video-progress b {
    position: absolute;
    left: 7%;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d99a1b;
    transform: translateY(-50%);
}

body.home-test-page .hpt-trust-watch {
    white-space: nowrap;
}

body.home-test-page .hpt-trust-watch strong {
    font-weight: 900;
}

body.home-test-page .hpt-trust-fullscreen {
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-left-color: transparent;
    border-bottom-color: transparent;
    box-shadow: -10px 10px 0 -7px #fff;
}

body.home-test-page .hpt-trust-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 38px;
}

body.home-test-page .hpt-trust-card {
    position: relative;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: start;
    min-height: 210px;
    padding: 22px 28px 28px;
    border: 1px solid rgba(6, 25, 43, .05);
    border-radius: 15px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 42px rgba(6, 25, 43, .09);
}

body.home-test-page .hpt-trust-card-icon {
    grid-row: span 4;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #06192b;
    color: #d99a1b;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06), 0 16px 28px rgba(6, 25, 43, .16);
}

body.home-test-page .hpt-trust-card-icon svg {
    width: 48px;
    height: 48px;
}

body.home-test-page .hpt-trust-card-number {
    margin-top: 8px;
    color: #c98918;
    font: 900 14px/1 Manrope, sans-serif;
}

body.home-test-page .hpt-trust-card h3 {
    margin: 14px 0 0;
    color: #06192b;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.12;
}

body.home-test-page .hpt-trust-card > i {
    width: 32px;
    height: 2px;
    margin: 16px 0 0;
    background: #d99a1b;
}

body.home-test-page .hpt-trust-card p {
    margin: 15px 0 0;
    color: #30475c;
    font-size: 13px;
    line-height: 1.75;
}

body.home-test-page .hpt-trust-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 26px;
    overflow: hidden;
    border: 1px solid rgba(6, 25, 43, .06);
    border-radius: 15px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 42px rgba(6, 25, 43, .09);
}

body.home-test-page .hpt-trust-stats article {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 86px;
    padding: 0 40px;
}

body.home-test-page .hpt-trust-stats article + article {
    border-left: 1px solid rgba(6, 25, 43, .1);
}

body.home-test-page .hpt-trust-stats span {
    width: 50px;
    height: 50px;
    color: #c98918;
}

body.home-test-page .hpt-trust-stats svg {
    width: 48px;
    height: 48px;
}

body.home-test-page .hpt-trust-stats p {
    margin: 0;
}

body.home-test-page .hpt-trust-stats strong,
body.home-test-page .hpt-trust-stats small {
    display: block;
}

body.home-test-page .hpt-trust-stats strong {
    color: #06192b;
    font: 900 15px/1.2 Manrope, sans-serif;
}

body.home-test-page .hpt-trust-stats small {
    margin-top: 5px;
    color: #30475c;
    font: 600 12px/1.35 Manrope, sans-serif;
}

@media (max-width: 1280px) {
    body.home-test-page .hpt-trust-shell {
        width: calc(100% - 72px);
    }

    body.home-test-page .hpt-trust-top {
        grid-template-columns: minmax(330px, 450px) minmax(520px, 1fr);
        gap: 44px;
    }

    body.home-test-page .hpt-trust-copy h2 {
        font-size: 66px;
    }

    body.home-test-page .hpt-trust-video {
        min-height: 500px;
    }

    body.home-test-page .hpt-trust-card {
        grid-template-columns: 72px minmax(0, 1fr);
        padding: 20px 22px 25px;
    }

    body.home-test-page .hpt-trust-card-icon {
        width: 70px;
        height: 70px;
    }

    body.home-test-page .hpt-trust-card-icon svg {
        width: 40px;
        height: 40px;
    }

    body.home-test-page .hpt-trust-stats article {
        padding: 0 24px;
        grid-template-columns: 52px minmax(0, 1fr);
    }
}

@media (max-width: 1020px) {
    body.home-test-page .hpt-trust-top,
    body.home-test-page .hpt-trust-cards,
    body.home-test-page .hpt-trust-stats {
        grid-template-columns: 1fr;
    }

    body.home-test-page .hpt-trust-copy {
        max-width: 650px;
    }

    body.home-test-page .hpt-trust-video {
        min-height: 420px;
    }

    body.home-test-page .hpt-trust-stats article + article {
        border-left: 0;
        border-top: 1px solid rgba(6, 25, 43, .1);
    }
}

@media (max-width: 767px) {
    body.home-test-page .hpt-trust-section {
        padding: 48px 0 58px;
    }

    body.home-test-page .hpt-trust-shell {
        width: calc(100% - 28px);
    }

    body.home-test-page .hpt-trust-top {
        gap: 22px;
    }

    body.home-test-page .hpt-trust-kicker-line {
        margin-bottom: 11px;
    }

    body.home-test-page .hpt-trust-eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
    }

    body.home-test-page .hpt-trust-copy h2 {
        font-size: 42px;
        line-height: .96;
    }

    body.home-test-page .hpt-trust-wave {
        margin: 14px 0 14px;
    }

    body.home-test-page .hpt-trust-copy > p:not(.hpt-trust-eyebrow) {
        font-size: 13px;
        line-height: 1.65;
    }

    body.home-test-page .hpt-trust-cta {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        margin-top: 20px;
        padding: 0 18px;
        gap: 12px;
        font-size: 11px;
    }

    body.home-test-page .hpt-trust-video {
        min-height: 298px;
        border-radius: 14px;
    }

    body.home-test-page .hpt-trust-video-head {
        top: 16px;
        left: 16px;
        right: 16px;
        grid-template-columns: 44px minmax(0, 1fr) 14px;
        gap: 11px;
    }

    body.home-test-page .hpt-trust-video-avatar {
        width: 44px;
        height: 44px;
        border-width: 3px;
    }

    body.home-test-page .hpt-trust-video-avatar svg {
        width: 24px;
        height: 24px;
    }

    body.home-test-page .hpt-trust-video-head strong {
        font-size: 13px;
        line-height: 1.2;
    }

    body.home-test-page .hpt-trust-video-head small {
        font-size: 11px;
    }

    body.home-test-page .hpt-trust-play {
        width: 58px;
        height: 58px;
    }

    body.home-test-page .hpt-trust-play::before {
        border-top-width: 11px;
        border-bottom-width: 11px;
        border-left-width: 17px;
    }

    body.home-test-page .hpt-trust-video-bar {
        grid-template-columns: 20px auto minmax(62px, 1fr) 20px;
        gap: 10px;
        min-height: 54px;
        padding: 0 16px;
        font-size: 11px;
    }

    body.home-test-page .hpt-trust-watch {
        display: none;
    }

    body.home-test-page .hpt-trust-cards {
        gap: 14px;
        margin-top: 22px;
    }

    body.home-test-page .hpt-trust-card {
        grid-template-columns: 62px minmax(0, 1fr);
        min-height: 0;
        padding: 18px;
        border-radius: 13px;
    }

    body.home-test-page .hpt-trust-card-icon {
        width: 56px;
        height: 56px;
    }

    body.home-test-page .hpt-trust-card-icon svg {
        width: 32px;
        height: 32px;
    }

    body.home-test-page .hpt-trust-card h3 {
        margin-top: 8px;
        font-size: 21px;
    }

    body.home-test-page .hpt-trust-card p {
        font-size: 12px;
        line-height: 1.6;
    }

    body.home-test-page .hpt-trust-stats {
        margin-top: 16px;
        border-radius: 13px;
    }

    body.home-test-page .hpt-trust-stats article {
        min-height: 76px;
        padding: 0 18px;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
    }

    body.home-test-page .hpt-trust-stats span,
    body.home-test-page .hpt-trust-stats svg {
        width: 38px;
        height: 38px;
    }

    body.home-test-page .hpt-trust-stats strong {
        font-size: 13px;
    }

    body.home-test-page .hpt-trust-stats small {
        font-size: 11px;
    }
}
/* Homepage test FAQ section 2026-07-21 */
body.home-test-page .hpt-faq-section {
    position: relative;
    overflow: hidden;
    padding: 74px 0 86px;
    background:
        radial-gradient(circle at 10% 8%, rgba(201, 137, 24, .05), transparent 24%),
        linear-gradient(180deg, #fbfaf6 0%, #f7f4ee 100%);
    color: #06192b;
}

body.home-test-page .hpt-faq-shell {
    width: min(1660px, calc(100% - 112px));
    margin: 0 auto;
}

body.home-test-page .hpt-faq-header {
    max-width: 900px;
    margin: 0 auto 34px;
    text-align: center;
}

body.home-test-page .hpt-faq-header p {
    margin: 0;
    color: #c98918;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

body.home-test-page .hpt-faq-header > span {
    display: flex;
    justify-content: center;
    gap: 3px;
    width: 54px;
    margin: 8px auto 12px;
}

body.home-test-page .hpt-faq-header > span i {
    display: block;
    width: 16px;
    height: 7px;
    border-top: 2px solid #c98918;
    border-radius: 50%;
}

body.home-test-page .hpt-faq-header h2 {
    margin: 0;
    color: #06192b;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(52px, 4.65vw, 76px);
    font-weight: 800;
    line-height: 1;
}

body.home-test-page .hpt-faq-header small {
    display: block;
    margin-top: 16px;
    color: #30475c;
    font: 600 16px/1.5 Manrope, sans-serif;
}

body.home-test-page .hpt-faq-main {
    display: grid;
    grid-template-columns: minmax(430px, 580px) minmax(620px, 1fr);
    gap: 24px;
    align-items: stretch;
}

body.home-test-page .hpt-faq-image-card {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    border-radius: 15px;
    background: #06192b;
    box-shadow: 0 20px 44px rgba(6, 25, 43, .12);
    isolation: isolate;
}

body.home-test-page .hpt-faq-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(6, 25, 43, .02) 0%, rgba(6, 25, 43, .04) 44%, rgba(6, 25, 43, .18) 100%),
        linear-gradient(0deg, rgba(0, 142, 153, .34), rgba(0, 142, 153, .02) 62%);
    pointer-events: none;
}

body.home-test-page .hpt-faq-image-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body.home-test-page .hpt-faq-benefits {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 24px 30px;
    border-radius: 14px;
    background: rgba(6, 25, 43, .92);
    color: #fff;
    box-shadow: 0 18px 38px rgba(6, 25, 43, .24);
    backdrop-filter: blur(8px);
}

body.home-test-page .hpt-faq-benefits article {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    min-height: 78px;
}

body.home-test-page .hpt-faq-benefits article + article {
    border-top: 1px solid rgba(255, 255, 255, .13);
}

body.home-test-page .hpt-faq-benefits span,
body.home-test-page .hpt-faq-contact span,
body.home-test-page .hpt-faq-contact-link span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

body.home-test-page .hpt-faq-benefits span {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(201, 137, 24, .55);
    border-radius: 50%;
    color: #d99a1b;
}

body.home-test-page .hpt-faq-benefits svg,
body.home-test-page .hpt-faq-contact svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body.home-test-page .hpt-faq-benefits svg {
    width: 32px;
    height: 32px;
}

body.home-test-page .hpt-faq-benefits p {
    margin: 0;
}

body.home-test-page .hpt-faq-benefits strong,
body.home-test-page .hpt-faq-benefits small {
    display: block;
}

body.home-test-page .hpt-faq-benefits strong {
    color: #fff;
    font: 900 15px/1.25 Manrope, sans-serif;
}

body.home-test-page .hpt-faq-benefits small {
    margin-top: 7px;
    color: rgba(255, 255, 255, .9);
    font: 600 12px/1.45 Manrope, sans-serif;
}

body.home-test-page .hpt-faq-list {
    overflow: hidden;
    border: 1px solid rgba(6, 25, 43, .08);
    border-radius: 15px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 42px rgba(6, 25, 43, .09);
}

body.home-test-page .hpt-faq-item {
    background: #fff;
}

body.home-test-page .hpt-faq-item + .hpt-faq-item {
    border-top: 1px solid rgba(6, 25, 43, .12);
}

body.home-test-page .hpt-faq-item summary {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    gap: 22px;
    align-items: center;
    min-height: 43px;
    padding: 0 26px 0 20px;
    color: #06192b;
    cursor: pointer;
    list-style: none;
}

body.home-test-page .hpt-faq-item summary::-webkit-details-marker {
    display: none;
}

body.home-test-page .hpt-faq-item summary span {
    position: relative;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fbf8f1;
    box-shadow: 0 4px 10px rgba(6, 25, 43, .1);
}

body.home-test-page .hpt-faq-item summary span::before,
body.home-test-page .hpt-faq-item summary span::after {
    content: "";
    position: absolute;
    width: 13px;
    height: 2px;
    border-radius: 99px;
    background: #c98918;
}

body.home-test-page .hpt-faq-item summary span::after {
    transform: rotate(90deg);
}

body.home-test-page .hpt-faq-item[open] summary span {
    background: #c98918;
}

body.home-test-page .hpt-faq-item[open] summary span::before {
    background: #fff;
}

body.home-test-page .hpt-faq-item[open] summary span::after {
    opacity: 0;
}

body.home-test-page .hpt-faq-item summary strong {
    color: #06192b;
    font: 900 15px/1.25 Manrope, sans-serif;
}

body.home-test-page .hpt-faq-item summary i {
    position: relative;
    width: 12px;
    height: 12px;
    justify-self: end;
    transform: rotate(45deg);
}

body.home-test-page .hpt-faq-item summary i::before,
body.home-test-page .hpt-faq-item summary i::after {
    content: "";
    position: absolute;
    background: #06192b;
    border-radius: 999px;
}

body.home-test-page .hpt-faq-item summary i::before {
    width: 10px;
    height: 2px;
    left: 0;
    top: 5px;
}

body.home-test-page .hpt-faq-item summary i::after {
    width: 2px;
    height: 10px;
    right: 0;
    top: 0;
}

body.home-test-page .hpt-faq-item[open] summary i {
    transform: rotate(-135deg);
}

body.home-test-page .hpt-faq-item > div {
    padding: 13px 80px 17px 80px;
    border-top: 1px solid rgba(6, 25, 43, .1);
    background: #fbfaf7;
    color: #30475c;
    font: 600 13px/1.7 Manrope, sans-serif;
}

body.home-test-page .hpt-faq-contact {
    display: grid;
    grid-template-columns: minmax(360px, 1.28fr) minmax(240px, .72fr) minmax(360px, 1.05fr) minmax(250px, .75fr);
    align-items: center;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid rgba(6, 25, 43, .06);
    border-radius: 15px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 18px 42px rgba(6, 25, 43, .09);
}

body.home-test-page .hpt-faq-contact article,
body.home-test-page .hpt-faq-contact-link {
    min-height: 104px;
    padding: 0 24px;
    text-decoration: none;
}

body.home-test-page .hpt-faq-contact-title,
body.home-test-page .hpt-faq-contact-link {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

body.home-test-page .hpt-faq-contact-link,
body.home-test-page .hpt-faq-quote {
    border-left: 1px solid rgba(6, 25, 43, .1);
}

body.home-test-page .hpt-faq-contact span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #c98918;
}

body.home-test-page .hpt-faq-contact-title > span {
    width: 68px;
    height: 68px;
}

body.home-test-page .hpt-faq-contact-link span {
    background: #f4efe6;
}

body.home-test-page .hpt-faq-contact svg {
    width: 40px;
    height: 40px;
}

body.home-test-page .hpt-faq-contact-link svg {
    width: 33px;
    height: 33px;
}

body.home-test-page .hpt-faq-contact p {
    margin: 0;
}

body.home-test-page .hpt-faq-contact strong,
body.home-test-page .hpt-faq-contact small {
    display: block;
}

body.home-test-page .hpt-faq-contact-title strong {
    color: #06192b;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

body.home-test-page .hpt-faq-contact-link strong {
    color: #06192b;
    font: 900 13px/1.2 Manrope, sans-serif;
}

body.home-test-page .hpt-faq-contact small {
    margin-top: 7px;
    color: #30475c;
    font: 600 12px/1.45 Manrope, sans-serif;
}

body.home-test-page .hpt-faq-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 104px;
    padding: 0 28px;
    color: #fff;
    background: transparent;
    text-decoration: none;
}

body.home-test-page .hpt-faq-quote::before {
    content: "";
    position: absolute;
}

body.home-test-page .hpt-faq-quote {
    position: relative;
}

body.home-test-page .hpt-faq-quote span,
body.home-test-page .hpt-faq-quote {
    font: 900 13px/1 Manrope, sans-serif;
    text-transform: uppercase;
}

body.home-test-page .hpt-faq-quote {
    margin: 0 28px;
    min-height: 54px;
    border: 0;
    border-radius: 5px;
    background: #06192b;
    box-shadow: 0 14px 30px rgba(6, 25, 43, .18);
}

body.home-test-page .hpt-faq-quote:hover {
    background: #0a2945;
    color: #fff;
}

@media (max-width: 1280px) {
    body.home-test-page .hpt-faq-shell {
        width: calc(100% - 72px);
    }

    body.home-test-page .hpt-faq-main {
        grid-template-columns: minmax(350px, 430px) minmax(520px, 1fr);
    }

    body.home-test-page .hpt-faq-image-card {
        min-height: 760px;
    }

    body.home-test-page .hpt-faq-contact {
        grid-template-columns: 1.28fr .72fr 1.05fr .75fr;
    }
}

@media (max-width: 1020px) {
    body.home-test-page .hpt-faq-main,
    body.home-test-page .hpt-faq-contact {
        grid-template-columns: 1fr;
    }

    body.home-test-page .hpt-faq-image-card {
        min-height: 640px;
    }

    body.home-test-page .hpt-faq-contact-link,
    body.home-test-page .hpt-faq-quote {
        border-left: 0;
        border-top: 1px solid rgba(6, 25, 43, .1);
    }

    body.home-test-page .hpt-faq-quote {
        margin: 18px 28px;
    }
}

@media (max-width: 767px) {
    body.home-test-page .hpt-faq-section {
        padding: 48px 0 58px;
    }

    body.home-test-page .hpt-faq-shell {
        width: calc(100% - 28px);
    }

    body.home-test-page .hpt-faq-header {
        margin-bottom: 24px;
    }

    body.home-test-page .hpt-faq-header p {
        font-size: 18px;
    }

    body.home-test-page .hpt-faq-header h2 {
        font-size: clamp(34px, 10vw, 43px);
        line-height: .98;
    }

    body.home-test-page .hpt-faq-header small {
        margin-top: 12px;
        font-size: 13px;
    }

    body.home-test-page .hpt-faq-image-card {
        min-height: 610px;
        border-radius: 12px;
    }

    body.home-test-page .hpt-faq-image-card > img {
        height: 56%;
        bottom: auto;
        object-position: center;
    }

    body.home-test-page .hpt-faq-benefits {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 16px;
        border-radius: 12px;
    }

    body.home-test-page .hpt-faq-benefits article {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
        min-height: 70px;
    }

    body.home-test-page .hpt-faq-benefits span {
        width: 44px;
        height: 44px;
    }

    body.home-test-page .hpt-faq-benefits svg {
        width: 26px;
        height: 26px;
    }

    body.home-test-page .hpt-faq-benefits strong {
        font-size: 13px;
    }

    body.home-test-page .hpt-faq-benefits small {
        font-size: 11px;
        line-height: 1.35;
    }

    body.home-test-page .hpt-faq-list,
    body.home-test-page .hpt-faq-contact {
        border-radius: 12px;
    }

    body.home-test-page .hpt-faq-item summary {
        grid-template-columns: 28px minmax(0, 1fr) 14px;
        gap: 12px;
        min-height: 48px;
        padding: 0 14px;
    }

    body.home-test-page .hpt-faq-item summary span {
        width: 25px;
        height: 25px;
    }

    body.home-test-page .hpt-faq-item summary strong {
        font-size: 12px;
        line-height: 1.35;
    }

    body.home-test-page .hpt-faq-item > div {
        padding: 12px 18px 15px 54px;
        font-size: 11px;
        line-height: 1.6;
    }

    body.home-test-page .hpt-faq-contact article,
    body.home-test-page .hpt-faq-contact-link {
        min-height: 86px;
        padding: 0 18px;
    }

    body.home-test-page .hpt-faq-contact-title,
    body.home-test-page .hpt-faq-contact-link {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 14px;
    }

    body.home-test-page .hpt-faq-contact-title > span,
    body.home-test-page .hpt-faq-contact span {
        width: 46px;
        height: 46px;
    }

    body.home-test-page .hpt-faq-contact svg,
    body.home-test-page .hpt-faq-contact-link svg {
        width: 28px;
        height: 28px;
    }

    body.home-test-page .hpt-faq-contact-title strong {
        font-size: 23px;
    }

    body.home-test-page .hpt-faq-contact small {
        font-size: 11px;
    }

    body.home-test-page .hpt-faq-quote {
        margin: 14px 18px;
        min-height: 50px;
        font-size: 11px;
    }
}

/* Home page test premium footer */
body.home-test-page .hpt-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
body.home-test-page .hpt-footer{--fn:#06192b;--fd:#03101e;--fg:#d09333;--fg2:#edae3c;--fl:rgba(255,255,255,.15);--ft:rgba(255,255,255,.9);--fm:rgba(255,255,255,.68);position:relative;overflow:hidden;padding:54px 0 30px;color:#fff;background:radial-gradient(circle at 70% 16%,rgba(32,91,124,.38),transparent 36%),linear-gradient(180deg,#06192b 0%,#041321 100%);}
body.home-test-page .hpt-footer:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(180deg,rgba(255,255,255,.02) 1px,transparent 1px);background-size:74px 74px;pointer-events:none;}
body.home-test-page .hpt-footer:after{content:"";position:absolute;right:-2vw;bottom:78px;width:min(43vw,700px);height:320px;background:linear-gradient(90deg,rgba(3,16,30,.42),rgba(3,16,30,.04)),url('../images/footer-3-bg.webp') right bottom/contain no-repeat;opacity:.29;filter:saturate(.8);pointer-events:none;}
body.home-test-page .hpt-footer__shell{position:relative;z-index:1;width:min(1540px,calc(100% - 64px));margin:0 auto;}
body.home-test-page .hpt-footer__trust{display:grid;grid-template-columns:minmax(260px,1.55fr) repeat(4,minmax(150px,.95fr)) minmax(145px,.72fr);align-items:stretch;min-height:202px;padding:30px 36px;color:var(--fn);background:linear-gradient(135deg,#fffdf8 0%,#f7f3eb 100%);border:1px solid rgba(255,255,255,.74);border-radius:24px;box-shadow:0 28px 70px rgba(0,0,0,.26);}
body.home-test-page .hpt-footer__brand-card{display:flex;flex-direction:column;justify-content:center;gap:18px;padding-right:30px;}
body.home-test-page .hpt-footer__brand-lockup{display:grid;grid-template-columns:74px minmax(0,1fr);align-items:center;gap:16px;}
body.home-test-page .hpt-footer__brand-lockup img{width:74px;height:75px;object-fit:contain;}
body.home-test-page .hpt-footer__brand-lockup h2{margin:0;color:#06192b;font:800 25px/1.05 Cinzel,Georgia,serif;letter-spacing:.04em;text-transform:uppercase;}
body.home-test-page .hpt-footer__brand-card p{max-width:285px;margin:0;color:#10243d;font:600 17px/1.55 Manrope,sans-serif;}
body.home-test-page .hpt-footer__trust-item{display:grid;align-content:center;justify-items:center;gap:12px;padding:10px 24px;text-align:center;border-left:1px solid rgba(6,25,43,.1);}
body.home-test-page .hpt-footer__gold-symbol{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;color:var(--fg);font:400 42px/1 Georgia,serif;}
body.home-test-page .hpt-footer__trust-item img{width:43px;height:43px;object-fit:contain;filter:invert(55%) sepia(71%) saturate(519%) hue-rotate(358deg) brightness(91%) contrast(90%);}
body.home-test-page .hpt-footer__trust-item strong{color:#06192b;font:900 13px/1.3 Manrope,sans-serif;letter-spacing:.1em;text-transform:uppercase;}
body.home-test-page .hpt-footer__trust-item small{max-width:190px;color:#26364c;font:600 13px/1.55 Manrope,sans-serif;}
body.home-test-page .hpt-footer__google{display:grid;align-content:center;justify-items:center;gap:5px;min-width:144px;margin-left:28px;padding:14px 18px;border:1px solid rgba(6,25,43,.1);border-radius:14px;background:rgba(255,255,255,.62);box-shadow:0 12px 30px rgba(6,25,43,.08);}
body.home-test-page .hpt-footer__google img{width:104px;height:auto;object-fit:contain;}
body.home-test-page .hpt-footer__google strong{color:#06192b;font:900 30px/1 Manrope,sans-serif;}
body.home-test-page .hpt-footer__google span{color:#b67523;font-size:17px;letter-spacing:2px;white-space:nowrap;}
body.home-test-page .hpt-footer__google small{color:#06192b;font:800 11px/1.2 Manrope,sans-serif;}
body.home-test-page .hpt-footer__nav-grid{display:grid;grid-template-columns:1fr 1fr 1fr 1fr 1.1fr;gap:clamp(34px,5vw,72px);padding:70px 20px 58px;}
body.home-test-page .hpt-footer__nav-col{display:flex;flex-direction:column;align-items:flex-start;gap:16px;min-width:0;color:var(--ft);font-style:normal;}
body.home-test-page .hpt-footer__nav-col h3{display:flex;align-items:center;gap:15px;margin:0 0 10px;color:#fff;font:700 16px/1.15 Cormorant Garamond,Georgia,serif;letter-spacing:.06em;text-transform:uppercase;}
body.home-test-page .hpt-footer__nav-col h3 span{width:30px;color:var(--fg2);font:400 30px/1 Georgia,serif;text-align:center;}
body.home-test-page .hpt-footer__nav-col a{color:var(--ft);font:500 16px/1.2 Manrope,sans-serif;text-decoration:none;transition:color .18s ease,transform .18s ease,border-color .18s ease,background .18s ease;}
body.home-test-page .hpt-footer__nav-col a:hover{color:#fff;transform:translateX(2px);}
body.home-test-page .hpt-footer__outline-link{display:inline-flex;align-items:center;justify-content:space-between;gap:18px;min-width:220px;min-height:42px;margin-top:10px;padding:0 15px;border:1px solid rgba(208,147,51,.95);color:#f0b24c!important;font:900 12px/1 Manrope,sans-serif!important;letter-spacing:.12em;text-transform:uppercase;}
body.home-test-page .hpt-footer__outline-link:hover{background:rgba(208,147,51,.12);transform:none!important;}
body.home-test-page .hpt-footer__quote{display:inline-flex;align-items:center;justify-content:center;gap:22px;width:min(250px,100%);min-height:52px;margin-top:10px;color:#fff!important;background:linear-gradient(135deg,#b77b28,#dda24c);border:1px solid rgba(237,174,60,.45);box-shadow:0 18px 42px rgba(0,0,0,.18);font:900 13px/1 Manrope,sans-serif!important;letter-spacing:.12em;text-transform:uppercase;}
body.home-test-page .hpt-footer__accordion{display:none;}
body.home-test-page .hpt-footer__newsletter{display:grid;grid-template-columns:minmax(220px,.95fr) minmax(320px,1.1fr) minmax(520px,1.65fr);align-items:center;gap:34px;padding:36px 20px 32px;border-top:1px solid rgba(208,147,51,.7);border-bottom:1px solid rgba(208,147,51,.55);}
body.home-test-page .hpt-footer__newsletter h3{display:flex;align-items:center;gap:14px;margin:0 0 10px;color:#fff;font:700 16px/1.2 Cormorant Garamond,Georgia,serif;letter-spacing:.05em;text-transform:uppercase;}
body.home-test-page .hpt-footer__newsletter h3 span{color:var(--fg2);font-size:28px;line-height:1;}
body.home-test-page .hpt-footer__newsletter p{margin:0;max-width:300px;color:var(--ft);font:500 15px/1.55 Manrope,sans-serif;}
body.home-test-page .hpt-footer__newsletter form{display:grid;grid-template-columns:minmax(0,1fr) 116px;min-height:52px;border:1px solid rgba(255,255,255,.38);background:rgba(3,16,30,.36);}
body.home-test-page .hpt-footer__newsletter input,body.home-test-page .hpt-footer__newsletter button{min-width:0;border:0;border-radius:0;font-family:Manrope,sans-serif;}
body.home-test-page .hpt-footer__newsletter input{padding:0 18px;color:#fff;background:transparent;font-size:14px;outline:none;}
body.home-test-page .hpt-footer__newsletter input::placeholder{color:rgba(255,255,255,.74);}
body.home-test-page .hpt-footer__newsletter button{color:#fff;background:linear-gradient(135deg,#b77b28,#dda24c);font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;cursor:pointer;}
body.home-test-page .hpt-footer__stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));align-items:center;gap:0;}
body.home-test-page .hpt-footer__stats article{display:grid;grid-template-columns:46px minmax(0,1fr);align-items:center;gap:14px;min-height:76px;padding:0 22px;border-left:1px solid rgba(255,255,255,.18);}
body.home-test-page .hpt-footer__stats article span{color:var(--fg2);font:400 38px/1 Georgia,serif;}
body.home-test-page .hpt-footer__stats p{margin:0;}.hpt-footer__stats strong{display:block;color:#fff;font:600 31px/1 Cormorant Garamond,Georgia,serif;letter-spacing:.02em;}.hpt-footer__stats small{display:block;margin-top:5px;color:var(--ft);font:500 14px/1.25 Manrope,sans-serif;}
body.home-test-page .hpt-footer__bottom{display:grid;grid-template-columns:minmax(220px,.8fr) 1fr minmax(280px,.8fr);align-items:center;gap:24px;padding:34px 20px 28px;}
body.home-test-page .hpt-footer__lang{display:inline-flex;align-items:center;gap:11px;width:max-content;padding:0;color:#fff;background:transparent;border:0;font:500 15px/1 Manrope,sans-serif;cursor:pointer;}
body.home-test-page .hpt-footer__lang span:first-child{color:var(--fg2);font-size:24px;}.hpt-footer__social{display:flex;align-items:center;justify-content:center;gap:clamp(20px,3vw,38px);}
body.home-test-page .hpt-footer__social a{display:inline-flex;align-items:center;justify-content:center;min-width:24px;height:24px;color:rgba(255,255,255,.92);font:900 21px/1 Manrope,sans-serif;text-decoration:none;transition:color .18s ease,transform .18s ease;}.hpt-footer__social a:hover{color:var(--fg2);transform:translateY(-1px);}
body.home-test-page .hpt-footer__payments{display:flex;align-items:center;justify-content:flex-end;gap:24px;color:rgba(255,255,255,.9);font:900 14px/1 Manrope,sans-serif;}.hpt-footer__mc{position:relative;width:42px;height:24px;}.hpt-footer__mc i{position:absolute;top:2px;width:21px;height:21px;border-radius:50%;background:rgba(255,255,255,.86);}.hpt-footer__mc i:first-child{left:3px;}.hpt-footer__mc i:last-child{right:3px;opacity:.68;}.hpt-footer__ssl{display:grid;text-transform:uppercase;}.hpt-footer__ssl small{font-size:9px;line-height:1;color:rgba(255,255,255,.72);}
body.home-test-page .hpt-footer__legal{display:grid;grid-template-columns:1fr auto;align-items:center;gap:28px;padding:26px 20px 0;border-top:1px solid rgba(255,255,255,.15);}.hpt-footer__legal p{margin:0;color:var(--fm);font:500 13px/1.5 Manrope,sans-serif;}.hpt-footer__legal nav{display:flex;align-items:center;gap:28px;}.hpt-footer__legal a{color:var(--fm);font:500 13px/1 Manrope,sans-serif;text-decoration:none;}.hpt-footer__legal a:hover{color:#fff;}.hpt-footer__legal span{width:1px;height:18px;background:rgba(255,255,255,.28);}
body.home-test-page .hpt-footer a:focus-visible,body.home-test-page .hpt-footer button:focus-visible,body.home-test-page .hpt-footer summary:focus-visible,body.home-test-page .hpt-footer input:focus-visible{outline:3px solid rgba(237,174,60,.65);outline-offset:4px;}
@media (max-width:1280px){body.home-test-page .hpt-footer__trust{grid-template-columns:minmax(240px,1.2fr) repeat(4,minmax(130px,.9fr));}.hpt-footer__google{grid-column:1/-1;grid-template-columns:auto auto auto auto;justify-content:center;width:max-content;margin:22px auto 0!important;padding:12px 24px;}.hpt-footer__google img{width:92px!important;}body.home-test-page .hpt-footer__newsletter{grid-template-columns:minmax(220px,.8fr) minmax(300px,1fr);}body.home-test-page .hpt-footer__stats{grid-column:1/-1;}}
@media (max-width:980px){body.home-test-page .hpt-footer{padding:16px 0 18px;background:#f8f5ec;}body.home-test-page .hpt-footer:before{display:none;}body.home-test-page .hpt-footer:after{right:2vw;bottom:0;width:80vw;height:220px;opacity:.23;}body.home-test-page .hpt-footer__shell{width:min(100% - 28px,560px);padding:18px 16px 24px;overflow:hidden;border-radius:22px;background:radial-gradient(circle at 55% 24%,rgba(25,84,122,.4),transparent 42%),linear-gradient(180deg,#06192b 0%,#041321 100%);box-shadow:0 24px 60px rgba(2,12,23,.28);}body.home-test-page .hpt-footer__trust{display:block;min-height:0;padding:18px 18px 14px;border-radius:14px;}body.home-test-page .hpt-footer__brand-card{padding:0;gap:12px;}.hpt-footer__brand-lockup{grid-template-columns:66px 1fr!important;gap:13px!important;}.hpt-footer__brand-lockup img{width:66px!important;height:67px!important;}.hpt-footer__brand-lockup h2{font-size:21px!important;}.hpt-footer__brand-card p{max-width:310px!important;font-size:15px!important;line-height:1.45!important;}body.home-test-page .hpt-footer__trust-item{display:inline-grid;width:24%;min-height:148px;margin-top:24px;padding:0 8px;vertical-align:top;border-left:1px solid rgba(6,25,43,.1);}body.home-test-page .hpt-footer__trust-item:nth-of-type(1){border-left:0;}body.home-test-page .hpt-footer__gold-symbol{width:38px;height:38px;font-size:36px;}body.home-test-page .hpt-footer__trust-item img{width:38px;height:38px;}body.home-test-page .hpt-footer__trust-item strong{font-size:10px;line-height:1.25;letter-spacing:.06em;}body.home-test-page .hpt-footer__trust-item small{font-size:10px;line-height:1.45;}body.home-test-page .hpt-footer__google{display:grid;grid-template-columns:auto auto auto;justify-content:center;align-items:center;column-gap:13px;width:100%;min-width:0;margin:12px 0 0!important;padding:11px 10px;border-radius:9px;}body.home-test-page .hpt-footer__google img{width:86px!important;}body.home-test-page .hpt-footer__google strong{font-size:24px;}body.home-test-page .hpt-footer__google span{font-size:13px;letter-spacing:1px;}body.home-test-page .hpt-footer__google small{grid-column:1/-1;font-size:10px;}body.home-test-page .hpt-footer__nav-grid--desktop{display:none;}body.home-test-page .hpt-footer__accordion{display:block;padding:16px 0 0;}body.home-test-page .hpt-footer__accordion details{border-bottom:1px solid rgba(255,255,255,.13);}body.home-test-page .hpt-footer__accordion summary{display:grid;grid-template-columns:36px minmax(0,1fr) 18px;align-items:center;gap:11px;min-height:66px;color:#fff;cursor:pointer;list-style:none;font:700 17px/1 Cormorant Garamond,Georgia,serif;letter-spacing:.05em;text-transform:uppercase;}body.home-test-page .hpt-footer__accordion summary::-webkit-details-marker{display:none;}body.home-test-page .hpt-footer__accordion summary span{color:var(--fg2);font-size:29px;line-height:1;text-align:center;}body.home-test-page .hpt-footer__accordion summary i{position:relative;width:14px;height:14px;}body.home-test-page .hpt-footer__accordion summary i:before,body.home-test-page .hpt-footer__accordion summary i:after{content:"";position:absolute;top:50%;left:50%;width:10px;height:2px;background:#fff;transform:translate(-50%,-50%);}body.home-test-page .hpt-footer__accordion summary i:after{transform:translate(-50%,-50%) rotate(90deg);}body.home-test-page .hpt-footer__accordion details[open] summary i:after{transform:translate(-50%,-50%) rotate(0deg);}body.home-test-page .hpt-footer__accordion details>div{display:grid;gap:14px;padding:0 0 18px 47px;}body.home-test-page .hpt-footer__accordion a{color:var(--ft);font:500 14px/1.2 Manrope,sans-serif;text-decoration:none;}body.home-test-page .hpt-footer__newsletter{grid-template-columns:1fr;gap:18px;margin-top:18px;padding:19px 18px 20px;border:1px solid rgba(208,147,51,.8);border-radius:8px;}body.home-test-page .hpt-footer__newsletter p{max-width:none;padding-left:40px;font-size:12px;text-align:left;}body.home-test-page .hpt-footer__newsletter form{grid-template-columns:1fr;gap:10px;border:0;background:transparent;}body.home-test-page .hpt-footer__newsletter input,body.home-test-page .hpt-footer__newsletter button{min-height:44px;border:1px solid rgba(255,255,255,.28);border-radius:2px;}body.home-test-page .hpt-footer__newsletter button{border-color:rgba(237,174,60,.5);}body.home-test-page .hpt-footer__stats{grid-template-columns:repeat(2,minmax(0,1fr));}body.home-test-page .hpt-footer__stats article{grid-template-columns:44px minmax(0,1fr);min-height:96px;padding:0 16px;border-left:0;border-top:1px solid rgba(255,255,255,.14);}body.home-test-page .hpt-footer__stats article:nth-child(even){border-left:1px solid rgba(255,255,255,.14);}body.home-test-page .hpt-footer__stats article span{font-size:34px;}body.home-test-page .hpt-footer__stats strong{font-size:27px;}body.home-test-page .hpt-footer__stats small{font-size:13px;}body.home-test-page .hpt-footer__bottom{grid-template-columns:1fr;gap:0;padding:20px 0 0;}body.home-test-page .hpt-footer__lang{width:100%;min-height:52px;border-top:1px solid rgba(255,255,255,.13);border-bottom:1px solid rgba(255,255,255,.13);}body.home-test-page .hpt-footer__lang span:last-child{margin-left:auto;}body.home-test-page .hpt-footer__social{justify-content:space-around;width:100%;padding:20px 8px;border-bottom:1px solid rgba(255,255,255,.13);}body.home-test-page .hpt-footer__payments{justify-content:space-around;gap:12px;padding:19px 0;border-bottom:1px solid rgba(255,255,255,.13);font-size:13px;}body.home-test-page .hpt-footer__legal{grid-template-columns:1fr;gap:18px;padding:20px 0 0;border-top:0;text-align:center;}body.home-test-page .hpt-footer__legal nav{justify-content:center;gap:16px;flex-wrap:wrap;}}
@media (max-width:430px){body.home-test-page .hpt-footer__shell{width:calc(100% - 24px);padding:14px 13px 22px;}body.home-test-page .hpt-footer__trust{padding:16px 13px 12px;}body.home-test-page .hpt-footer__brand-lockup h2{font-size:18px!important;}body.home-test-page .hpt-footer__trust-item{width:24.1%;min-height:144px;padding:0 4px;}body.home-test-page .hpt-footer__trust-item strong{font-size:9px;}body.home-test-page .hpt-footer__trust-item small{font-size:9px;}body.home-test-page .hpt-footer__payments{font-size:11px;}}

/* Footer stat count alignment */
body.home-test-page .hpt-footer__stats{grid-template-columns:repeat(3,minmax(0,1fr));}
body.home-test-page .hpt-footer__stats article:nth-child(4){display:none;}
@media (max-width:980px){body.home-test-page .hpt-footer__stats{grid-template-columns:repeat(2,minmax(0,1fr));}body.home-test-page .hpt-footer__stats article:nth-child(4){display:grid;}}

/* CSS-drawn footer stat icons */
body.home-test-page .hpt-footer__stats article span.hpt-footer__stat-icon{position:relative;display:block;width:42px;height:42px;color:var(--fg2);font-size:0;line-height:0;}
body.home-test-page .hpt-footer__stat-icon:before,body.home-test-page .hpt-footer__stat-icon:after{content:"";position:absolute;display:block;box-sizing:border-box;}
body.home-test-page .hpt-footer__stat-icon--boat:before{left:4px;right:4px;bottom:13px;height:11px;border:2px solid currentColor;border-top:0;transform:skewX(-18deg);}
body.home-test-page .hpt-footer__stat-icon--boat:after{left:6px;right:6px;bottom:5px;height:8px;border-top:2px solid currentColor;border-bottom:2px solid currentColor;}
body.home-test-page .hpt-footer__stat-icon--guests:before{left:4px;top:8px;width:12px;height:12px;border:2px solid currentColor;border-radius:50%;box-shadow:18px 0 0 -2px transparent,18px 0 0 0 currentColor;}
body.home-test-page .hpt-footer__stat-icon--guests:after{left:2px;bottom:7px;width:38px;height:16px;border:2px solid currentColor;border-top:0;border-radius:0 0 22px 22px;}
body.home-test-page .hpt-footer__stat-icon--safe:before{inset:3px;border:2px solid currentColor;border-radius:50%;}
body.home-test-page .hpt-footer__stat-icon--safe:after{left:12px;top:12px;width:18px;height:18px;border:2px solid currentColor;transform:rotate(45deg);}
body.home-test-page .hpt-footer__stat-icon--transfer:before{left:4px;top:12px;width:34px;height:19px;border:2px solid currentColor;border-radius:5px;}
body.home-test-page .hpt-footer__stat-icon--transfer:after{left:10px;bottom:5px;width:6px;height:6px;border-radius:50%;background:currentColor;box-shadow:18px 0 0 currentColor;}
@media (max-width:980px){body.home-test-page .hpt-footer__stats article span.hpt-footer__stat-icon{width:36px;height:36px;}}
