:root {
  --orange: #ff7900;
  --orange-dark: #d95f00;
  --ink: #1d1712;
  --muted: #746b63;
  --paper: #f7f7f7;
  --white: #ffffff;
  --line: rgba(29, 23, 18, .1);
  --shadow: 0 8px 28px rgba(30, 20, 10, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 900; }

.shell {
  width: min(100% - 32px, 1080px);
  margin-inline: auto;
}
.narrow { max-width: 420px; }
.center { text-align: center; }
.section-orange { background: var(--orange); }
.section-light { background: var(--paper); }

.topbar {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), 420px);
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,121,0,.96);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
}
.brand img { width: 128px; }
.topbar__button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--orange);
  font-weight: 900;
}

.hero {
  min-height: 720px;
  padding: 132px 0 70px;
  text-align: center;
  color: var(--white);
}
.hero h1 {
  margin: 0;
  line-height: .95;
  font-size: clamp(2.7rem, 13vw, 4.8rem);
  font-weight: 900;
}
.hero h1 small {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(1.05rem, 5vw, 1.5rem);
  font-weight: 700;
}
.hero__image {
  width: min(100%, 430px);
  margin: 28px auto 0;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.16)) drop-shadow(0 20px 40px rgba(0,0,0,.12));
}
.hero__lead {
  margin: 26px 0 0;
  font-size: 1.25rem;
  font-weight: 900;
}
.hero__copy {
  max-width: 330px;
  margin: 10px auto 0;
  color: rgba(255,255,255,.88);
  font-size: .93rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 28px;
  padding: 0 34px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: var(--shadow);
  transition: transform .18s ease, opacity .18s ease;
}
.button:active { transform: scale(.97); }
.button-light { background: var(--white); color: var(--orange); }
.button-orange { background: var(--orange); color: var(--white); width: 100%; }

.trust-strip { padding: 0 0 36px; }
.trust-grid {
  max-width: 420px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: -30px;
}
.trust-card {
  min-height: 104px;
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 12px 6px;
  text-align: center;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
}
.trust-card svg { width: 23px; height: 23px; fill: var(--orange); }
.trust-card strong { font-size: clamp(.68rem, 3vw, .85rem); white-space: nowrap; }
.trust-card span { color: var(--muted); font-size: clamp(.56rem, 2.5vw, .74rem); line-height: 1.2; }

.section-title { text-align: center; margin-bottom: 22px; }
.section-title h2,
.clients h2,
.pickup h2,
.countdown h2,
.faq h2,
.verified h2 {
  margin: 0;
  color: var(--orange);
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 900;
}
.clients h2,
.pickup h2,
.verified h2 { color: var(--white); }
.section-title p,
.how p,
.faq p {
  color: var(--muted);
  font-size: .94rem;
}

.products-showcase,
.how,
.countdown,
.pricing,
.faq { padding: 48px 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.product-grid article {
  min-height: 152px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  text-align: center;
}
.product-grid img {
  height: 96px;
  width: 100%;
  object-fit: contain;
}
.product-grid strong { margin-top: 10px; }

.steps {
  display: grid;
  gap: 12px;
}
.steps article {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.steps span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}
.steps strong { display: block; margin-top: 10px; font-size: 1.05rem; }
.steps p { margin: 6px 0 0; }

.testimonial-original {
  padding: 48px 0;
  text-align: center;
}
.testimonial-original h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.12;
  font-weight: 900;
}
.testimonial-original p {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 900;
}
.original-video {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: #000;
}
.original-video video {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #000;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
}
.original-video.is-playing .video-play-overlay,
.original-video.is-playing .video-controls {
  display: none;
}
.play-circle {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: var(--shadow);
}
.play-triangle {
  width: 0;
  height: 0;
  display: block;
  margin-left: 6px;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 30px solid var(--white);
}
.play-triangle.small {
  margin-left: 3px;
  border-top-width: 8px;
  border-bottom-width: 8px;
  border-left-width: 13px;
}
.video-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px;
}
.video-progress {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.3);
}
.video-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--orange);
  transition: width .12s linear;
}
.video-control-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.video-toggle {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
}
.video-toggle.is-paused .pause-icon { display: none; }
.pause-icon {
  width: 12px;
  height: 14px;
  border-right: 4px solid var(--white);
  border-left: 4px solid var(--white);
}
.video-time {
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
}
.wave-divider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
  margin-bottom: -1px;
}
.wave-divider svg {
  width: 100%;
  height: 40px;
  display: block;
}
.wave-orange-to-light {
  background: var(--paper);
}
.wave-orange-to-light path {
  fill: var(--orange);
}
.wave-light-to-orange {
  background: var(--orange);
}
.wave-light-to-orange path {
  fill: var(--paper);
}
.weight-card-section {
  padding: 48px 0;
}
.weight-card {
  overflow: hidden;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.weight-card__image {
  overflow: hidden;
  border-bottom: 2px solid rgba(255,121,0,.3);
}
.weight-card__image img {
  width: 100%;
  object-fit: cover;
}
.weight-card__body {
  padding: 24px;
  text-align: center;
}
.weight-card__body h3 {
  margin: 0;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 900;
}
.weight-card__subtitle {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
}
.weight-card__body p:not(.weight-card__subtitle) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .9rem;
}
.weight-card__body .weight-card__strong {
  color: var(--ink);
  font-weight: 800;
}

