:root {
  --color-ink: #03101a;
  --color-navy: #061521;
  --color-teal: #45f3ff;
  --color-teal-soft: #95fbff;
  --color-white: #ffffff;
  --color-muted: rgba(235, 247, 250, 0.76);
  --section-surface:
    radial-gradient(circle at 14% 16%, rgba(69, 243, 255, 0.1), transparent 24rem),
    radial-gradient(circle at 86% 74%, rgba(69, 243, 255, 0.06), transparent 22rem),
    linear-gradient(180deg, #01070c 0%, #03101a 48%, #020617 100%);
  --section-surface-alt:
    radial-gradient(circle at 24% 26%, rgba(69, 243, 255, 0.1), transparent 24rem),
    radial-gradient(circle at 76% 76%, rgba(69, 243, 255, 0.055), transparent 22rem),
    linear-gradient(180deg, #020617 0%, #061521 48%, #01070c 100%);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  background: #000;
  color: var(--color-white);
  font-family: var(--font-body);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

body.modal-open {
  overflow: hidden;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(69, 243, 255, 0.1), transparent 32rem),
    linear-gradient(180deg, #000 0%, #020617 100%);
}

.cart-toggle {
  position: relative;
  z-index: 1;
  overflow: visible;
  display: inline-grid;
  place-items: center;
  width: 3.05rem;
  height: 3.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--color-teal);
  background: transparent;
  backdrop-filter: blur(18px);
  box-shadow: none;
  cursor: pointer;
  transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease, filter 300ms ease;
}

.cart-toggle:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.2), rgba(255, 255, 255, 0.08) 46%, rgba(69, 243, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0.75rem 1.8rem rgba(69, 243, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0.8rem 1.7rem rgba(255, 255, 255, 0.07) inset;
}

.cart-toggle__icon {
  position: relative;
  z-index: 1;
  width: 1.15rem;
  height: 0.85rem;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 0.28rem 0.28rem;
}

.cart-toggle__icon::before {
  content: "";
  position: absolute;
  left: 0.18rem;
  right: 0.18rem;
  top: -0.48rem;
  height: 0.52rem;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.cart-toggle__count {
  position: absolute;
  top: -0.28rem;
  right: -0.28rem;
  z-index: 2;
  display: grid;
  min-width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  padding: 0 0.32rem;
  border-radius: 999px;
  color: #031014;
  background: var(--color-teal);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 1.15rem rgba(69, 243, 255, 0.6), 0 0 0 2px rgba(2, 9, 18, 0.9);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 8rem 1.5rem 5.5rem;
  margin-bottom: -1px;
}

.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: 0;
  object-fit: contain;
  object-position: center center;
  background: #000;
  filter: brightness(0.92) saturate(0.95) contrast(1.04);
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(2);
  will-change: transform;
}

.hero__overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 45%, rgba(13, 54, 67, 0.08), rgba(0, 0, 0, 0.52) 58%),
    linear-gradient(115deg, rgba(0, 0, 0, 0.68) 0%, rgba(3, 13, 24, 0.42) 48%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(2, 9, 18, 0.68), rgba(3, 8, 13, 0.18) 44%, #01070c 100%);
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.15rem, 3vw, 2rem) clamp(1.25rem, 5vw, 4.5rem);
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  width: clamp(8.5rem, 15vw, 12.25rem);
  animation: fadeDown 0.9s ease;
}

.navbar__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.32rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.16), rgba(255, 255, 255, 0.06) 46%, rgba(69, 243, 255, 0.07)),
    rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  box-shadow:
    0 1rem 2.5rem rgba(0, 0, 0, 0.25),
    0 0 2rem rgba(69, 243, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  animation: fadeDown 0.9s ease;
}

.icon-button,
.globe-button,
.menu-button {
  position: relative;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  width: 3.05rem;
  height: 3.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--color-teal);
  background: transparent;
  backdrop-filter: blur(18px);
  box-shadow: none;
  cursor: pointer;
  transition: transform 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease, filter 300ms ease;
}

.icon-button:hover,
.globe-button:hover,
.country-menu.is-open .globe-button,
.menu-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.2), rgba(255, 255, 255, 0.08) 46%, rgba(69, 243, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0.75rem 1.8rem rgba(69, 243, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0.8rem 1.7rem rgba(255, 255, 255, 0.07) inset;
}

.cart-toggle::before,
.icon-button::before,
.globe-button::before,
.menu-button::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -75%;
  width: 58%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  filter: blur(0.42rem);
  opacity: 0.28;
  transform: translateX(-20%) rotate(18deg);
  animation: liquidButtonSheen 7s ease-in-out infinite;
  pointer-events: none;
}

.cart-toggle::before {
  border-radius: inherit;
  clip-path: inset(0 round 999px);
}

.cart-toggle:active,
.icon-button:active,
.globe-button:active,
.menu-button:active {
  filter: brightness(0.98);
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 0.65rem 1.7rem rgba(69, 243, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.icon-button--accent span {
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 999px;
  background: var(--color-teal);
  box-shadow: 0 0 1.2rem rgba(69, 243, 255, 0.9);
}

.country-menu {
  position: relative;
}

.globe-button span {
  position: relative;
  z-index: 1;
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.globe-button span::before,
.globe-button span::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.globe-button span::before {
  width: 0.42rem;
  height: 1.1rem;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
  border-radius: 999px;
}

.globe-button span::after {
  width: 1.05rem;
  height: 1px;
  background: currentColor;
}

.country-dropdown {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 0;
  width: min(20rem, calc(100vw - 2rem));
  padding: 0.85rem;
  border: 1px solid rgba(69, 243, 255, 0.26);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 80% 12%, rgba(69, 243, 255, 0.13), transparent 12rem),
    rgba(2, 13, 22, 0.9);
  backdrop-filter: blur(22px);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.46), 0 0 2rem rgba(69, 243, 255, 0.1);
  opacity: 0;
  transform: translateY(-0.5rem) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.country-dropdown__close {
  display: none;
}

.country-dropdown.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.country-dropdown p {
  margin: 0 0 0.7rem;
  color: var(--color-teal-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.country-dropdown__list {
  display: grid;
  gap: 0.48rem;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  width: 100%;
  min-height: 3rem;
  padding: 0.58rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.85rem;
  color: rgba(235, 247, 250, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(69, 243, 255, 0.035)),
    rgba(255, 255, 255, 0.018);
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.country-option:hover {
  color: var(--color-white);
  border-color: rgba(69, 243, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.032);
  box-shadow:
    0 0.75rem 1.8rem rgba(0, 0, 0, 0.22),
    0 0 1.4rem rgba(69, 243, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: translateX(0.14rem) translateY(-1px);
}

.country-option__flag {
  display: grid;
  flex: 0 0 clamp(2.55rem, 8vw, 2.85rem);
  width: clamp(2.55rem, 8vw, 2.85rem);
  aspect-ratio: 4 / 3;
  place-items: center;
  border-radius: 0.72rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(69, 243, 255, 0.055)),
    rgba(255, 255, 255, 0.065);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0.55rem 1.1rem rgba(0, 0, 0, 0.25),
    0 0 0.95rem rgba(69, 243, 255, 0.08);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.country-option__flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.country-option:hover .country-option__flag {
  border-color: rgba(69, 243, 255, 0.38);
  transform: scale(1.035);
  box-shadow:
    0 0.65rem 1.3rem rgba(0, 0, 0, 0.28),
    0 0 1.35rem rgba(69, 243, 255, 0.26);
}

.country-option__name {
  display: flex;
  align-items: center;
  min-height: 1.55rem;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.menu-button {
  gap: 0.22rem;
  justify-items: center;
  align-content: center;
}

.menu-button span {
  position: relative;
  z-index: 1;
  display: block;
  width: 1.75rem;
  height: 0.3125rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(69, 243, 255, 0.95));
  box-shadow: 0 0 0.55rem rgba(69, 243, 255, 0.28);
  transform-origin: center;
  transition: box-shadow 220ms ease, background 220ms ease;
}

.menu-button:hover span {
  background: linear-gradient(90deg, var(--color-white), rgba(69, 243, 255, 1));
  box-shadow: 0 0 0.95rem rgba(69, 243, 255, 0.5);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 59rem);
  text-align: center;
  animation: fadeUp 0.9s ease;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.15rem;
  color: var(--color-teal-soft);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__tagline::before,
.hero__tagline::after {
  content: "";
  width: clamp(1.65rem, 5vw, 3.5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(69, 243, 255, 0.85));
}

.hero__tagline::after {
  background: linear-gradient(90deg, rgba(69, 243, 255, 0.85), transparent);
}

.hero__title {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8.2rem);
  font-weight: 700;
  line-height: 0.88;
  text-wrap: balance;
  text-shadow: 0 1.25rem 4rem rgba(0, 0, 0, 0.5);
}

.hero__title span {
  display: block;
  color: var(--color-teal);
  text-shadow: 0 0 2.35rem rgba(69, 243, 255, 0.4);
}

.hero__description {
  max-width: 39rem;
  margin: 1.45rem auto 0;
  color: var(--color-muted);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.75;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.4rem;
  min-height: 3.35rem;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(16px);
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease, color 300ms ease, border-color 300ms ease, filter 300ms ease;
}

.button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.03);
}

.button--primary {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.34), rgba(255, 255, 255, 0.08) 42%, rgba(69, 243, 255, 0.12)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1rem 2.8rem rgba(69, 243, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0.8rem 1.8rem rgba(255, 255, 255, 0.05) inset;
}

.button--primary:hover {
  box-shadow:
    0 1.25rem 3.2rem rgba(69, 243, 255, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 0.9rem 2rem rgba(255, 255, 255, 0.08) inset;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--color-teal-soft);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.18), rgba(255, 255, 255, 0.06) 44%, rgba(69, 243, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0.85rem 2.2rem rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.button--secondary:hover {
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.26), rgba(255, 255, 255, 0.08) 44%, rgba(69, 243, 255, 0.12)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 1.1rem 2.6rem rgba(69, 243, 255, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.scroll-indicator {
  position: absolute;
  bottom: 1.55rem;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: start center;
  width: 1.5rem;
  height: 2.65rem;
  border: 1px solid rgba(235, 247, 250, 0.42);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: fadeUp 0.9s ease;
}

.scroll-indicator span {
  width: 0.32rem;
  height: 0.32rem;
  margin-top: 0.48rem;
  border-radius: 999px;
  background: var(--color-teal);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.trust-stats {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  border-top: 0;
  padding: clamp(5.5rem, 9vw, 8.5rem) clamp(1.25rem, 5vw, 4.5rem);
  background: var(--section-surface);
}

.trust-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(69, 243, 255, 0.05), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.trust-stats__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  width: min(100%, 70rem);
  margin: 0 auto;
}

.stat-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 13.5rem;
  padding: clamp(2rem, 4vw, 3.1rem) 1.5rem;
  text-align: center;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 8% 0;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(69, 243, 255, 0.12), transparent 68%);
  filter: blur(0.25rem);
  opacity: 0.75;
}

.js .stat-card {
  opacity: 0;
  transform: translateY(1.35rem);
}

.js .stat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:nth-child(2) {
  transition-delay: 120ms;
}

.stat-card:nth-child(3) {
  transition-delay: 240ms;
}

.stat-card__number {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 8vw, 7.25rem);
  font-weight: 700;
  line-height: 0.85;
  text-shadow: 0 0 2.4rem rgba(69, 243, 255, 0.12);
}

.stat-card__label {
  position: relative;
  margin: 1.35rem 0 0;
  padding-top: 1.1rem;
  color: rgba(235, 247, 250, 0.72);
  font-size: clamp(0.75rem, 1.2vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
}

.stat-card__label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-teal), transparent);
  transform: translateX(-50%);
}

