:root {
  --site-bg: #0d0b0d;
  --text-main: #f6f3f1;
  --text-muted: #b9b5b8;
  --accent-red: #d52036;
  --charcoal: var(--site-bg);
  --charcoal-deep: #090709;
  --card: #191a1e;
  --card-hover: #1d1e23;
  --burgundy: var(--accent-red);
  --burgundy-dark: #8e1424;
  --silver: #c8cbd0;
  --gold: #b99b5c;
  --text: var(--text-main);
  --muted: var(--text-muted);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(200, 203, 208, 0.2);
  --radius: 18px;
  --section-space: clamp(76px, 8vw, 120px);
  --header-offset: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--charcoal);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body,
header,
.hero,
section,
footer {
  background-color: var(--site-bg);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  content: "";
}

::selection {
  background: var(--burgundy);
  color: var(--text);
}

a {
  color: inherit;
}

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

.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  font-size: 1.2rem;
  border: 1px solid;
}

.icon-badge--red {
  color: #FF5367;
  background: rgba(213, 32, 54, 0.14);
  border-color: rgba(213, 32, 54, 0.35);
}

.icon-badge--gold {
  color: #E8BA55;
  background: rgba(232, 186, 85, 0.12);
  border-color: rgba(232, 186, 85, 0.30);
}

.icon-badge--silver {
  color: #C8CBD0;
  background: rgba(200, 203, 208, 0.10);
  border-color: rgba(200, 203, 208, 0.24);
}

.icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.icon-inline.icon-inline--red {
  color: #FF5367;
}

.icon-inline.icon-inline--gold {
  color: #E8BA55;
}

.icon-inline.icon-inline--silver {
  color: #C8CBD0;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  font-family: "Sora", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 730px;
  margin-bottom: 26px;
  font-size: clamp(3.2rem, 6vw, 6.35rem);
  line-height: 0.99;
}

h1 em {
  display: block;
  color: var(--burgundy);
  font-style: normal;
}

h2 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.1rem;
  line-height: 1.45;
}

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

.container {
  width: min(100% - 40px, 1220px);
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.section,
.site-footer {
  position: relative;
  background: var(--charcoal);
}

.section {
  padding: var(--section-space) 0;
}

#tempahan {
  scroll-margin-top: clamp(32px, 6vw, 72px);
}

.bordered-section {
  border-top: 1px solid var(--line);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
}

.section-heading.centered {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.section-copy {
  max-width: 670px;
  margin-bottom: 30px;
  font-size: 1.03rem;
}

.hero-section .container {
  width: min(calc(100% - 40px), 1200px);
  max-width: 1200px;
}

.promo-ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #D52036;
  color: #FFFFFF;
}

.promo-ticker__track {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  animation: tickerMove 42s linear infinite;
}