.clients,
.pickup,
.verified { padding: 48px 0; color: rgba(255,255,255,.9); }
.subtitle-dark {
  margin: 2px 0 16px;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 900;
}
.clients p,
.pickup p,
.verified p {
  max-width: 330px;
  margin: 14px auto 0;
  font-size: .94rem;
}

.carousel {
  position: relative;
  max-width: 300px;
  margin: 26px auto 0;
}
.carousel__viewport {
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 8px;
}
.carousel__track {
  display: flex;
  transition: transform .35s ease;
}
.carousel__track img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.carousel__button {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.86);
  color: var(--orange);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.carousel__button.prev { left: 10px; }
.carousel__button.next { right: 10px; }
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.carousel__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
}
.carousel__dots button.active { background: var(--white); transform: scale(1.18); }

.framed-image {
  width: 100%;
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.pickup h2 { margin-top: 28px; }

.countdown { text-align: center; }
.countdown__label {
  margin-top: 18px;
  font-weight: 800;
  color: rgba(29,23,18,.8);
}
.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.timer span {
  display: block;
  color: rgba(29,23,18,.62);
  font-size: .63rem;
  font-weight: 800;
}
.timer strong {
  height: 56px;
  display: grid;
  place-items: center;
  margin-top: 6px;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.price-grid {
  max-width: 420px;
  display: grid;
  gap: 30px;
}
.price-card {
  position: relative;
  min-height: 560px;
  margin-top: 92px;
  padding: 132px 24px 24px;
  overflow: visible;
  background: var(--orange);
  border: 2px solid transparent;
  border-radius: 26px;
  box-shadow: 0 18px 36px rgba(255, 121, 0, .24);
  color: var(--white);
}
.price-card.featured {
  border-color: var(--orange-dark);
  transform: translateY(-2px);
}
.price-card .tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.price-card img {
  position: absolute;
  z-index: 2;
  top: -92px;
  left: 50%;
  width: min(86%, 280px);
  height: 220px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.2));
  pointer-events: none;
}
.price-card h3 {
  margin: 16px 0 0;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.2;
}
.price-card > p:not(.tag):not(.price-caption) {
  margin: 8px 0 0;
  color: rgba(255,255,255,.92);
  font-size: .96rem;
}
.price-details {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}
.price-details div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  font-size: .94rem;
  line-height: 1.2;
}
.price-details span {
  color: rgba(255,255,255,.92);
  font-weight: 700;
}
.price-details del {
  color: var(--ink);
  font-size: .92rem;
  font-weight: 900;
  text-decoration-thickness: 2px;
}
.price-details strong {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: 0;
}
.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-top: 20px;
  color: var(--white);
  line-height: .9;
  letter-spacing: 0;
}
.price-currency {
  font-size: clamp(1.7rem, 8vw, 2.12rem);
  font-weight: 900;
}
.price strong {
  font-size: clamp(3rem, 13vw, 3.45rem);
  letter-spacing: 0;
  line-height: .82;
}
.price sup {
  font-size: clamp(1.08rem, 4.5vw, 1.35rem);
  font-weight: 900;
  line-height: 1;
}
.price-caption {
  margin: 8px 0 0;
  color: var(--white);
  font-size: .9rem;
  font-weight: 900;
  text-align: center;
}
.price-card .button-orange {
  background: var(--white);
  color: var(--orange);
  min-height: 58px;
  margin-top: 22px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
}

.faq h2 { text-align: center; margin-bottom: 18px; }
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}
details + details { margin-top: 10px; }
summary {
  cursor: pointer;
  font-weight: 900;
  line-height: 1.3;
}
details p {
  margin: 10px 0 0;
  line-height: 1.55;
}

.verified__box {
  padding: 24px 18px;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
}
.verified img {
  width: 70px;
  margin: 0 auto 12px;
}
.verified__icons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 22px;
}
.verified__icons span {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: clamp(.78rem, 3.8vw, .98rem);
  line-height: 1.28;
  font-weight: 900;
}
.verified__icons svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}
.footer {
  padding: 24px 16px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  text-align: center;
  font-size: .78rem;
}

@media (min-width: 760px) {
  .topbar { width: min(calc(100% - 40px), 900px); }
  .hero { min-height: 780px; }
  .hero__copy { max-width: 440px; }
  .trust-grid { max-width: 720px; }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .price-grid { max-width: 1050px; grid-template-columns: repeat(3, 1fr); align-items: stretch; column-gap: 18px; row-gap: 34px; }
  .price-card { display: flex; flex-direction: column; }
  .price-card .button { margin-top: auto; }
}

@media (max-width: 370px) {
  .shell { width: min(100% - 24px, 1080px); }
  .topbar { height: 66px; }
  .brand img { width: 112px; }
  .topbar__button { padding-inline: 14px; }
  .timer { gap: 6px; }
  .timer strong { height: 50px; font-size: 1.35rem; }
  .price-card { min-height: 520px; margin-top: 78px; padding: 116px 20px 22px; border-radius: 22px; }
  .price-card img { top: -78px; height: 188px; }
  .price-card h3 { font-size: 1.08rem; }
  .price-details div { font-size: .86rem; }
}