.our-story {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8.75rem) clamp(1.25rem, 5vw, 4.5rem);
  background: var(--section-surface-alt);
  background-position: center calc(50% + var(--section-parallax-y, 0px)), center;
}

.our-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(69, 243, 255, 0.05), transparent 38%, rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.our-story__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.75rem);
  width: min(100%, 72rem);
  margin: 0 auto;
}

.story-media,
.story-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 800ms ease, transform 800ms ease;
}

.js .story-media,
.js .story-copy {
  opacity: 0.72;
}

.js .story-media {
  transform: translate3d(-2rem, 0, 0);
}

.js .story-copy {
  transform: translate3d(2rem, 0, 0);
}

.js .our-story.is-visible .story-media,
.js .our-story.is-visible .story-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .our-story.is-visible .story-copy {
  transition-delay: 140ms;
}

.story-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(69, 243, 255, 0.28);
  border-radius: 1.6rem;
  background: rgba(4, 17, 27, 0.68);
  box-shadow:
    0 1.5rem 4.5rem rgba(0, 0, 0, 0.42),
    0 0 3rem rgba(69, 243, 255, 0.12);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.story-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: #000;
}

.story-card--placeholder {
  display: grid;
  aspect-ratio: 4 / 5;
  place-items: center;
  border-style: dashed;
}

.story-card--placeholder div {
  position: relative;
  z-index: 1;
  display: inline-grid;
  min-height: 3.2rem;
  place-items: center;
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(69, 243, 255, 0.18);
  border-radius: 999px;
  color: rgba(149, 251, 255, 0.86);
  background: rgba(1, 8, 14, 0.46);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
  margin: 0 0 1rem;
  color: #22f3ff;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-shadow: 0 0 12px rgba(34, 243, 255, 0.55);
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: clamp(4.4rem, 6vw, 5.65rem);
  height: 2px;
  opacity: 0.9;
  background: linear-gradient(90deg, transparent, #22f3ff, transparent);
  box-shadow: 0 0 0.7rem rgba(34, 243, 255, 0.34);
}

.story-copy h2 {
  max-width: 44rem;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.3vw, 5.45rem);
  font-weight: 700;
  line-height: 0.95;
  text-wrap: balance;
}

.story-copy__lead {
  max-width: 39rem;
  margin: 1.35rem 0 1.6rem;
  color: var(--color-teal);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 600;
  line-height: 1.7;
}

.story-text {
  max-width: 42rem;
  color: rgba(235, 247, 250, 0.72);
  font-size: 1rem;
  line-height: 1.85;
}

.story-text p {
  margin: 0 0 1rem;
}

.story-text__more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 560ms ease, opacity 420ms ease;
}

.our-story.is-expanded .story-text__more {
  max-height: 58rem;
  opacity: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  padding: 0.55rem 0;
  border: 0;
  color: var(--color-teal);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.read-more::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  margin-left: 0.75rem;
  background: currentColor;
  transition: width 180ms ease;
}

.read-more:hover {
  color: var(--color-teal-soft);
  text-shadow: 0 0 1.2rem rgba(69, 243, 255, 0.38);
}

.read-more:hover::after {
  width: 3rem;
}

.purpose {
  position: relative;
  overflow: hidden;
  padding: clamp(5.25rem, 8vw, 8rem) clamp(1.25rem, 5vw, 4.5rem);
  background: var(--section-surface-alt);
  background-position: center calc(50% + var(--section-parallax-y, 0px)), center;
}

.purpose::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(69, 243, 255, 0.13), transparent 18rem),
    radial-gradient(circle at 76% 78%, rgba(149, 251, 255, 0.08), transparent 20rem),
    linear-gradient(120deg, rgba(69, 243, 255, 0.05), transparent 42%, rgba(255, 255, 255, 0.025));
  pointer-events: none;
}

.purpose__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 72rem);
  margin: 0 auto;
}

.purpose__header {
  width: min(100%, 48rem);
  margin: 0 auto clamp(2.3rem, 5vw, 4rem);
  text-align: center;
}

.purpose__header .section-label {
  gap: 1.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.purpose__header .section-label::after {
  content: "";
  width: clamp(4.4rem, 6vw, 5.65rem);
  height: 2px;
  opacity: 0.9;
  background: linear-gradient(90deg, transparent, #22f3ff, transparent);
  box-shadow: 0 0 0.7rem rgba(34, 243, 255, 0.34);
}

.purpose__header h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6vw, 5.9rem);
  font-weight: 700;
  line-height: 0.95;
  text-wrap: balance;
}

.purpose__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.15rem, 3vw, 1.8rem);
}

.purpose-card {
  position: relative;
  overflow: hidden;
  min-height: 24rem;
  padding: clamp(1.65rem, 3vw, 2.35rem);
  border: 1px solid rgba(69, 243, 255, 0.2);
  border-radius: 1.35rem;
  background:
    linear-gradient(145deg, rgba(69, 243, 255, 0.12), rgba(255, 255, 255, 0.055) 38%, rgba(1, 8, 14, 0.62)),
    rgba(4, 17, 27, 0.72);
  box-shadow:
    0 1.55rem 4.25rem rgba(0, 0, 0, 0.36),
    0 0 2.6rem rgba(69, 243, 255, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.055) inset;
  backdrop-filter: blur(20px);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.purpose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent),
    radial-gradient(circle at 18% 0%, rgba(69, 243, 255, 0.22), transparent 16rem);
  opacity: 0.42;
  pointer-events: none;
}

.purpose-card::after {
  content: "";
  position: absolute;
  right: -4.5rem;
  bottom: -4.5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(69, 243, 255, 0.16), transparent 68%);
  filter: blur(0.2rem);
  pointer-events: none;
}

.js .purpose-card {
  opacity: 0;
  transform: translateY(1.65rem);
}

.js .purpose.is-visible .purpose-card {
  opacity: 1;
  transform: translateY(0);
}

.js .purpose.is-visible .purpose-card--vision {
  transition-delay: 120ms;
}

.purpose-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(69, 243, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(69, 243, 255, 0.17), rgba(255, 255, 255, 0.07) 38%, rgba(1, 8, 14, 0.66)),
    rgba(4, 17, 27, 0.78);
  box-shadow:
    0 1.85rem 4.8rem rgba(0, 0, 0, 0.42),
    0 0 3rem rgba(69, 243, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.js .purpose.is-visible .purpose-card:hover {
  transform: translateY(-0.35rem);
}

.purpose-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 3.75rem;
  height: 3.75rem;
  place-items: center;
  margin-bottom: clamp(1.25rem, 2vw, 1.65rem);
  border: 1px solid rgba(69, 243, 255, 0.3);
  border-radius: 1rem;
  color: var(--color-teal);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.2), rgba(255, 255, 255, 0.075)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 0.85rem 2rem rgba(69, 243, 255, 0.13),
    0 0 1.25rem rgba(69, 243, 255, 0.1) inset;
}

.purpose-card__icon--heart::before,
.purpose-card__icon--heart::after {
  content: "";
  position: absolute;
}

.purpose-card__icon--heart::before {
  z-index: 2;
  width: 1.85rem;
  height: 1.68rem;
  background: currentColor;
  clip-path: polygon(
    50% 100%,
    10% 61%,
    3% 50%,
    0 36%,
    4% 21%,
    15% 9%,
    29% 5%,
    42% 10%,
    50% 22%,
    58% 10%,
    71% 5%,
    85% 9%,
    96% 21%,
    100% 36%,
    97% 50%,
    90% 61%
  );
  filter: drop-shadow(0 0 0.85rem rgba(69, 243, 255, 0.76));
}

.purpose-card__icon--heart::after {
  z-index: 1;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(69, 243, 255, 0.32), transparent 66%);
  filter: blur(0.08rem);
}

.purpose-card__icon--star::before {
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  background: currentColor;
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
  filter: drop-shadow(0 0 0.75rem rgba(69, 243, 255, 0.72));
}

.purpose-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
}

.purpose-card p {
  position: relative;
  z-index: 1;
  max-width: 33rem;
  margin: 0;
  color: rgba(235, 247, 250, 0.74);
  font-size: clamp(0.98rem, 1.45vw, 1.08rem);
  line-height: 1.78;
}

.purpose-card p + p {
  margin-top: 1rem;
}

.services {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8.75rem) clamp(1.25rem, 5vw, 4.5rem);
  background: var(--section-surface);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(69, 243, 255, 0.04), transparent);
  pointer-events: none;
}

.services__header {
  position: relative;
  z-index: 1;
  width: min(100%, 48rem);
  margin: 0 auto clamp(2.6rem, 5vw, 4.25rem);
  text-align: center;
}

.services__header .section-label {
  gap: 1.75rem;
  justify-content: center;
  margin-bottom: 1.45rem;
  color: #22f3ff;
  font-size: clamp(1.55rem, 2.1vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.35em;
  text-shadow:
    0 0 10px rgba(34, 243, 255, 0.7),
    0 0 25px rgba(34, 243, 255, 0.35);
}

.services__header .section-label::before {
  width: clamp(5.6rem, 8vw, 7.5rem);
  height: 2px;
  opacity: 0.9;
  background: linear-gradient(90deg, transparent, #22f3ff, transparent);
  box-shadow: 0 0 0.9rem rgba(34, 243, 255, 0.42);
}

.services__header .section-label::after {
  content: "";
  width: clamp(5.6rem, 8vw, 7.5rem);
  height: 2px;
  opacity: 0.9;
  background: linear-gradient(90deg, transparent, #22f3ff, transparent);
  box-shadow: 0 0 0.9rem rgba(34, 243, 255, 0.42);
}

.services__header h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6vw, 5.9rem);
  font-weight: 700;
  line-height: 0.95;
  text-wrap: balance;
}

.services__header p:last-child {
  max-width: 38rem;
  margin: 1.2rem auto 0;
  color: rgba(235, 247, 250, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.package-filters {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  width: min(100%, 58rem);
  margin: 0 auto clamp(1.8rem, 4vw, 2.6rem);
}

.package-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(69, 243, 255, 0.18);
  border-radius: 999px;
  color: rgba(235, 247, 250, 0.72);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.14), rgba(255, 255, 255, 0.05) 45%, rgba(69, 243, 255, 0.06)),
    rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.package-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(69, 243, 255, 0.46);
  color: var(--color-teal);
  background: rgba(69, 243, 255, 0.08);
}