.promo-ticker__track span {
  display: inline-block;
  flex: 0 0 auto;
  padding: 9px 3.5rem 9px 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.footer-brand:hover {
  color: var(--text);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.25s ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn i {
  margin-right: 8px;
  font-size: 1rem;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: var(--burgundy);
  background: var(--burgundy);
  color: var(--text);
  box-shadow: 0 0 12px rgba(213, 32, 54, 0.28), 0 0 26px rgba(213, 32, 54, 0.12);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  border-color: #ed2d43 !important;
  background: #ed2d43 !important;
  color: var(--text) !important;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.order-submit:hover,
.order-submit:focus-visible,
.cta-button:hover,
.cta-button:focus-visible,
button[type="submit"]:hover,
button[type="submit"]:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 0 18px rgba(213, 32, 54, 0.55), 0 0 42px rgba(213, 32, 54, 0.28);
}

.btn-primary:active,
.order-submit:active,
.cta-button:active,
button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 0 10px rgba(213, 32, 54, 0.35);
}

.btn-outline {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

.btn-outline:hover,
.btn-outline:focus {
  border-color: var(--silver);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  filter: brightness(1.04);
  box-shadow: 0 0 16px rgba(213, 32, 54, 0.32), 0 0 34px rgba(213, 32, 54, 0.16);
}

.btn-light {
  border-color: var(--text);
  background: var(--text);
  color: var(--burgundy-dark);
}

.btn-light:hover,
.btn-light:focus {
  border-color: var(--text);
  background: transparent;
  color: var(--text);
  filter: brightness(1.04);
  box-shadow: 0 0 16px rgba(213, 32, 54, 0.32), 0 0 34px rgba(213, 32, 54, 0.16);
}

.btn-outline:active,
.btn-light:active {
  transform: translateY(0);
  box-shadow: 0 0 10px rgba(213, 32, 54, 0.24);
}

.btn-lg {
  min-height: 56px;
  padding: 1rem 1.5rem;
}

/* Hero */
.hero-section {
  display: flex;
  align-items: center;
  min-height: 620px;
  padding: 44px 0 58px;
  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(100, 10, 25, 0.18) 0%,
      transparent 45%
    ),
    var(--site-bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
  gap: clamp(40px, 5vw, 60px);
}

.hero-content-column,
.hero-product-column {
  min-width: 0;
}

.hero-product-column {
  display: flex;
  justify-content: flex-end;
}

.hero-section h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.hero-section .hero-hook {
  max-width: 680px;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.04;
}

.hero-hook-line {
  display: block;
}

.hero-hook-line-light {
  color: var(--text);
}

.hero-hook-line-accent {
  color: var(--burgundy);
}

.hero-section::before {
  position: absolute;
  top: 18%;
  left: -90px;
  width: 230px;
  height: 1px;
  background: var(--burgundy);
  opacity: 0.45;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Trust bar */
.post-hero-trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #111214;
}

.post-hero-trust ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.post-hero-trust li {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  color: var(--text);
  gap: 11px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.post-hero-trust li + li {
  border-left: 1px solid var(--line);
}

.post-hero-trust i {
  flex: 0 0 auto;
  color: var(--burgundy);
  font-size: 1.12rem;
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 500px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(200, 203, 208, 0.34);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.3);
  isolation: isolate;
}

.product-stage::before,
.product-stage::after {
  display: none;
  content: "";
}

.hero-product-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

.image-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  min-height: 180px;
  margin: auto;
  padding: 24px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  flex-direction: column;
  gap: 8px;
  color: var(--silver);
  text-align: center;
}

.image-fallback i {
  margin-bottom: 5px;
  font-size: 1.5rem;
}

.image-fallback strong {
  color: var(--text);
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.85rem;
}

.image-fallback span {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.6;
}

.image-fallback code {
  color: var(--silver);
}

/* Problem cards */
.problem-grid {
  max-width: 1030px;
  margin-right: auto;
  margin-left: auto;
}

.problem-card {
  display: flex;
  align-items: stretch;
  height: 190px;
  min-height: 190px;
  padding: 0;
  border: 1px solid rgba(150, 57, 74, 0.28);
  border-radius: var(--radius);
  background: var(--card);
  gap: 0;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.problem-card:hover {
  border-color: rgba(150, 57, 74, 0.7);
  background: var(--card-hover);
  transform: translateY(-4px);
}

.card-number {
  display: block;
  margin-bottom: 5px;
  color: var(--burgundy);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.problem-card-media {
  position: relative;
  width: 42%;
  height: 100%;
  flex: 0 0 42%;
  overflow: hidden;
  background: var(--charcoal);
}

.problem-card-media::after {
  position: absolute;
  background: linear-gradient(90deg, rgba(7, 7, 9, 0.18), rgba(7, 7, 9, 0.48));
  content: "";
  inset: 0;
  pointer-events: none;
}

.problem-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.problem-card-content {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  padding: 24px 26px;
  flex-direction: column;
}

.problem-card h3 {
  max-width: 350px;
  margin: 0;
}

@media (max-width: 767.98px) {
  .problem-card {
    height: auto;
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
  }

  .problem-card .problem-card-media {
    width: 100%;
    height: 160px;
    border-bottom: 1px solid rgba(200, 203, 208, 0.1);
    flex-basis: 160px;
  }

  .problem-card-content {
    padding: 20px 22px 22px;
  }
}

/* Introduction */
.intro-panel {
  padding: clamp(32px, 5.5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
}

.intro-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 3.5rem;
}

.intro-visual {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: var(--charcoal);
}

.intro-visual::before {
  position: absolute;
  top: -10px;
  left: 28px;
  width: 64px;
  height: 3px;
  background: var(--burgundy);
  content: "";
}

.intro-visual img {
  width: 100%;
  max-height: 350px;
  border-radius: 10px;
  object-fit: contain;
}

.intro-visual .intro-poster {
  display: block;
  width: 100%;
  max-width: 580px;
  height: auto;
  max-height: none;
  margin: 0 auto;
  object-fit: contain;
}

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

.intro-points > div {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  border-top: 1px solid var(--line-strong);
  gap: 10px;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
}

.intro-points i {
  color: var(--burgundy);
  font-size: 1.1rem;
}

/* Product video */
.video-section {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 50%, rgba(213, 32, 54, 0.09) 0%, rgba(213, 32, 54, 0.025) 28%, transparent 58%),
    #0D0B0D;
}

.video-section::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 2%;
  color: #C8CBD0;
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(15rem, 31vw, 31rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.7;
  opacity: 0.035;
  transform: translateY(-50%);
  content: "OM";
  pointer-events: none;
}

.video-section .container {
  position: relative;
  z-index: 1;
}

.video-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  gap: clamp(42px, 6vw, 82px);
}

.video-copy {
  min-width: 0;
}

.video-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.08;
}

.video-description {
  max-width: 520px;
  margin-bottom: 30px;
  font-size: 1rem;
}

.video-meta {
  display: flex;
  align-items: center;
  margin: 0 0 8px;
  color: #C8CBD0;
  gap: 9px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.video-hint {
  margin: 0;
  font-size: 0.76rem;
}

.product-video-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 610px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(200, 203, 208, 0.2);
  border-radius: 24px;
  background: #191A1E;
  overflow: hidden;
  isolation: isolate;
}

.product-video-wrap::before {
  position: absolute;
  z-index: 0;
  width: min(78%, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(213, 32, 54, 0.13);
  filter: blur(68px);
  content: "";
  pointer-events: none;
}

.product-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  border: 1px solid rgba(200, 203, 208, 0.24);
  border-radius: 18px;
  background: #090709;
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.42), 0 0 36px rgba(213, 32, 54, 0.1);
  object-fit: contain;
}

.showcase-corner {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  pointer-events: none;
}

.showcase-corner--top {
  top: 22px;
  left: 22px;
  border-top: 2px solid #FF5367;
  border-left: 2px solid #FF5367;
}

.showcase-corner--bottom {
  right: 22px;
  bottom: 22px;
  border-right: 2px solid #FF5367;
  border-bottom: 2px solid #FF5367;
}

/* Benefits */
.benefits-section .section-heading {
  margin-bottom: 0;
}

.benefits-poster {
  display: block;
  width: 100%;
  max-width: 580px;
  height: auto;
  margin: 2rem auto 28px;
  border: 1px solid rgba(200, 203, 208, 0.24);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32), 0 0 34px rgba(213, 32, 54, 0.1);
  object-fit: contain;
}

.benefits-poster.benefits-product-image {
  width: min(100%, 420px);
  height: 390px;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 52%, rgba(213, 32, 54, 0.18), transparent 58%),
    var(--card);
  object-fit: contain;
}

.benefits-mini-grid {
  display: grid;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.benefit-mini-card {
  display: flex;
  align-items: center;
  min-height: 105px;
  padding: 16px;
  border: 1px solid rgba(200, 203, 208, 0.2);
  border-radius: 14px;
  background: #191A1E;
  gap: 14px;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.benefit-mini-card:hover {
  border-color: rgba(200, 203, 208, 0.34);
  background: #1d1e23;
}

.benefit-mini-card .icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  box-shadow: 0 0 16px rgba(213, 32, 54, 0.14);
  color: #F4F4F4;
  font-size: 1rem;
}

.benefit-mini-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .benefits-poster {
    max-width: 520px;
  }

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

@media (max-width: 576px) {
  .benefits-poster {
    width: 100%;
    max-width: 420px;
  }

  .benefits-mini-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Testimonials */
.testimonial-context {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  gap: 9px;
  line-height: 1.35;
}

.testimonial-context strong {
  color: var(--text);
  font-size: 0.78rem;
}

.testimonial-context span {
  color: var(--muted);
  font-size: 0.76rem;
}

.testimonial-grid {
  display: grid;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
  gap: 20px;
}

.testimonial-disclaimer {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

.testimonial-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(200, 203, 208, 0.18);
  border-radius: 16px;
  background: #191a1e;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28), 0 0 28px rgba(213, 32, 54, 0.06);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.testimonial-card:hover,
.testimonial-card:focus-visible {
  border-color: rgba(213, 32, 54, 0.42);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34), 0 0 32px rgba(213, 32, 54, 0.12);
  transform: translateY(-2px);
}

.testimonial-card:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

.testimonial-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
}

.testimonial-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 203, 208, 0.3);
  border-radius: 50%;
  background: rgba(13, 11, 13, 0.88);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38);
  color: var(--silver);
  font-size: 0.92rem;
  backdrop-filter: blur(6px);
}