.package-filter.is-active {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.34), rgba(255, 255, 255, 0.1) 45%, rgba(69, 243, 255, 0.16)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 0.95rem 2.4rem rgba(69, 243, 255, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.packages-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.4rem);
  width: min(100%, 76rem);
  margin: 0 auto;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 0 1 calc((100% - (clamp(1rem, 2vw, 1.4rem) * 2)) / 3);
  min-width: 18rem;
  min-height: 31rem;
  border: 1px solid rgba(69, 243, 255, 0.16);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(8, 26, 39, 0.74), rgba(1, 8, 14, 0.86));
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.28);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.js .package-card {
  opacity: 0.72;
  transform: translateY(1.3rem);
}

.js .package-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.package-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(69, 243, 255, 0.42);
  box-shadow: 0 1.75rem 4rem rgba(0, 0, 0, 0.34), 0 0 2.4rem rgba(69, 243, 255, 0.08);
}

.package-card.is-filtering-out {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}

.package-card.is-hidden {
  display: none;
}

.packages-empty {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  margin: clamp(1.6rem, 3vw, 2.25rem) auto 0;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(34, 243, 255, 0.22);
  border-radius: 1rem;
  color: rgba(235, 247, 250, 0.76);
  background:
    linear-gradient(135deg, rgba(34, 243, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(3, 16, 26, 0.54);
  box-shadow:
    0 1.4rem 3.5rem rgba(0, 0, 0, 0.26),
    0 0 1.8rem rgba(34, 243, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.packages-empty.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.packages-empty[hidden] {
  display: none;
}

.package-card__media {
  flex: 0 0 auto;
  display: grid;
  aspect-ratio: 16 / 10;
  place-items: center;
  margin: 0.75rem;
  border: 1px dashed rgba(69, 243, 255, 0.44);
  border-radius: 0.85rem;
  color: rgba(149, 251, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.08), transparent),
    rgba(1, 9, 15, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.package-card__media:has(img) {
  border-style: solid;
  border-color: rgba(69, 243, 255, 0.18);
  background: rgba(1, 9, 15, 0.72);
  overflow: hidden;
}

.package-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.package-card__body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.05rem;
  flex: 1;
  padding: 0.85rem 1.15rem 1.25rem;
}

.package-card__topline {
  display: grid;
  gap: 0.75rem;
}

.package-card h3 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
}

.package-card p {
  margin: 0;
  min-height: 3.2rem;
  color: rgba(235, 247, 250, 0.68);
  font-size: 0.94rem;
  line-height: 1.7;
}

.price-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 2rem;
  padding: 0.46rem 0.72rem;
  border: 1px solid rgba(245, 198, 92, 0.34);
  border-radius: 999px;
  color: #f5c65c;
  background: rgba(245, 198, 92, 0.08);
  box-shadow: 0 0 1.6rem rgba(245, 198, 92, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}

.package-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.cake-card__actions {
  grid-template-columns: 1fr;
}

.cake-card__media {
  aspect-ratio: 4 / 5;
  min-height: 12rem;
  padding: 0.85rem;
  border-style: dashed;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(69, 243, 255, 0.11), transparent 8rem),
    linear-gradient(135deg, rgba(69, 243, 255, 0.08), transparent),
    rgba(0, 20, 30, 0.45);
  text-align: center;
}

.cake-card__media:has(img) {
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  background:
    radial-gradient(circle at 50% 35%, rgba(69, 243, 255, 0.09), transparent 8rem),
    rgba(0, 20, 30, 0.45);
}

.cake-card__media img {
  width: 100%;
  height: 100%;
  border-radius: 0.72rem;
  object-fit: contain !important;
  object-position: center;
}

.cake-card__media span,
.cake-summary__media span {
  max-width: 12rem;
  color: rgba(149, 251, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.package-button,
.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.package-button:hover,
.checkout-button:hover {
  transform: translateY(-2px);
}

.package-button--ghost {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--color-teal-soft);
}

.package-button--ghost:hover {
  color: var(--color-white);
}

.package-button--solid,
.checkout-button {
  color: var(--color-white);
}

.package-button--solid:hover,
.checkout-button:hover {
  box-shadow: 0 1.1rem 2.4rem rgba(69, 243, 255, 0.24);
}

.modal-backdrop,
.cart-backdrop,
.checkout-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.modal-backdrop.is-open,
.cart-backdrop.is-open,
.checkout-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.checkout-backdrop[hidden] {
  display: none;
}

.package-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  width: min(calc(100% - 2rem), 68rem);
  max-height: min(88vh, 54rem);
  overflow: auto;
  border: 1px solid rgba(69, 243, 255, 0.22);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 85% 18%, rgba(69, 243, 255, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(7, 25, 37, 0.98), rgba(1, 8, 14, 0.98));
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -48%) scale(0.98);
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms ease;
}

.modal-backdrop.is-open .package-modal {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: relative;
  display: inline-grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border: 1px solid rgba(69, 243, 255, 0.36);
  border-radius: 999px;
  color: var(--color-teal);
  background: rgba(2, 13, 22, 0.46);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-close:hover {
  transform: translateY(-1px);
  border-color: rgba(69, 243, 255, 0.78);
  background: rgba(69, 243, 255, 0.1);
}

.package-modal > .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.package-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.cake-modal__content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.82fr);
  gap: clamp(1.35rem, 4vw, 2.6rem);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.cake-modal__details h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 4.6vw, 4.2rem);
  font-weight: 700;
  line-height: 0.98;
}

.cake-options {
  display: grid;
  gap: 1.05rem;
  margin-top: 1.2rem;
}

.cake-option-group {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.cake-option-group legend {
  color: rgba(235, 247, 250, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cake-option-group legend strong {
  color: var(--color-teal);
}

.cake-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.cake-choice {
  cursor: pointer;
}

.cake-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cake-choice span {
  display: grid;
  min-height: 4.45rem;
  align-content: center;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(69, 243, 255, 0.16);
  border-radius: 0.95rem;
  color: rgba(235, 247, 250, 0.82);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(1, 8, 14, 0.52);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.cake-choice strong {
  color: var(--color-white);
  font-size: 0.98rem;
}

.cake-choice small {
  color: rgba(235, 247, 250, 0.56);
  font-size: 0.76rem;
  font-weight: 800;
}

.cake-choice input:checked + span,
.cake-choice:hover span {
  border-color: rgba(69, 243, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(1, 8, 14, 0.66);
  box-shadow: 0 0 1.4rem rgba(69, 243, 255, 0.14);
  transform: translateY(-1px);
}

.cake-summary {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(69, 243, 255, 0.16);
  border-radius: 1.05rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(69, 243, 255, 0.12), transparent 10rem),
    rgba(1, 8, 14, 0.48);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.22);
}

.cake-summary__media {
  margin: 0;
  display: flex;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  max-height: min(58vh, 32rem);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.75rem;
  border-style: solid;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 50% 25%, rgba(69, 243, 255, 0.12), transparent 9rem),
    rgba(0, 20, 30, 0.45);
}

.cake-summary__media--image {
  background-image: none !important;
}

.media-placeholder.cake-summary__media img,
.cake-summary__media img {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: 100% !important;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center;
  background: transparent;
  border-radius: 1rem;
}

.cake-summary h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cake-summary dl {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.cake-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cake-summary dt {
  color: rgba(235, 247, 250, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
}

.cake-summary dd {
  margin: 0;
  color: var(--color-white);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: right;
}

.cake-modal__actions {
  display: grid;
  gap: 0.75rem;
}

.package-modal__details h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.95;
}

.package-modal__description {
  margin: 1rem 0 1rem;
  color: rgba(235, 247, 250, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.package-modal__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.1rem;
  margin-top: 1rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(69, 243, 255, 0.24);
  border-radius: 999px;
  color: var(--color-teal);
  background: rgba(69, 243, 255, 0.08);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 0 1.2rem rgba(69, 243, 255, 0.1);
}

.package-modal__badge[hidden],
.package-modal__note[hidden] {
  display: none;
}

.package-modal__note {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(69, 243, 255, 0.18);
  border-radius: 0.85rem;
  color: rgba(235, 247, 250, 0.78);
  background: rgba(69, 243, 255, 0.06);
  font-size: 0.9rem;
  line-height: 1.55;
}

.package-modal__details h3 {
  margin: 1.5rem 0 0.8rem;
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.package-modal__list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  color: rgba(235, 247, 250, 0.76);
  list-style: none;
}

.package-modal__list li {
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.55;
}

.package-modal__list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--color-teal);
  box-shadow: 0 0 1rem rgba(69, 243, 255, 0.6);
}

.package-modal__cart {
  margin-top: 1.5rem;
  min-width: 11rem;
}

.package-modal__media {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.media-placeholder {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  border: 1px dashed rgba(69, 243, 255, 0.55);
  border-radius: 1rem;
  color: rgba(149, 251, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.08), transparent),
    rgba(1, 9, 15, 0.7);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
}

.media-placeholder--image {
  aspect-ratio: 3 / 4;
  border-style: solid;
  border-color: rgba(69, 243, 255, 0.18);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.08), transparent),
    rgba(1, 9, 15, 0.86);
}

.media-placeholder--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.media-placeholder.cake-summary__media {
  display: flex;
  aspect-ratio: 4 / 5;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.75rem;
  background:
    radial-gradient(circle at 50% 25%, rgba(69, 243, 255, 0.12), transparent 9rem),
    rgba(0, 20, 30, 0.45);
}

.media-placeholder.cake-summary__media img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center;
}

.media-placeholder--video {
  gap: 0.7rem;
}

.media-placeholder--video-ready {
  aspect-ratio: 9 / 16;
  justify-self: center;
  width: min(100%, 20rem);
  overflow: hidden;
  border-style: solid;
  border-color: rgba(69, 243, 255, 0.18);
  background: rgba(1, 9, 15, 0.86);
}

.media-placeholder--video-ready video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.media-placeholder--slideshow {
  isolation: isolate;
}

.package-slideshow__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(69, 243, 255, 0.3);
  border-radius: 999px;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(1, 9, 15, 0.76);
  box-shadow: 0 0 1.1rem rgba(69, 243, 255, 0.16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.package-slideshow__arrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.package-slideshow__arrow--prev {
  left: 0.75rem;
}

.package-slideshow__arrow--prev::before {
  transform: rotate(-45deg);
}

.package-slideshow__arrow--next {
  right: 0.75rem;
}

.package-slideshow__arrow--next::before {
  transform: rotate(135deg);
}

.package-slideshow__arrow:hover {
  border-color: rgba(69, 243, 255, 0.68);
  box-shadow: 0 0 1.35rem rgba(69, 243, 255, 0.3);
  transform: translateY(-50%) scale(1.04);
}

.package-slideshow__dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  z-index: 2;
  display: flex;
  gap: 0.42rem;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(1, 9, 15, 0.72);
  transform: translateX(-50%);
}