.testimonial-lightbox {
  position: fixed;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(5, 4, 5, 0.9);
  backdrop-filter: blur(8px);
  inset: 0;
}

.testimonial-lightbox[hidden] {
  display: none;
}

.testimonial-lightbox-content {
  display: flex;
  width: min(100%, 1000px);
  max-height: calc(100vh - 70px);
  max-height: calc(100svh - 70px);
  align-items: center;
  justify-content: center;
}

.testimonial-lightbox-content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 70px);
  max-height: calc(100svh - 70px);
  border: 1px solid rgba(200, 203, 208, 0.25);
  border-radius: 14px;
  background: #191a1e;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 40px rgba(213, 32, 54, 0.12);
  object-fit: contain;
}

.testimonial-lightbox-close {
  position: fixed;
  z-index: 2;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 203, 208, 0.3);
  border-radius: 50%;
  background: #191a1e;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.testimonial-lightbox-close:hover,
.testimonial-lightbox-close:focus-visible {
  border-color: var(--burgundy);
  background: #222329;
}

.testimonial-lightbox-close:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 3px;
}

body.testimonial-lightbox-open {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .testimonial-grid {
    max-width: 360px;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .testimonial-card {
    max-width: 360px;
  }

  .testimonial-lightbox {
    padding: 62px 14px 18px;
  }

  .testimonial-lightbox-content,
  .testimonial-lightbox-content img {
    max-height: calc(100svh - 82px);
  }
}

/* Ingredients */
.ingredients-section .section-heading {
  margin-bottom: 0;
}

.ingredients-poster {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  margin: 2rem auto 2.5rem;
  border: 1px solid rgba(200, 203, 208, 0.22);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3), 0 0 34px rgba(213, 32, 54, 0.07);
  object-fit: contain;
}