.package-slideshow__dot {
  width: 0.48rem;
  height: 0.48rem;
  border: 0;
  border-radius: 999px;
  background: rgba(235, 247, 250, 0.38);
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.package-slideshow__dot.is-active,
.package-slideshow__dot:hover {
  background: var(--color-teal);
  box-shadow: 0 0 0.75rem rgba(69, 243, 255, 0.55);
  transform: scale(1.15);
}

.media-placeholder__play {
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  border: 1px solid rgba(69, 243, 255, 0.42);
  border-radius: 999px;
  background: rgba(69, 243, 255, 0.08);
}

.media-placeholder__play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 1.15rem 0 0 1.45rem;
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 1rem solid var(--color-teal);
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 27rem);
  height: 100vh;
  padding: 1.35rem;
  border-left: 1px solid rgba(69, 243, 255, 0.18);
  background:
    radial-gradient(circle at 80% 12%, rgba(69, 243, 255, 0.12), transparent 16rem),
    linear-gradient(180deg, #061521, #01070c);
  box-shadow: -1.5rem 0 5rem rgba(0, 0, 0, 0.55);
  transform: translateX(104%);
  transition: transform 260ms ease;
}

.cart-panel.is-open {
  transform: translateX(0);
}

.cart-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
}

.cart-panel__header h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 0.95;
}

.cart-panel__items {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  overflow: auto;
  padding-right: 0.25rem;
}

.cart-panel__empty {
  display: none;
  place-items: center;
  color: rgba(235, 247, 250, 0.62);
  text-align: center;
}

.cart-panel__empty.is-visible {
  display: grid;
}

.cart-item {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(69, 243, 255, 0.14);
  border-radius: 0.9rem;
  background: rgba(1, 8, 14, 0.58);
}

.cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cart-item__content,
.checkout-summary__content {
  flex: 1 1 auto;
  min-width: 0;
}

.cart-item__image,
.checkout-summary__image {
  flex: 0 0 auto;
  display: block;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(69, 243, 255, 0.2);
  border-radius: 0.7rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(69, 243, 255, 0.12), transparent 4rem),
    rgba(1, 9, 15, 0.72);
  box-shadow: 0 0.75rem 1.6rem rgba(0, 0, 0, 0.22);
}

.cart-item__image {
  width: 4.7rem;
  aspect-ratio: 4 / 3;
}

.checkout-summary__image {
  width: 4.1rem;
  aspect-ratio: 1;
}

.cart-item__image img,
.checkout-summary__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(1, 9, 15, 0.82);
}

.cart-item h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 0.98rem;
  line-height: 1.35;
}

.cart-item p {
  margin: 0.35rem 0 0;
  color: #f5c65c;
  font-size: 0.82rem;
  font-weight: 900;
}

.cart-item .cart-item__details {
  color: rgba(235, 247, 250, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.55;
}

.cart-remove {
  border: 0;
  color: rgba(235, 247, 250, 0.62);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.cart-remove:hover {
  color: var(--color-teal);
}

.cart-quantity {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(69, 243, 255, 0.2);
  border-radius: 999px;
  padding: 0.3rem;
}

.cart-quantity button {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #021016;
  background: var(--color-teal);
  font-weight: 900;
  cursor: pointer;
}

.cart-quantity span {
  min-width: 1.5rem;
  color: var(--color-white);
  text-align: center;
  font-weight: 900;
}

.cart-panel__footer {
  display: grid;
  gap: 1rem;
  padding-top: 1.2rem;
}

.cart-panel__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(235, 247, 250, 0.68);
}

.cart-panel__total strong {
  color: #f5c65c;
  font-size: 1.05rem;
}

.checkout-backdrop {
  z-index: 65;
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow: auto;
}

.checkout-flow {
  position: relative;
  width: min(100%, 72rem);
  max-height: min(92vh, 58rem);
  overflow: auto;
  border: 1px solid rgba(69, 243, 255, 0.22);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(69, 243, 255, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(7, 25, 37, 0.98), rgba(1, 8, 14, 0.98));
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.72), 0 0 2.6rem rgba(69, 243, 255, 0.1);
  transform: translateY(0.8rem) scale(0.98);
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms ease;
}

.checkout-backdrop.is-open .checkout-flow {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.checkout-flow > .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.checkout-step {
  padding: clamp(1.25rem, 4vw, 3rem);
  padding-top: clamp(4rem, 6vw, 4.75rem);
}

.checkout-step[hidden] {
  display: none;
}

.checkout-flow__header {
  max-width: 44rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.35rem);
}

.checkout-flow__header h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.95;
}

.checkout-flow__header > p:last-child {
  margin: 1rem 0 0;
  color: rgba(235, 247, 250, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.checkout-flow__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.checkout-form,
.checkout-summary,
.payment-method-panel,
.payment-placeholder {
  border: 1px solid rgba(69, 243, 255, 0.18);
  border-radius: 1.2rem;
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(3, 16, 26, 0.58);
  box-shadow:
    0 1.4rem 3.6rem rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(18px);
}

.checkout-form {
  padding: clamp(1rem, 3vw, 1.45rem);
}

.checkout-flow__continue {
  width: 100%;
  min-height: 3.25rem;
  margin-top: 0.75rem;
}

.checkout-summary {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.25rem);
}

.checkout-summary h3 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
}

.checkout-summary__items {
  display: grid;
  gap: 0.75rem;
}

.checkout-summary__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-summary__item h4 {
  margin: 0;
  color: var(--color-white);
  font-size: 0.95rem;
  line-height: 1.3;
}

.checkout-summary__item p,
.checkout-summary__empty {
  margin: 0.25rem 0 0;
  color: rgba(235, 247, 250, 0.62);
  font-size: 0.86rem;
  line-height: 1.5;
}

.checkout-summary__item strong {
  flex: 0 0 auto;
  color: #f5c65c;
  font-size: 0.9rem;
}

.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.25rem;
  color: rgba(235, 247, 250, 0.68);
}

.checkout-summary__total strong {
  color: #f5c65c;
}

.payment-placeholder {
  display: grid;
  min-height: 18rem;
  place-items: center;
  border-style: dashed;
  color: rgba(149, 251, 255, 0.82);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.payment-method-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.25rem);
}

.payment-method-panel h3,
.bank-details h4 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
}

.payment-methods,
.installment-methods {
  display: grid;
  gap: 0.75rem;
}

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

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

.installment-methods[hidden] {
  display: none;
}

.payment-method {
  display: grid;
  gap: 0.3rem;
  min-height: 5rem;
  padding: 0.95rem;
  border: 1px solid rgba(69, 243, 255, 0.16);
  border-radius: 1rem;
  color: var(--color-white);
  background: rgba(1, 8, 14, 0.48);
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.installment-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(69, 243, 255, 0.16);
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(1, 8, 14, 0.48);
  font-weight: 900;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.installment-method span {
  color: var(--color-teal);
}

.payment-method__title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
  line-height: 1.2;
}