.ingredients-grid {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ingredient-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background: #191A1E;
  gap: 13px;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.ingredient-card:hover {
  border-color: rgba(200, 203, 208, 0.24);
  background: #1d1e23;
  transform: translateY(-2px);
}

.ingredient-number {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ingredient-card .icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  font-size: 1rem;
}

.ingredient-card h3 {
  min-width: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

@media (max-width: 991.98px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.notice {
  display: flex;
  align-items: flex-start;
  max-width: 920px;
  margin: 26px auto 0;
  padding: 18px 20px;
  border-left: 2px solid var(--burgundy);
  background: rgba(255, 255, 255, 0.025);
  gap: 11px;
  font-size: 0.77rem;
}

.notice i {
  margin-top: 2px;
  color: var(--silver);
}

.usage-section .section-heading {
  margin-bottom: 0;
}

.usage-poster {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 2rem auto 2.5rem;
  border: 1px solid rgba(200, 203, 208, 0.24);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32), 0 0 34px rgba(213, 32, 54, 0.07);
  object-fit: contain;
}

/* Shared steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.usage-steps .step-card {
  display: grid;
  align-items: center;
  min-height: 100px;
  padding: 16px;
  grid-template-columns: 28px 34px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
}

.usage-steps {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.usage-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid #C8CBD0;
  border-radius: 50%;
  background: #090709;
  box-shadow: 0 0 0 3px rgba(200, 203, 208, 0.07), 0 0 16px rgba(213, 32, 54, 0.16);
  color: #F4F4F4;
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  grid-column: 1;
  grid-row: 1 / 3;
}

.usage-step-icon.icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid #C8CBD0;
  border-radius: 14px;
  background: #111214;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 20px rgba(213, 32, 54, 0.14);
  color: #F4F4F4;
  font-size: 1rem;
  grid-column: 2;
  grid-row: 1 / 3;
}

.usage-steps .step-label {
  align-self: end;
  margin: 0;
  grid-column: 3;
  grid-row: 1;
}

.usage-steps .step-card h3 {
  align-self: start;
  max-width: none;
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  grid-column: 3;
  grid-row: 2;
}

.step-card:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -26px;
  width: 32px;
  height: 1px;
  background: var(--silver);
  opacity: 0.35;
  content: "";
}

.step-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 55px;
}

.step-top span {
  color: rgba(255, 255, 255, 0.08);
  font-family: "Sora", Arial, sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 0.9;
}

.step-label {
  margin-bottom: 8px;
  color: var(--burgundy);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.step-card h3 {
  max-width: 290px;
  margin-bottom: 0;
  font-size: 1.18rem;
}

.usage-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

/* Important */
.important-section .section-heading h2 {
  max-width: 760px;
}

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

.important-card {
  display: flex;
  align-items: center;
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  gap: 18px;
}

.important-card h3 {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  align-items: stretch;
  max-width: 1030px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: 30px 26px 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.price-card:hover,
.price-card:focus-visible {
  border-color: rgba(213, 32, 54, 0.72);
  background: var(--card-hover);
  color: var(--text);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3), 0 0 30px rgba(213, 32, 54, 0.14);
}

.price-card:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 4px;
}

.price-card.popular {
  z-index: 2;
  border-color: var(--burgundy);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 7px 13px;
  border-radius: 0 0 7px 7px;
  background: var(--burgundy);
  color: var(--text);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.package-number {
  display: block;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.package-product-visual {
  position: relative;
  display: flex;
  width: 100%;
  height: 200px;
  align-items: center;
  justify-content: center;
  margin: 14px auto 18px;
  isolation: isolate;
}

.package-product-visual::before {
  position: absolute;
  z-index: -1;
  width: 78%;
  height: 72%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 32, 54, 0.16) 0%, rgba(213, 32, 54, 0.06) 44%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
  content: "";
}

.package-product-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.package-product-image--wide {
  width: 92%;
  height: 92%;
}

.price-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.price {
  margin-bottom: 2px;
  color: var(--text);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.65rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.15;
}

.price-note {
  margin: 4px 0 22px;
  font-size: 0.7rem;
}

.price-saving {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin: 4px 0 22px;
  color: #e8ba55;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
}

.price-saving i {
  flex: 0 0 auto;
  font-size: 0.82rem;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.package-select-button {
  pointer-events: none;
}

.price-card-float {
  display: flex;
  min-width: 0;
  border-radius: var(--radius);
}

.price-card-float .price-card {
  width: 100%;
}

/* Order process */
.order-step {
  position: relative;
  min-height: 170px;
  padding: 27px;
  border-top: 1px solid var(--line-strong);
}

.order-step:not(:last-child)::after {
  position: absolute;
  top: -5px;
  right: -14px;
  color: var(--burgundy);
  font-family: "bootstrap-icons";
  font-size: 1rem;
  content: "\f138";
}

.order-step > span {
  display: block;
  margin-bottom: 38px;
  color: var(--burgundy);
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.order-step h3 {
  max-width: 310px;
  margin-bottom: 0;
  font-size: 1.15rem;
}

.centered-action {
  margin-top: 38px;
  text-align: center;
}

.cod-info-card {
  width: min(100%, 900px);
  margin: 0 auto 34px;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid #d52036;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(213, 32, 54, 0.16), transparent 48%),
    linear-gradient(145deg, rgba(67, 15, 24, 0.35), rgba(25, 26, 30, 0.96));
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28), 0 0 28px rgba(213, 32, 54, 0.08);
  text-align: center;
}

.cod-info-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(213, 32, 54, 0.48);
  border-radius: 14px;
  background: rgba(213, 32, 54, 0.13);
  color: #ff5367;
  font-size: 1.15rem;
}

.cod-info-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  line-height: 1.08;
}

.cod-info-card h3 span,
.cod-info-card h3 strong {
  display: block;
}

.cod-info-card h3 strong {
  color: #ff5367;
  font-weight: 700;
}

.cod-info-card > p {
  max-width: 650px;
  margin: 0 auto 25px;
  font-size: 0.9rem;
}

.cod-info-grid {
  display: grid;
  margin-bottom: 25px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cod-mini-card {
  display: flex;
  min-width: 0;
  min-height: 82px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(200, 203, 208, 0.16);
  border-radius: 13px;
  background: rgba(9, 7, 9, 0.78);
  text-align: left;
  gap: 12px;
}

.cod-mini-icon {
  flex: 0 0 auto;
  font-size: 1.35rem;
  line-height: 1;
}

.cod-mini-card div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}

.cod-mini-card strong {
  color: var(--text);
  font-size: 0.78rem;
}

.cod-mini-card small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.cod-info-cta {
  min-height: 52px;
  box-shadow: 0 0 15px rgba(213, 32, 54, 0.3), 0 10px 28px rgba(0, 0, 0, 0.22);
}

#pilih-pakej {
  scroll-margin-top: clamp(34px, 6vw, 72px);
}

@media (max-width: 767.98px) {
  .cod-info-card {
    padding: 26px 18px;
  }

  .cod-info-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cod-mini-card {
    min-height: 70px;
  }

  .cod-info-cta {
    width: 100%;
  }
}