.payment-method__icon {
  display: grid;
  flex: 0 0 1.7rem;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border: 1px solid rgba(69, 243, 255, 0.2);
  border-radius: 0.55rem;
  color: rgba(235, 247, 250, 0.9);
  background:
    linear-gradient(145deg, rgba(69, 243, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 0.85rem rgba(34, 243, 255, 0.08);
  transition: color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.payment-method__icon svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.payment-method small {
  color: rgba(235, 247, 250, 0.58);
  font-size: 0.78rem;
  line-height: 1.4;
}

.payment-method:hover,
.payment-method.is-active,
.installment-method:hover,
.installment-method.is-active {
  transform: translateY(-2px);
  border-color: rgba(34, 243, 255, 0.68);
  background: rgba(34, 243, 255, 0.09);
  box-shadow: 0 0 1.8rem rgba(34, 243, 255, 0.18);
}

.payment-method:hover .payment-method__icon,
.payment-method.is-active .payment-method__icon {
  color: var(--color-white);
  border-color: rgba(69, 243, 255, 0.48);
  box-shadow:
    0 0 1.1rem rgba(34, 243, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.payment-breakdown,
.bank-details {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(69, 243, 255, 0.16);
  border-radius: 1rem;
  background: rgba(1, 8, 14, 0.42);
}

.payment-breakdown div,
.bank-details dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(235, 247, 250, 0.68);
}

.payment-breakdown strong,
.bank-details dd {
  margin: 0;
  color: var(--color-white);
  text-align: right;
}

.payment-breakdown__final {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-breakdown__final strong {
  color: #f5c65c;
}

.bank-details[hidden] {
  display: none;
}

.bank-details dl {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.bank-details dt {
  color: var(--color-teal-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bank-details p {
  margin: 0;
  color: rgba(235, 247, 250, 0.68);
  font-size: 0.88rem;
  line-height: 1.6;
}

.bank-details button {
  margin-top: 0.45rem;
  border: 1px solid rgba(69, 243, 255, 0.24);
  border-radius: 999px;
  color: var(--color-teal);
  background: rgba(69, 243, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.38rem 0.65rem;
  cursor: pointer;
}

.customer-summary dl {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.customer-summary div {
  display: grid;
  gap: 0.2rem;
}

.customer-summary dt {
  color: var(--color-teal-soft);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.customer-summary dd {
  margin: 0;
  color: rgba(235, 247, 250, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkout-flow__actions {
  display: grid;
  gap: 0.75rem;
}

.checkout-flow__actions .checkout-button,
.checkout-flow__actions .package-button {
  width: 100%;
  min-height: 3.05rem;
}

.payment-action[hidden] {
  display: none;
}

.gallery {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8.75rem) clamp(1.25rem, 5vw, 4.5rem);
  background: var(--section-surface-alt);
  background-position:
    center calc(28% + var(--section-parallax-y, 0px)),
    center calc(62% + var(--section-parallax-y, 0px)),
    center;
}

.parallax-backdrop {
  will-change: background-position;
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.018), transparent 38%, rgba(69, 243, 255, 0.035));
  pointer-events: none;
}

.gallery__header {
  position: relative;
  z-index: 1;
  width: min(100%, 48rem);
  margin: 0 auto clamp(2.7rem, 5vw, 4.25rem);
  text-align: center;
}

.gallery__header .section-label {
  justify-content: center;
}

.gallery__header .section-label::after {
  content: "";
  width: clamp(4.4rem, 6vw, 5.65rem);
  height: 2px;
  opacity: 0.9;
  background: linear-gradient(90deg, transparent, #22f3ff, transparent);
  box-shadow: 0 0 0.7rem rgba(34, 243, 255, 0.34);
}

.gallery__header h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6vw, 5.9rem);
  font-weight: 700;
  line-height: 0.95;
  text-wrap: balance;
}

.gallery__header p:last-child {
  max-width: 37rem;
  margin: 1.2rem auto 0;
  color: rgba(235, 247, 250, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.gallery-carousel,
.gallery-dots {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms ease, transform 760ms ease;
}

.js .gallery-carousel,
.js .gallery-dots {
  opacity: 0.72;
  transform: translateY(1.4rem);
}

.js .gallery.is-visible .gallery-carousel,
.js .gallery.is-visible .gallery-dots {
  opacity: 1;
  transform: translateY(0);
}

.gallery-carousel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 72rem);
  height: clamp(28rem, 52vw, 39rem);
  margin: 0 auto;
  perspective: 1100px;
}

.gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  overflow: hidden;
  width: clamp(15rem, 30vw, 25rem);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(69, 243, 255, 0.2);
  border-radius: 1.45rem;
  color: rgba(149, 251, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(8, 26, 39, 0.88), rgba(1, 8, 14, 0.92));
  box-shadow: 0 1.2rem 3.5rem rgba(0, 0, 0, 0.35);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%) scale(0.62);
  opacity: 0;
  filter: blur(0.35rem) brightness(0.48);
  pointer-events: none;
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    filter 520ms ease,
    border-color 420ms ease,
    box-shadow 420ms ease;
}

.gallery-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 46%, rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.gallery-slide__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide.is-active {
  z-index: 5;
  border-color: rgba(69, 243, 255, 0.5);
  box-shadow: 0 1.8rem 5rem rgba(0, 0, 0, 0.42), 0 0 3.2rem rgba(69, 243, 255, 0.18);
  filter: blur(0) brightness(1);
  opacity: 1;
  transform: translate(-50%, -50%) translateX(0) rotateY(0deg) scale(1);
  pointer-events: auto;
}

.gallery-slide.is-prev {
  z-index: 3;
  opacity: 0.64;
  transform: translate(-50%, -50%) translateX(clamp(-18rem, -28vw, -12rem)) rotateY(18deg) scale(0.78);
}

.gallery-slide.is-next {
  z-index: 3;
  opacity: 0.64;
  transform: translate(-50%, -50%) translateX(clamp(12rem, 28vw, 18rem)) rotateY(-18deg) scale(0.78);
}

.gallery-slide.is-far-prev {
  z-index: 2;
  opacity: 0.24;
  transform: translate(-50%, -50%) translateX(clamp(-25rem, -42vw, -17rem)) rotateY(24deg) scale(0.62);
}

.gallery-slide.is-far-next {
  z-index: 2;
  opacity: 0.24;
  transform: translate(-50%, -50%) translateX(clamp(17rem, 42vw, 25rem)) rotateY(-24deg) scale(0.62);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(69, 243, 255, 0.34);
  border-radius: 999px;
  color: var(--color-teal);
  background: rgba(2, 13, 22, 0.52);
  backdrop-filter: blur(16px);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.gallery-arrow:hover {
  border-color: rgba(69, 243, 255, 0.82);
  background: rgba(69, 243, 255, 0.1);
}

.gallery-arrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.gallery-arrow--prev {
  left: 0;
}

.gallery-arrow--prev::before {
  transform: rotate(-135deg);
}

.gallery-arrow--next {
  right: 0;
}

.gallery-arrow--next::before {
  transform: rotate(45deg);
}

.gallery-dots {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  width: min(100%, 38rem);
  margin: 1.9rem auto 0;
}

.gallery-dot {
  width: 0.62rem;
  height: 0.62rem;
  border: 1px solid rgba(69, 243, 255, 0.42);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.gallery-dot.is-active {
  width: 2rem;
  background: var(--color-teal);
  box-shadow: 0 0 1.3rem rgba(69, 243, 255, 0.5);
}

.countries {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8.75rem) clamp(1.25rem, 5vw, 4.5rem);
  background: var(--section-surface);
}

.countries::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(69, 243, 255, 0.04), transparent);
  pointer-events: none;
}

.countries__header {
  position: relative;
  z-index: 1;
  width: min(100%, 49rem);
  margin: 0 auto clamp(2.7rem, 5vw, 4.25rem);
  text-align: center;
}

.countries__header .section-label {
  justify-content: center;
}

.countries__header .section-label::after {
  content: "";
  width: clamp(4.4rem, 6vw, 5.65rem);
  height: 2px;
  opacity: 0.9;
  background: linear-gradient(90deg, transparent, #22f3ff, transparent);
  box-shadow: 0 0 0.7rem rgba(34, 243, 255, 0.34);
}

.countries__header h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6vw, 5.9rem);
  font-weight: 700;
  line-height: 0.95;
  text-wrap: balance;
  text-shadow: 0 1.25rem 4rem rgba(0, 0, 0, 0.42);
}

.countries__header p:last-child {
  max-width: 35rem;
  margin: 1.2rem auto 0;
  color: rgba(235, 247, 250, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.countries__header,
.countries-carousel,
.countries-dots {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms ease, transform 760ms ease;
}

.js .countries__header,
.js .countries-carousel,
.js .countries-dots {
  opacity: 0.72;
  transform: translateY(1.4rem);
}

.js .countries.is-visible .countries__header,
.js .countries.is-visible .countries-carousel,
.js .countries.is-visible .countries-dots {
  opacity: 1;
  transform: translateY(0);
}

.countries-carousel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 78rem);
  margin: 0 auto;
}

.countries-viewport {
  width: min(100%, 68rem);
  overflow: hidden;
  padding: 1.6rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.countries-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.45rem);
  will-change: transform;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.country-card {
  position: relative;
  display: grid;
  flex: 0 0 clamp(10rem, 17vw, 12.6rem);
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  gap: 0.9rem;
  padding: 1.1rem;
  border: 1px solid rgba(69, 243, 255, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 22%, rgba(69, 243, 255, 0.24), transparent 50%),
    linear-gradient(180deg, rgba(10, 42, 58, 0.74), rgba(3, 16, 26, 0.7));
  backdrop-filter: blur(18px);
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.28), 0 0 2.4rem rgba(69, 243, 255, 0.13);
  text-align: center;
  opacity: 1;
  transform: scale(0.88);
  transition: opacity 520ms ease, transform 520ms ease, border-color 240ms ease, box-shadow 240ms ease, filter 520ms ease;
}

.country-card::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(69, 243, 255, 0.22);
  border-radius: inherit;
  pointer-events: none;
}

.js .country-card {
  opacity: 0;
  transform: translateY(1rem) scale(0.86);
}

.js .countries.is-visible .country-card {
  opacity: 0.72;
  transform: translateY(0) scale(0.88);
}

.countries.is-visible .country-card:nth-child(2) {
  transition-delay: 70ms;
}

.countries.is-visible .country-card:nth-child(3) {
  transition-delay: 140ms;
}

.countries.is-visible .country-card:nth-child(4) {
  transition-delay: 210ms;
}

.countries.is-visible .country-card:nth-child(5) {
  transition-delay: 280ms;
}

.countries.is-visible .country-card:nth-child(6) {
  transition-delay: 350ms;
}

.countries.is-visible .country-card:nth-child(7) {
  transition-delay: 420ms;
}

.countries.is-visible .country-card:nth-child(8) {
  transition-delay: 490ms;
}

.countries.is-visible .country-card:nth-child(9) {
  transition-delay: 560ms;
}

.country-card:hover {
  transform: translateY(-0.25rem) scale(1.02);
  border-color: rgba(69, 243, 255, 0.86);
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.34), 0 0 3.2rem rgba(69, 243, 255, 0.28);
}

.country-card__flag {
  display: grid;
  width: clamp(4.1rem, 6vw, 5.45rem);
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.62rem;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0.85rem 1.4rem rgba(0, 0, 0, 0.32), 0 0 1.35rem rgba(69, 243, 255, 0.22);
}

.country-card__flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-card h3 {
  max-width: 8.4rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.country-card.is-active {
  opacity: 1;
  transform: scale(1.06);
  border-color: rgba(69, 243, 255, 0.95);
  box-shadow: 0 1.6rem 3.8rem rgba(0, 0, 0, 0.38), 0 0 4rem rgba(69, 243, 255, 0.34);
  filter: brightness(1);
}

.country-card.is-near {
  opacity: 0.86;
  transform: scale(0.94);
  filter: brightness(0.9);
}

.country-card.is-far {
  opacity: 0.58;
  filter: brightness(0.76);
}

.countries-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(69, 243, 255, 0.34);
  border-radius: 999px;
  color: var(--color-teal);
  background: rgba(2, 13, 22, 0.52);
  backdrop-filter: blur(16px);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.countries-arrow:hover {
  border-color: rgba(69, 243, 255, 0.82);
  background: rgba(69, 243, 255, 0.1);
}

.countries-arrow::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.countries-arrow--prev {
  left: 0;
}

.countries-arrow--prev::before {
  transform: rotate(-135deg);
}

.countries-arrow--next {
  right: 0;
}

.countries-arrow--next::before {
  transform: rotate(45deg);
}

.countries-dots {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.3rem auto 0;
}

.countries-dot {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgba(69, 243, 255, 0.42);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.countries-dot.is-active {
  width: 1.8rem;
  background: var(--color-teal);
  box-shadow: 0 0 1.3rem rgba(69, 243, 255, 0.5);
}

.reviews {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8.75rem) 0;
  background: var(--section-surface-alt);
}

.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.018), transparent 42%, rgba(69, 243, 255, 0.035));
  pointer-events: none;
}

.reviews__header {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, 52rem);
  margin: 0 auto clamp(2.7rem, 5vw, 4.2rem);
  text-align: center;
}

.reviews__header .section-label {
  justify-content: center;
}

.reviews__header .section-label::after {
  content: "";
  width: clamp(4.4rem, 6vw, 5.65rem);
  height: 2px;
  opacity: 0.9;
  background: linear-gradient(90deg, transparent, #22f3ff, transparent);
  box-shadow: 0 0 0.7rem rgba(34, 243, 255, 0.34);
}

.reviews__header h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6vw, 5.9rem);
  font-weight: 700;
  line-height: 0.95;
  text-wrap: balance;
}

.reviews__header h2 span {
  color: var(--color-teal);
  text-shadow: 0 0 2.3rem rgba(69, 243, 255, 0.28);
}

.reviews__header p:last-child {
  max-width: 38rem;
  margin: 1.2rem auto 0;
  color: rgba(235, 247, 250, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.reviews-marquee {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.reviews__cta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 0 1.25rem;
}

.reviews__button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.55rem;
  border: 1px solid rgba(34, 243, 255, 0.35);
  border-radius: 999px;
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(34, 243, 255, 0.2), rgba(255, 255, 255, 0.075) 46%, rgba(34, 243, 255, 0.08)),
    rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(14px);
  box-shadow:
    0 0 15px rgba(34, 243, 255, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 0.8rem 1.8rem rgba(255, 255, 255, 0.045) inset;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, filter 300ms ease;
}

.reviews__button::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 58%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  filter: blur(0.55rem);
  opacity: 0;
  transform: translateX(-25%) rotate(18deg);
  animation: liquidButtonSheen 6.5s ease-in-out infinite;
  pointer-events: none;
}

.reviews__button:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(34, 243, 255, 0.65);
  filter: brightness(1.08);
  box-shadow:
    0 0 2.1rem rgba(34, 243, 255, 0.3),
    0 1.2rem 2.8rem rgba(34, 243, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0.9rem 2rem rgba(255, 255, 255, 0.065) inset;
}

.reviews__button:active {
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 0 1.2rem rgba(34, 243, 255, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.review-row {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.review-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 0.2rem 0;
  animation: reviewMarqueeRight 58s linear infinite;
}

.review-row--left .review-track {
  animation-name: reviewMarqueeLeft;
  animation-duration: 64s;
}

.review-row--slow .review-track {
  animation-duration: 70s;
}

.review-row:hover .review-track {
  animation-play-state: paused;
}

.review-card {
  width: clamp(17rem, 27vw, 23rem);
  min-height: 12.2rem;
  padding: 1.15rem;
  border: 1px solid rgba(69, 243, 255, 0.16);
  border-radius: 1.1rem;
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.08), transparent 42%),
    rgba(3, 16, 26, 0.64);
  backdrop-filter: blur(18px);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.28), 0 0 2rem rgba(69, 243, 255, 0.06);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review-card h3 {
  margin: 0;
  color: var(--color-white);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.3;
}

.google-mark {
  display: grid;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background:
    conic-gradient(from -40deg, #4285f4 0 26%, #34a853 0 45%, #fbbc05 0 68%, #ea4335 0 88%, #4285f4 0),
    rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0.65rem 1.2rem rgba(0, 0, 0, 0.25);
}

.review-stars {
  margin: 0.85rem 0 0.7rem;
  color: var(--color-teal);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-shadow: 0 0 1rem rgba(69, 243, 255, 0.32);
}

.review-card p:last-child {
  margin: 0;
  color: rgba(235, 247, 250, 0.72);
  font-size: 0.94rem;
  line-height: 1.7;
}

.custom-package {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
  padding: clamp(5.5rem, 9vw, 8.75rem) clamp(1.25rem, 5vw, 4.5rem);
  background: var(--section-surface);
}

.custom-package::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(69, 243, 255, 0.045), transparent 38%, rgba(255, 255, 255, 0.018));
  pointer-events: none;
}

.custom-package__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 1.2fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: min(100%, 76rem);
  margin: 0 auto;
}

.custom-package__copy h2 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  font-weight: 700;
  line-height: 0.95;
  text-wrap: balance;
}

.custom-package__copy p:last-child {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  color: rgba(235, 247, 250, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.75;
}

.custom-form {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(69, 243, 255, 0.18);
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.08), transparent 42%),
    rgba(3, 16, 26, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.32), 0 0 2rem rgba(69, 243, 255, 0.07);
}

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

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-field span {
  color: rgba(235, 247, 250, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field strong {
  color: var(--color-teal);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(69, 243, 255, 0.18);
  border-radius: 0.85rem;
  color: var(--color-white);
  background: rgba(1, 8, 14, 0.68);
  font: inherit;
  outline: 0;
  padding: 0.9rem 0.95rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 8.5rem;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(235, 247, 250, 0.38);
}

.form-field select {
  color: rgba(235, 247, 250, 0.82);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(69, 243, 255, 0.66);
  background: rgba(1, 10, 18, 0.84);
  box-shadow: 0 0 0 3px rgba(69, 243, 255, 0.08);
}

.form-field.is-invalid input,
.form-field.is-invalid select {
  border-color: rgba(255, 103, 103, 0.8);
}

.form-error {
  min-height: 1.3rem;
  margin: 0.85rem 0 0;
  color: #ff8f8f;
  font-size: 0.88rem;
  line-height: 1.45;
}

.seo-sitelink-anchor {
  position: relative;
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  scroll-margin-top: 6rem;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.25rem;
  margin-top: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 1.2rem 2.8rem rgba(69, 243, 255, 0.26);
}

.whatsapp-button.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.form-helper {
  margin: 0.85rem 0 0;
  color: rgba(235, 247, 250, 0.58);
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}

.button::before,
.package-button::before,
.checkout-button::before,
.whatsapp-button::before,
.footer-whatsapp::before,
.premium-menu__primary::before,
.premium-menu__secondary::before,
.premium-menu__sticky::before,
.package-filter::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 58%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  filter: blur(0.45rem);
  opacity: 0.34;
  transform: translateX(-20%) rotate(18deg);
  animation: liquidButtonSheen 6.5s ease-in-out infinite;
  pointer-events: none;
}

.package-button,
.checkout-button,
.whatsapp-button,
.footer-whatsapp,
.premium-menu__primary,
.premium-menu__secondary,
.premium-menu__sticky,
.package-filter {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.26), rgba(255, 255, 255, 0.07) 45%, rgba(69, 243, 255, 0.1)),
    rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  box-shadow:
    0 1rem 2.4rem rgba(69, 243, 255, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0.75rem 1.7rem rgba(255, 255, 255, 0.045) inset;
  transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease, color 300ms ease, border-color 300ms ease, filter 300ms ease, opacity 300ms ease;
}

.package-button:hover,
.checkout-button:hover,
.whatsapp-button:hover,
.footer-whatsapp:hover,
.premium-menu__primary:hover,
.premium-menu__secondary:hover,
.premium-menu__sticky:hover,
.package-filter:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 1.25rem 2.9rem rgba(69, 243, 255, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0.85rem 1.9rem rgba(255, 255, 255, 0.07) inset;
}

.button:active,
.package-button:active,
.checkout-button:active,
.whatsapp-button:active,
.footer-whatsapp:active,
.premium-menu__primary:active,
.premium-menu__secondary:active,
.premium-menu__sticky:active,
.package-filter:active {
  filter: brightness(0.98);
  transform: translateY(0) scale(0.98);
  box-shadow:
    0 0.7rem 1.8rem rgba(69, 243, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1.25rem, 5vw, 4.5rem) 1.5rem;
  background: var(--section-surface-alt);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(69, 243, 255, 0.035), transparent);
  pointer-events: none;
}

.site-footer__inner,
.footer-bottom,
.footer-credit {
  position: relative;
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms ease, transform 760ms ease;
}

.js .site-footer .site-footer__inner,
.js .site-footer .footer-bottom,
.js .site-footer .footer-credit {
  opacity: 0.72;
  transform: translateY(1.35rem);
}