.order-form {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

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

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

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

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

.form-field label {
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.form-field label > span:not(.optional) {
  color: var(--burgundy);
}

.form-field .optional {
  color: var(--muted);
  font-weight: 500;
}

.package-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.package-field legend {
  width: auto;
  margin: 0 0 8px;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.package-field legend span {
  color: var(--burgundy);
}

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

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

.package-option {
  position: relative;
  cursor: pointer;
}

.form-field .package-option input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.package-option > span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 72px;
  padding: 15px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: #111214;
  color: var(--text);
  gap: 12px;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.package-option-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.package-option strong {
  font-size: 0.82rem;
}

.package-option small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.package-option .package-bonus {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 600;
}

.package-option input:checked + span {
  border-color: var(--burgundy);
  background: rgba(213, 32, 54, 0.09);
  box-shadow: 0 0 0 2px rgba(213, 32, 54, 0.12);
}

.package-option input:focus-visible + span {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

.order-summary {
  padding: 22px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.order-summary h3 {
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.order-summary dl,
.order-summary dl div {
  margin: 0;
}

.order-summary dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  color: var(--muted);
  gap: 20px;
}

.order-summary dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.order-summary .order-summary-total {
  margin-top: 7px;
  padding-top: 15px;
  border-top: 1px solid var(--line-strong);
  color: var(--text);
  font-weight: 700;
}

.order-summary-total dd {
  color: var(--gold);
  font-family: "Sora", Arial, sans-serif;
  font-size: 1.15rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  outline: 0;
  background: #111214;
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 112px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #77747a;
}

.form-field select {
  color-scheme: dark;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(213, 32, 54, 0.15);
}

.order-form .honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.order-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 28px;
}

.order-form-footer p {
  display: flex;
  align-items: center;
  max-width: 490px;
  margin: 0;
  gap: 10px;
  font-size: 0.73rem;
}

.order-form-footer p > .icon-badge {
  font-size: 1.2rem;
}

.order-form-footer .btn {
  min-width: 220px;
}

.order-form-footer .btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.submit-label,
.submit-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.submit-label .icon-inline {
  margin-right: 0;
}

.submit-label[hidden],
.submit-loading[hidden] {
  display: none;
}

.form-spinner {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.38);
  border-top-color: #fff;
  border-radius: 50%;
  animation: formSpin 700ms linear infinite;
}

@keyframes formSpin {
  to {
    transform: rotate(360deg);
  }
}

.form-status {
  display: flex;
  align-items: flex-start;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid;
  border-radius: 10px;
  gap: 12px;
  outline: 0;
}

.form-status[hidden] {
  display: none;
}

.form-status i {
  margin-top: 2px;
  font-size: 1.15rem;
}

.form-status div {
  display: flex;
  flex-direction: column;
}

.form-status strong {
  color: var(--text);
  font-size: 0.82rem;
}

.form-status span {
  color: var(--muted);
  font-size: 0.75rem;
}

.form-status.is-success {
  border-color: rgba(232, 186, 85, 0.3);
  background: rgba(232, 186, 85, 0.07);
  color: #E8BA55;
}

.form-status.is-error {
  border-color: rgba(213, 32, 54, 0.35);
  background: rgba(213, 32, 54, 0.09);
  color: #FF5367;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(45px, 8vw, 110px);
}

.faq-intro {
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 18px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 380px;
  margin-bottom: 26px;
}

.faq-intro > a {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--burgundy);
  color: var(--text);
  gap: 9px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.faq-item {
  border-top: 1px solid var(--line-strong);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 78px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  gap: 20px;
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  text-align: left;
}

.faq-question:hover .icon-badge,
.faq-question:focus-visible .icon-badge,
.faq-item.open .faq-question .icon-badge {
  border-color: rgba(213, 32, 54, 0.35);
  background: rgba(213, 32, 54, 0.14);
  color: #FF5367;
}

.faq-question:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 3px;
}

.faq-answer {
  padding: 0 55px 22px 0;
}

.faq-answer p {
  margin: 0;
  font-size: 0.86rem;
}

/* Closing CTA */
.closing-cta {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 350px;
  padding: clamp(32px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: var(--card);
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 45px;
  overflow: hidden;
}

.closing-cta::after {
  position: absolute;
  right: -70px;
  bottom: -130px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  transform: rotate(45deg);
  content: "";
}

.closing-cta > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  opacity: 0.055;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.closing-cta > div,
.closing-cta > a {
  position: relative;
  z-index: 2;
}

.closing-cta h2 {
  max-width: 790px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.08;
}

.closing-cta p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: rgba(248, 247, 244, 0.74);
}

.closing-cta .btn {
  min-width: 235px;
}

/* Footer */
.site-footer {
  padding: 32px 0;
}

.footer-inner {
  display: grid;
  gap: 20px;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  object-fit: cover;
}

.footer-copyright {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer-links > a,
.footer-policy summary {
  color: var(--muted);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  list-style: none;
  text-decoration: none;
}

.footer-policy summary::-webkit-details-marker {
  display: none;
}

.footer-links > a:hover,
.footer-links > a:focus-visible,
.footer-policy summary:hover,
.footer-policy summary:focus-visible,
.footer-policy[open] summary {
  color: var(--text);
}

.footer-policy[open] {
  flex-basis: 100%;
}

.footer-policy p {
  max-width: 520px;
  margin: 10px 0 0 auto;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--card);
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.mobile-sticky-cta {
  display: none;
}

.whatsapp-float {
  position: fixed;
  z-index: 1040;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 999px;
  background: var(--burgundy);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38), 0 0 12px rgba(213, 32, 54, 0.28), 0 0 26px rgba(213, 32, 54, 0.12);
  color: var(--text);
  gap: 9px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.25s ease, background-color 180ms ease;
}

.whatsapp-float i {
  font-size: 1.22rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #ed2d43;
  color: var(--text);
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38), 0 0 18px rgba(213, 32, 54, 0.55), 0 0 42px rgba(213, 32, 54, 0.28);
}

.whatsapp-float:active {
  transform: translateY(0);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34), 0 0 10px rgba(213, 32, 54, 0.35);
}

@keyframes floatingSoft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.floating-element {
  animation: floatingSoft 6s ease-in-out infinite;
  will-change: transform;
}

.floating-delay-1 {
  animation-delay: -1s;
}

.floating-delay-2 {
  animation-delay: -2s;
}

.floating-delay-3 {
  animation-delay: -3s;
}

.floating-delay-4 {
  animation-delay: -4s;
}

.feature-card.floating-element:hover,
.benefit-mini-card.floating-element:hover,
.ingredient-card.floating-element:hover,
.price-card-float.floating-element:hover,
.package-option.floating-element:hover {
  animation-play-state: paused;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  transform: translate3d(0, -4px, 0) !important;
}

/* Reveal motion */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.floating-element:not(.is-visible) {
  animation: none;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 768px) {
  .js .price-card.popular.reveal.is-visible {
    transform: scale(1.02);
  }
}

/* Laptop */
@media (max-width: 1199.98px) {
  .product-stage {
    padding: 16px;
  }

  .hero-product-image {
    height: 100%;
  }

  .closing-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .closing-cta .btn {
    width: fit-content;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  :root {
    --section-space: 82px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .post-hero-trust ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-hero-trust li:nth-child(3) {
    border-left: 0;
  }

  .post-hero-trust li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .product-stage {
    width: min(100%, 500px);
    min-height: 0;
    margin: 10px auto 0;
  }

  .hero-product-image {
    height: 100%;
  }

  .intro-panel {
    max-width: 780px;
    margin: 0 auto;
  }

  .intro-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .video-section {
    padding: 72px 0;
  }

  .video-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .video-copy {
    max-width: 700px;
  }

  .product-video-wrap {
    width: min(100%, 560px);
    min-height: 0;
    margin: 0 auto;
  }

  .intro-visual img {
    max-height: 400px;
  }

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

  .important-card {
    min-height: 100px;
  }

  .price-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .faq-intro > p:not(.eyebrow) {
    max-width: 600px;
  }
}

/* Small tablet and phone */
@media (max-width: 767.98px) {
  :root {
    --section-space: 70px;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 3.4vw, 3.4rem);
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .product-stage {
    min-height: 0;
    padding: 14px;
  }

  .hero-product-image {
    height: 100%;
  }

  .intro-points {
    grid-template-columns: minmax(0, 1fr);
  }

  .intro-points > div {
    min-height: 58px;
  }

  .ingredients-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .ingredient-card {
    min-width: 0;
    padding: 14px;
    gap: 10px;
  }

  .ingredient-card .icon-badge {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .ingredient-card h3 {
    min-width: 0;
    font-size: 0.88rem;
    line-height: 1.3;
    white-space: normal;
  }

  .step-card {
    min-height: 230px;
  }

  .usage-poster {
    max-width: 100%;
  }

  .usage-steps {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .usage-steps .step-card {
    min-height: 88px;
    padding: 14px;
  }

  .step-card:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -26px;
    width: 1px;
    height: 32px;
  }

  .step-top {
    margin-bottom: 35px;
  }

  .pricing-grid {
    max-width: 460px;
    gap: 16px;
  }

  .price-card,
  .price-card.popular {
    min-height: 480px;
    transform: none;
  }

  .package-product-visual {
    height: 160px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .order-steps {
    gap: 0;
  }

  .order-step {
    min-height: 135px;
  }

  .order-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 27px;
    transform: rotate(90deg);
  }

  .order-step > span {
    margin-bottom: 22px;
  }

  .order-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-field-wide {
    grid-column: auto;
  }

  .package-options {
    grid-template-columns: minmax(0, 1fr);
  }

  .address-fields {
    grid-template-columns: minmax(0, 1fr);
  }

  .order-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .order-form-footer .btn {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    width: 100%;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-policy p {
    margin-right: auto;
    margin-left: 0;
  }
}

/* Compact phones */
@media (max-width: 575.98px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 32px, 1220px);
  }

  .hero-section {
    padding-top: 40px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions .btn,
  .centered-action .btn,
  .closing-cta .btn {
    width: 100%;
  }

  .post-hero-trust ul {
    grid-template-columns: minmax(0, 1fr);
  }

  .post-hero-trust li {
    min-height: 58px;
    justify-content: flex-start;
    padding: 12px 16px;
  }

  .post-hero-trust li + li,
  .post-hero-trust li:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .testimonial-context {
    width: 100%;
    align-items: center;
    border-radius: 12px;
    flex-direction: column;
    gap: 2px;
  }

  .benefits-poster.benefits-product-image {
    height: 320px;
    padding: 20px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 1035;
    right: 72px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 14px;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: var(--burgundy);
    box-shadow: 0 15px 36px rgba(0, 0, 0, 0.42), 0 0 22px rgba(213, 32, 54, 0.25);
    color: var(--text);
    gap: 9px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-decoration: none;
  }

  .mobile-sticky-cta:hover,
  .mobile-sticky-cta:focus-visible {
    background: #ed2d43;
    color: var(--text);
  }

  .mobile-sticky-cta:focus-visible {
    outline: 2px solid var(--silver);
    outline-offset: 3px;
  }

  .product-stage {
    min-height: 0;
    padding: 12px;
    border-radius: 18px;
  }

  .hero-product-image {
    height: 100%;
  }

  .problem-card h3 {
    font-size: clamp(0.94rem, 4.5vw, 1.08rem);
    line-height: 1.35;
  }

  .intro-panel {
    padding: 22px;
  }

  .video-section {
    padding: 56px 0;
  }

  .video-layout {
    gap: 34px;
  }

  .video-copy h2 {
    font-size: clamp(2rem, 3.4vw, 3.4rem);
  }

  .product-video-wrap {
    padding: 20px;
    border-radius: 20px;
  }

  .showcase-corner {
    width: 34px;
    height: 34px;
  }

  .showcase-corner--top {
    top: 14px;
    left: 14px;
  }

  .showcase-corner--bottom {
    right: 14px;
    bottom: 14px;
  }

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

  .ingredient-card {
    min-height: 96px;
  }

  .notice {
    padding: 16px;
  }

  .usage-poster {
    margin: 2rem auto 2.5rem;
  }

  .usage-steps .step-card {
    min-height: 88px;
    padding: 14px;
  }

  .usage-step-number {
    width: 26px;
    height: 26px;
  }

  .usage-step-icon.icon-inline {
    width: 34px;
    height: 34px;
    margin: 0;
    font-size: 1rem;
  }

  .step-card {
    padding: 23px;
  }

  .important-card {
    align-items: flex-start;
  }

  .closing-cta {
    padding: 30px 24px;
    border-radius: 18px;
    gap: 28px;
  }

  .faq-question {
    min-height: 70px;
    font-size: 0.84rem;
  }

  .faq-answer {
    padding-right: 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 52px;
    min-height: 52px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }

}

@media (max-width: 359.98px) {
  .container {
    width: min(100% - 24px, 1220px);
  }

  .product-stage {
    min-height: 0;
    padding: 10px;
  }

  .hero-product-image {
    height: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .promo-ticker__track {
    animation: none;
    will-change: auto;
  }

  .floating-element {
    animation: none;
    will-change: auto;
  }
}