.js .site-footer.is-visible .site-footer__inner,
.js .site-footer.is-visible .footer-bottom,
.js .site-footer.is-visible .footer-credit {
  opacity: 1;
  transform: translateY(0);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(16rem, 1.3fr) minmax(9rem, 0.7fr) minmax(13rem, 1fr) minmax(14rem, 0.9fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  width: min(100%, 76rem);
  margin: 0 auto;
}

.footer-seo-headings {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.2rem;
  width: min(100%, 76rem);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.footer-seo-headings h2 {
  margin: 0;
  color: rgba(69, 243, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
  text-shadow: 0 0 0.8rem rgba(69, 243, 255, 0.18);
}

.footer-seo-text {
  position: relative;
  z-index: 1;
  width: min(100%, 76rem);
  margin: 1rem auto 0;
  color: rgba(235, 247, 250, 0.48);
  font-size: 0.84rem;
  line-height: 1.75;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  width: clamp(9rem, 14vw, 12.5rem);
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand p,
.footer-column p {
  margin: 1rem 0 0;
  color: rgba(235, 247, 250, 0.68);
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.footer-socials a {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(69, 243, 255, 0.28);
  border-radius: 999px;
  color: var(--color-teal);
  background: rgba(3, 16, 26, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.footer-socials svg,
.premium-menu__socials svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-socials a:hover {
  color: var(--color-teal);
  transform: translateY(-2px) scale(1.1);
  border-color: rgba(69, 243, 255, 0.8);
  background: rgba(69, 243, 255, 0.1);
  box-shadow: 0 0 1.8rem rgba(69, 243, 255, 0.22);
}

.footer-column,
.footer-cta {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.footer-column h2,
.footer-cta h2 {
  margin: 0 0 0.3rem;
  color: var(--color-white);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: rgba(235, 247, 250, 0.66);
  font-size: 0.94rem;
  line-height: 1.4;
  transition: color 180ms ease, transform 180ms ease, text-shadow 180ms ease;
}

.footer-column a:hover {
  color: var(--color-teal);
  text-shadow: 0 0 1rem rgba(69, 243, 255, 0.25);
  transform: translateX(0.2rem);
}

.footer-cta {
  padding: 1.2rem;
  border: 1px solid rgba(69, 243, 255, 0.16);
  border-radius: 1rem;
  background: rgba(3, 16, 26, 0.46);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.24);
}

.footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.footer-whatsapp {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  margin-top: 0.45rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(69, 243, 255, 0.28), rgba(255, 255, 255, 0.08) 45%, rgba(69, 243, 255, 0.12)),
    rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  box-shadow:
    0 1rem 2.4rem rgba(69, 243, 255, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0.75rem 1.7rem rgba(255, 255, 255, 0.045) inset;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 300ms ease, box-shadow 300ms ease, filter 300ms ease;
}

.footer-whatsapp:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 1.25rem 2.8rem rgba(69, 243, 255, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0.85rem 1.9rem rgba(255, 255, 255, 0.07) inset;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, 76rem);
  margin: clamp(2.8rem, 5vw, 4.2rem) auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(69, 243, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(235, 247, 250, 0.52);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-credit {
  width: min(100%, 76rem);
  margin: 1.35rem auto 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-credit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-credit a {
  color: #22f3ff;
  font-weight: 500;
  text-shadow: 0 0 0.7rem rgba(34, 243, 255, 0.16);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #7cf9ff;
  outline: none;
  text-shadow:
    0 0 0.6rem rgba(34, 243, 255, 0.36),
    0 0 1.35rem rgba(34, 243, 255, 0.2);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.premium-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr auto auto;
  gap: 1.35rem;
  width: min(100%, 28rem);
  height: 100vh;
  overflow-y: auto;
  padding: 1.25rem;
  border-left: 1px solid rgba(69, 243, 255, 0.22);
  background:
    radial-gradient(circle at 78% 10%, rgba(69, 243, 255, 0.16), transparent 16rem),
    linear-gradient(180deg, rgba(6, 21, 33, 0.94), rgba(1, 7, 12, 0.96));
  backdrop-filter: blur(26px);
  box-shadow: -2rem 0 5.5rem rgba(0, 0, 0, 0.6);
  transform: translateX(104%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-menu.is-open {
  transform: translateX(0);
}

.premium-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.premium-menu__logo {
  display: inline-flex;
  width: 9rem;
}

.premium-menu__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-close {
  position: relative;
  display: inline-grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgba(69, 243, 255, 0.36);
  border-radius: 999px;
  color: var(--color-teal);
  background: rgba(2, 13, 22, 0.46);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.menu-close:hover {
  transform: translateY(-1px);
  border-color: rgba(69, 243, 255, 0.78);
  background: rgba(69, 243, 255, 0.1);
}

.premium-menu__nav {
  display: grid;
  gap: 0.18rem;
}

.premium-menu__nav a,
.premium-menu__subnav,
.premium-menu__subnav a,
.premium-menu__actions a,
.premium-menu__socials,
.premium-menu__footer {
  opacity: 0;
  transform: translateX(1rem);
  transition: opacity 360ms ease, transform 360ms ease;
}

.premium-menu.is-open .premium-menu__nav a,
.premium-menu.is-open .premium-menu__subnav,
.premium-menu.is-open .premium-menu__subnav a,
.premium-menu.is-open .premium-menu__actions a,
.premium-menu.is-open .premium-menu__socials,
.premium-menu.is-open .premium-menu__footer {
  opacity: 1;
  transform: translateX(0);
}

.premium-menu.is-open .premium-menu__nav a:nth-child(1) { transition-delay: 80ms; }
.premium-menu.is-open .premium-menu__nav a:nth-child(2) { transition-delay: 120ms; }
.premium-menu.is-open .premium-menu__nav a:nth-child(3) { transition-delay: 160ms; }
.premium-menu.is-open .premium-menu__subnav { transition-delay: 190ms; }
.premium-menu.is-open .premium-menu__subnav a:nth-child(1) { transition-delay: 205ms; }
.premium-menu.is-open .premium-menu__subnav a:nth-child(2) { transition-delay: 220ms; }
.premium-menu.is-open .premium-menu__subnav a:nth-child(3) { transition-delay: 235ms; }
.premium-menu.is-open .premium-menu__subnav a:nth-child(4) { transition-delay: 250ms; }
.premium-menu.is-open .premium-menu__subnav a:nth-child(5) { transition-delay: 265ms; }
.premium-menu.is-open .premium-menu__subnav a:nth-child(6) { transition-delay: 280ms; }
.premium-menu.is-open .premium-menu__nav > a:nth-of-type(4) { transition-delay: 300ms; }
.premium-menu.is-open .premium-menu__nav > a:nth-of-type(5) { transition-delay: 340ms; }
.premium-menu.is-open .premium-menu__actions a:nth-child(1) { transition-delay: 320ms; }
.premium-menu.is-open .premium-menu__actions a:nth-child(2) { transition-delay: 360ms; }
.premium-menu.is-open .premium-menu__socials { transition-delay: 400ms; }
.premium-menu.is-open .premium-menu__footer { transition-delay: 440ms; }

.premium-menu__nav a {
  display: flex;
  align-items: center;
  min-height: 3.25rem;
  border-radius: 0.85rem;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, padding 180ms ease, opacity 360ms ease, transform 360ms ease;
}

.premium-menu__nav a:hover {
  padding-left: 0.7rem;
  color: var(--color-teal);
  background: rgba(69, 243, 255, 0.06);
}

.premium-menu__subnav {
  display: grid;
  gap: 0.18rem;
  margin: -0.1rem 0 0.28rem;
  padding-left: 1.15rem;
}

.premium-menu__subnav a {
  display: flex;
  align-items: center;
  min-height: 2.2rem;
  width: fit-content;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  color: rgba(235, 247, 250, 0.62);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, text-shadow 220ms ease, transform 220ms ease, opacity 360ms ease;
}

.premium-menu__subnav a:hover,
.premium-menu__subnav a.is-active {
  color: var(--color-teal);
  background: rgba(69, 243, 255, 0.07);
  text-shadow: 0 0 0.8rem rgba(69, 243, 255, 0.45);
  transform: translateX(0.25rem);
}

.premium-menu__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(69, 243, 255, 0.36), transparent);
}

.premium-menu__actions {
  display: grid;
  gap: 0.75rem;
}

.premium-menu__primary,
.premium-menu__secondary,
.premium-menu__sticky {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.premium-menu__primary,
.premium-menu__sticky {
  color: var(--color-white);
}

.premium-menu__secondary {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--color-teal-soft);
}

.premium-menu__primary:hover,
.premium-menu__secondary:hover,
.premium-menu__sticky:hover {
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 1.25rem 2.8rem rgba(69, 243, 255, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0.85rem 1.9rem rgba(255, 255, 255, 0.07) inset;
}

.premium-menu__secondary:hover {
  color: var(--color-white);
}

.premium-menu__socials {
  display: flex;
  gap: 0.75rem;
}

.premium-menu__socials a {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(69, 243, 255, 0.28);
  border-radius: 999px;
  color: var(--color-teal);
  background: rgba(3, 16, 26, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.premium-menu__socials a:hover {
  color: var(--color-teal);
  transform: translateY(-2px) scale(1.1);
  border-color: rgba(69, 243, 255, 0.8);
  background: rgba(69, 243, 255, 0.1);
  box-shadow: 0 0 1.8rem rgba(69, 243, 255, 0.22);
}

.premium-menu__footer {
  align-self: end;
  padding-bottom: 0.25rem;
}

.premium-menu__footer p {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
}

.premium-menu__footer span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(235, 247, 250, 0.58);
  font-size: 0.9rem;
  line-height: 1.5;
}

.premium-menu__sticky {
  display: none;
}

@keyframes reviewMarqueeLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes reviewMarqueeRight {
  from {
    transform: translateX(calc(-50% - 0.5rem));
  }
  to {
    transform: translateX(0);
  }
}

@keyframes liquidButtonSheen {
  0%,
  42% {
    transform: translateX(-25%) rotate(18deg);
    opacity: 0;
  }
  52% {
    opacity: 0.34;
  }
  72%,
  100% {
    transform: translateX(330%) rotate(18deg);
    opacity: 0;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0.72;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0.72;
    transform: translateY(-0.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  45% {
    opacity: 1;
  }
  70% {
    opacity: 0.18;
    transform: translateY(1.2rem);
  }
}

@media (max-width: 768px) {
  .country-menu.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(14px);
  }

  .country-dropdown {
    position: fixed;
    top: 50%;
    right: auto;
    left: 50%;
    z-index: 71;
    width: 90vw;
    max-width: 360px;
    max-height: 70vh;
    padding: 0.9rem 0.78rem 0.82rem;
    border-radius: 1rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translate(-50%, calc(-50% - 0.5rem)) scale(0.98);
    transform-origin: center;
    scrollbar-width: thin;
    scrollbar-color: rgba(69, 243, 255, 0.44) rgba(255, 255, 255, 0.08);
  }

  .country-dropdown.is-open {
    transform: translate(-50%, -50%) scale(1);
  }

  .country-dropdown__close {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: rgba(235, 247, 250, 0.88);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  .country-dropdown__close span,
  .country-dropdown__close span::after {
    display: block;
    width: 0.88rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .country-dropdown__close span {
    transform: rotate(45deg);
  }

  .country-dropdown__close span::after {
    content: "";
    transform: rotate(90deg);
  }

  .country-dropdown p {
    margin-right: 2.35rem;
    margin-bottom: 0.78rem;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .country-dropdown__list {
    gap: 0.48rem;
  }

  .country-option {
    min-height: 3rem;
    padding: 0.46rem 0.55rem;
    gap: 0.68rem;
    border-radius: 0.78rem;
  }

  .country-option__flag {
    flex-basis: 2.1rem;
    width: 2.1rem;
    height: 2rem;
    aspect-ratio: auto;
    border-radius: 0.58rem;
  }

  .country-option__name {
    min-width: 0;
    font-size: clamp(0.86rem, 3.7vw, 0.96rem);
    line-height: 1.18;
  }
}

@media (min-width: 721px) and (max-width: 768px) {
  .premium-menu {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2rem 1.5rem;
  }

  .premium-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    width: 100%;
  }

  .premium-menu__nav a {
    min-height: auto;
    padding: 0;
    font-size: clamp(2rem, 8vw, 2.25rem);
    line-height: 1.1;
    text-align: left;
  }

  .premium-menu__subnav {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin: -0.35rem 0 0.15rem;
    padding-left: 1.75rem;
  }

  .premium-menu__subnav a {
    min-height: auto;
    width: 100%;
    padding: 0;
    font-size: clamp(0.95rem, 4vw, 1.0625rem);
    letter-spacing: 0.22em;
    line-height: 1.3;
    text-align: left;
  }

  .premium-menu__actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
    margin: 0.4rem auto 0;
    gap: 0.875rem;
  }

  .premium-menu__primary,
  .premium-menu__secondary,
  .premium-menu__sticky {
    width: 100%;
    max-width: 20rem;
    height: 3.5rem;
    min-height: 3.5rem;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .premium-menu__socials {
    justify-content: center;
    gap: 0.875rem;
    margin: 0.3rem 0;
  }

  .premium-menu__socials a {
    width: 2.75rem;
    height: 2.75rem;
  }

  .premium-menu__footer {
    align-self: stretch;
    padding-bottom: 0;
  }

  .premium-menu__sticky {
    position: static;
    display: inline-flex;
    transform: none;
  }

  .premium-menu__sticky:hover {
    transform: translateY(-2px) scale(1.03);
  }

  .premium-menu__sticky:active {
    transform: scale(0.98);
  }
}

@media (max-width: 720px) {
  .hero__video {
    transform: scale(1.6);
    will-change: auto;
  }

  .parallax-backdrop {
    background-position: center;
    will-change: auto;
  }

  .hero {
    padding: 7rem 1.15rem 5rem;
  }

  .navbar {
    padding: 1rem 1rem 0;
  }

  .cart-toggle {
    width: 2.9rem;
    height: 2.9rem;
  }

  .navbar__brand {
    width: 8.3rem;
  }

  .icon-button {
    display: none;
  }

  .globe-button {
    width: 2.9rem;
    height: 2.9rem;
  }

  .country-dropdown {
    width: 90vw;
  }

  .menu-button {
    width: 2.9rem;
    height: 2.9rem;
  }

  .hero__tagline {
    gap: 0.7rem;
    margin-bottom: 1rem;
    letter-spacing: 0.22em;
  }

  .hero__tagline::before,
  .hero__tagline::after {
    width: 1.6rem;
  }

  .hero__title {
    font-size: clamp(2.75rem, 11vw, 3.35rem);
    line-height: 0.92;
  }

  .hero__content {
    max-width: 20.5rem;
  }

  .hero__description {
    margin-top: 1.25rem;
    max-width: 19rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero__buttons {
    width: min(100%, 18.25rem);
    margin: 2.1rem auto 0;
  }

  .button {
    width: 100%;
    min-height: 3.2rem;
  }

  .trust-stats {
    padding: 4.75rem 1.15rem 5.25rem;
  }

  .trust-stats__inner {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    width: min(100%, 21rem);
  }

  .stat-card {
    min-height: 11.5rem;
    padding: 1.8rem 1rem;
  }

  .stat-card__number {
    font-size: clamp(4rem, 19vw, 5.25rem);
  }

  .stat-card__label {
    max-width: 15rem;
    font-size: 0.73rem;
  }

  .our-story {
    padding: 4.75rem 1.15rem 5.25rem;
  }

  .our-story__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    width: min(100%, 22rem);
  }

  .js .story-media,
  .js .story-copy {
    transform: translate3d(0, 1.6rem, 0);
  }

  .story-card {
    border-radius: 1.15rem;
  }

  .story-card img {
    aspect-ratio: 4 / 5.15;
  }

  .section-label {
    gap: 0.9rem;
    font-size: 0.92rem;
    letter-spacing: 0.22em;
  }

  .section-label::before {
    width: 3.4rem;
  }

  .services__header .section-label {
    gap: 0.9rem;
    font-size: clamp(1.15rem, 6vw, 1.45rem);
    letter-spacing: 0.22em;
  }

  .services__header .section-label::before,
  .services__header .section-label::after {
    width: 3.8rem;
  }

  .story-copy h2 {
    font-size: clamp(2.65rem, 12vw, 3.45rem);
  }

  .story-copy__lead {
    margin-top: 1.15rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .story-text {
    font-size: 0.95rem;
    line-height: 1.78;
  }

  .purpose {
    padding: 4.75rem 1.15rem 5.25rem;
  }

  .purpose__inner {
    width: min(100%, 22rem);
  }

  .purpose__header {
    margin-bottom: 2.15rem;
  }

  .purpose__header .section-label {
    gap: 0.9rem;
    letter-spacing: 0.22em;
  }

  .purpose__header .section-label::after {
    width: 3.4rem;
  }

  .purpose__header h2 {
    font-size: clamp(2.7rem, 12vw, 3.6rem);
  }

  .purpose__cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .purpose-card {
    min-height: 0;
    padding: 1.45rem;
    border-radius: 1.15rem;
  }

  .purpose-card__icon {
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.15rem;
    border-radius: 0.9rem;
  }

  .purpose-card h3 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .purpose-card p {
    font-size: 0.95rem;
    line-height: 1.74;
  }

  .services {
    padding: 4.75rem 1.15rem 5.25rem;
  }

  .services__header {
    margin-bottom: 2.2rem;
  }

  .services__header h2 {
    font-size: clamp(2.7rem, 12vw, 3.6rem);
  }

  .package-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: calc(100% + 2.3rem);
    margin-left: -1.15rem;
    margin-right: -1.15rem;
    padding: 0 1.15rem 0.35rem;
    scrollbar-width: none;
  }

  .package-filters::-webkit-scrollbar {
    display: none;
  }

  .package-filter {
    flex: 0 0 auto;
  }

  .packages-grid {
    width: min(100%, 22rem);
  }

  .package-card {
    flex-basis: 100%;
    min-width: 0;
    min-height: 0;
  }

  .package-card__actions {
    grid-template-columns: 1fr;
  }

  .package-card p {
    min-height: 0;
  }

  .package-modal__content {
    grid-template-columns: 1fr;
    padding: 1.15rem;
    padding-top: 4rem;
  }

  .cake-modal__content {
    grid-template-columns: 1fr;
    padding: 1.15rem;
    padding-top: 4rem;
  }

  .package-modal__details h2 {
    font-size: clamp(2.4rem, 11vw, 3.3rem);
  }

  .cake-modal__details h2 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
  }

  .cake-choice-grid {
    grid-template-columns: 1fr;
  }

  .cake-summary__media {
    aspect-ratio: 4 / 5;
    max-height: min(54vh, 28rem);
  }

  .cake-summary dl div {
    display: grid;
    gap: 0.25rem;
  }

  .cake-summary dd {
    text-align: left;
  }

  .cart-panel {
    width: min(100%, 23rem);
  }

  .checkout-backdrop {
    align-items: stretch;
    padding: 0.75rem;
  }

  .checkout-flow {
    max-height: calc(100vh - 1.5rem);
    border-radius: 1.05rem;
  }

  .checkout-step {
    padding: 4rem 1rem 1rem;
  }

  .checkout-flow__header h2 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

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

  .checkout-form,
  .checkout-summary,
  .payment-method-panel,
  .payment-placeholder {
    border-radius: 1rem;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .installment-methods {
    grid-template-columns: 1fr;
  }

  .payment-breakdown div,
  .bank-details dl div {
    display: grid;
    gap: 0.25rem;
  }

  .payment-breakdown strong,
  .bank-details dd {
    text-align: left;
  }

  .payment-placeholder {
    min-height: 12rem;
    padding: 1rem;
  }

  .premium-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding: 2rem 1.5rem;
  }

  .premium-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    width: 100%;
  }

  .premium-menu__nav a {
    min-height: auto;
    padding: 0;
    font-size: clamp(2rem, 8vw, 2.25rem);
    line-height: 1.1;
    text-align: left;
  }

  .premium-menu__subnav {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin: -0.35rem 0 0.15rem;
    padding-left: 1.75rem;
  }

  .premium-menu__subnav a {
    min-height: auto;
    width: 100%;
    padding: 0;
    font-size: clamp(0.95rem, 4vw, 1.0625rem);
    letter-spacing: 0.22em;
    line-height: 1.3;
    text-align: left;
  }

  .premium-menu__actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
    margin: 0.4rem auto 0;
    gap: 0.875rem;
  }

  .premium-menu__primary,
  .premium-menu__secondary,
  .premium-menu__sticky {
    width: 100%;
    max-width: 20rem;
    height: 3.5rem;
    min-height: 3.5rem;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .premium-menu__socials {
    justify-content: center;
    gap: 0.875rem;
    margin: 0.3rem 0;
  }

  .premium-menu__socials a {
    width: 2.75rem;
    height: 2.75rem;
  }

  .premium-menu__footer {
    align-self: stretch;
    padding-bottom: 0;
  }

  .premium-menu__sticky {
    display: inline-flex;
    position: static;
    transform: none;
  }

  .premium-menu__sticky:hover {
    transform: translateY(-2px) scale(1.03);
  }

  .premium-menu__sticky:active {
    transform: scale(0.98);
  }

  .gallery {
    padding: 4.75rem 1.15rem 5.25rem;
  }

  .gallery__header {
    margin-bottom: 2.2rem;
  }

  .gallery__header h2 {
    font-size: clamp(2.65rem, 12vw, 3.6rem);
  }

  .gallery-carousel {
    height: 27rem;
    width: min(100%, 24rem);
  }

  .gallery-slide {
    width: min(68vw, 16.2rem);
    border-radius: 1.1rem;
  }

  .gallery-slide.is-prev {
    transform: translate(-50%, -50%) translateX(-8.4rem) rotateY(15deg) scale(0.76);
  }

  .gallery-slide.is-next {
    transform: translate(-50%, -50%) translateX(8.4rem) rotateY(-15deg) scale(0.76);
  }

  .gallery-slide.is-far-prev,
  .gallery-slide.is-far-next {
    opacity: 0;
  }

  .gallery-arrow {
    top: auto;
    bottom: -0.4rem;
    width: 2.7rem;
    height: 2.7rem;
    transform: none;
  }

  .gallery-arrow--prev {
    left: 0.4rem;
  }

  .gallery-arrow--next {
    right: 0.4rem;
  }

  .gallery-dots {
    margin-top: 2.5rem;
    gap: 0.45rem;
  }

  .countries {
    padding: 4.75rem 0 5.25rem;
  }

  .countries__header {
    width: min(100% - 2.3rem, 22rem);
    margin-bottom: 2.2rem;
  }

  .countries__header h2 {
    font-size: clamp(2.55rem, 11vw, 3.45rem);
  }

  .countries-carousel {
    width: 100%;
  }

  .countries-viewport {
    width: 100%;
    padding: 1.15rem 0;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }

  .country-card {
    flex-basis: 72vw;
    max-width: 14.2rem;
  }

  .country-card h3 {
    max-width: 7.5rem;
    font-size: 0.72rem;
  }

  .countries-arrow {
    top: auto;
    bottom: -0.45rem;
    width: 2.7rem;
    height: 2.7rem;
    transform: none;
  }

  .countries-arrow--prev {
    left: 1.15rem;
  }

  .countries-arrow--next {
    right: 1.15rem;
  }

  .countries-dots {
    margin-top: 2.4rem;
  }

  .reviews {
    padding: 4.75rem 0 5.25rem;
  }

  .reviews__header h2 {
    font-size: clamp(2.55rem, 11vw, 3.45rem);
  }

  .reviews-marquee {
    gap: 0.8rem;
  }

  .review-track {
    gap: 0.8rem;
    animation-duration: 46s;
  }

  .review-row--left .review-track {
    animation-duration: 52s;
  }

  .review-row--slow .review-track {
    animation-duration: 58s;
  }

  .review-card {
    width: 17.2rem;
    min-height: 12rem;
    padding: 1rem;
  }

  .custom-package {
    padding: 4.75rem 1.15rem 5.25rem;
  }

  .custom-package__inner {
    grid-template-columns: 1fr;
    width: min(100%, 22rem);
  }

  .custom-package__copy h2 {
    font-size: clamp(2.55rem, 11vw, 3.45rem);
  }

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

  .site-footer {
    padding: 4.5rem 1.15rem 1.3rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    width: min(100%, 22rem);
  }

  .footer-bottom {
    width: min(100%, 22rem);
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-credit {
    width: min(100%, 22rem);
  }

  .footer-seo-text {
    width: min(100%, 22rem);
    text-align: left;
  }

  .footer-seo-headings {
    width: min(100%, 22rem);
    justify-content: flex-start;
  }
}

@media (min-width: 721px) and (max-width: 1040px) {
  .packages-grid {
    width: min(100%, 48rem);
  }

  .package-card {
    flex-basis: calc((100% - clamp(1rem, 2vw, 1.4rem)) / 2);
    min-width: 0;
  }

  .countries-viewport {
    width: min(100%, 42rem);
  }

  .country-card {
    flex-basis: 12rem;
  }

  .package-modal__content {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    transform: none !important;
    will-change: auto;
  }

  .parallax-backdrop {
    will-change: auto;
  }

  .button::before,
  .reviews__button::before,
  .cart-toggle::before,
  .icon-button::before,
  .globe-button::before,
  .menu-button::before,
  .package-button::before,
  .checkout-button::before,
  .whatsapp-button::before,
  .footer-whatsapp::before,
  .premium-menu__primary::before,
  .premium-menu__secondary::before,
  .premium-menu__sticky::before,
  .package-filter::before {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
