/* ═══════════════ PRO-WAX 100 · mobile-only landing ═══════════════ */
:root {
  --ink: #221a17;
  --ink-soft: #5c524d;
  --cream: #fdf6f0;
  --cream-2: #f7ebe1;
  --accent: #d64560;
  --accent-dark: #b3324b;
  --gold: #c99a5b;
  --green: #1fa855;
  --dark: #211b18;
  --radius: 18px;
  --shadow: 0 10px 32px rgba(34, 26, 23, .12);
  --font: "Noto Sans Armenian", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: #e9dccf;
  line-height: 1.6;
  padding-bottom: 66px; /* sticky CTA */
}

/* мобильная колонка: на десктопе просто центрируется */
.page {
  max-width: 480px;
  margin: 0 auto;
  background: var(--cream);
  box-shadow: 0 0 60px rgba(34, 26, 23, .25);
  overflow-x: clip;
  position: relative;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { line-height: 1.25; font-weight: 800; }
em { font-style: normal; color: var(--accent); }
section { padding: 44px 18px; }

.sec-title { font-size: 24px; text-align: center; margin-bottom: 24px; }
.sec-title--light { color: #fff; }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 30px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 8px 24px rgba(214, 69, 96, .35);
  text-align: center;
}
.btn:active { transform: scale(.97); }
.btn--big { font-size: 18px; padding: 17px 40px; }
.btn--small { font-size: 14px; padding: 9px 20px; }
.btn--full { width: 100%; }

.btn--pulse { animation: pulse 2.2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(214,69,96,.35), 0 0 0 0 rgba(214,69,96,.45); }
  50% { box-shadow: 0 8px 24px rgba(214,69,96,.35), 0 0 0 14px rgba(214,69,96,0); }
}

/* ═══════ PRICES ═══════ */
.price-old { color: var(--ink-soft); text-decoration: line-through; font-size: .7em; font-weight: 600; opacity: .75; }
.price-new { color: var(--accent); font-size: 1.3em; font-weight: 900; }

/* ═══════ TOPBAR ═══════ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 240, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(34, 26, 23, .07);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
}
.logo { font-weight: 900; font-size: 18px; letter-spacing: .5px; }
.logo span { color: var(--accent); }

/* ═══════ HERO ═══════ */
.hero { position: relative; padding: 26px 18px 40px; overflow: hidden; text-align: center; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; pointer-events: none; }
.hero__blob--1 { width: 300px; height: 300px; background: #f6cdd6; top: -90px; right: -90px; }
.hero__blob--2 { width: 260px; height: 260px; background: #f0dfc8; bottom: -110px; left: -90px; }
.hero__inner { position: relative; }

.hero__badge {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.hero h1 { font-size: 30px; margin-bottom: 14px; }

.hero__img { position: relative; max-width: 300px; margin: 0 auto 6px; }
.hero__img img { position: relative; z-index: 2; border-radius: 22px; box-shadow: var(--shadow); }
.hero__img-glow { position: absolute; inset: 8%; background: radial-gradient(circle, rgba(214,69,96,.28), transparent 70%); z-index: 1; }

/* рилс: с подписью, автоплей без звука */
.reelsec { padding: 26px 20px 34px; }
.reelsec__cap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .4px;
  margin-bottom: 16px;
}
.reelsec__line {
  flex: 1;
  max-width: 64px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.reelsec__line:last-child { background: linear-gradient(90deg, var(--accent), transparent); }
.reelsec video {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(34, 26, 23, .25);
}
.hero__sticker {
  position: absolute;
  z-index: 3;
  top: -12px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(214,69,96,.4);
  transform: rotate(10deg);
  animation: wobble 3.5s ease-in-out infinite;
}
@keyframes wobble {
  0%, 100% { transform: rotate(10deg) scale(1); }
  50% { transform: rotate(4deg) scale(1.06); }
}
.float-anim { animation: floaty 5s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero__cta { display: flex; align-items: center; justify-content: center; gap: 20px; margin: 16px 0 18px; flex-wrap: wrap; }
.hero__price { display: flex; flex-direction: column; line-height: 1.15; font-size: 24px; text-align: left; }
.hero__sub { font-size: 16px; color: var(--ink-soft); margin-bottom: 12px; }
.hero__list { display: inline-block; text-align: left; }
.hero__list li { padding: 3px 0; font-weight: 600; font-size: 15.5px; }

/* hero entrance */
.anim-fade-down, .anim-fade-up { opacity: 0; animation: fadeDown .8s cubic-bezier(.22,.8,.35,1) forwards; }
.anim-fade-up { animation-name: fadeUp; }
.d1 { animation-delay: .1s; } .d2 { animation-delay: .2s; } .d3 { animation-delay: .3s; } .d4 { animation-delay: .4s; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ═══════ TIMER ═══════ */
.timer { display: flex; align-items: center; justify-content: center; gap: 8px; }
.timer--hero { margin: 4px 0 2px; }
.timer__cell {
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 9px 0 7px;
  width: 82px;
  text-align: center;
}
.timer__cell span { font-size: 28px; font-weight: 900; display: block; font-variant-numeric: tabular-nums; line-height: 1.15; }
.timer__cell small { font-size: 13px; font-weight: 600; opacity: .9; }
.timer__sep { font-size: 24px; font-weight: 900; color: var(--ink); }

/* ═══════ TRUST STRIP ═══════ */
.trust { background: var(--ink); color: #fff; padding: 14px 18px; }
.trust__inner { display: flex; flex-direction: column; gap: 8px; }
.trust__item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; }
.trust__item span { font-size: 20px; }

/* ═══════ STORY ═══════ */
.story { padding-bottom: 30px; }
.story__text { font-size: 16.5px; color: #3d3531; margin-bottom: 18px; }
.story__text b { color: var(--ink); }
.story__imgwrap { position: relative; margin: 0 auto 18px; max-width: 340px; }
.story__imgwrap img { border-radius: var(--radius); box-shadow: var(--shadow); }
.story__imgchip {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(214,69,96,.4);
}
.story__imgchip--gold { background: var(--gold); box-shadow: 0 6px 16px rgba(201,154,91,.4); }

/* ═══════ PHOTO CARDS ═══════ */
.cards { padding-top: 20px; }
.cards__intro { text-align: center; color: var(--ink-soft); font-size: 15.5px; margin: -10px 0 22px; }
.cards__grid { display: flex; flex-direction: column; gap: 20px; }
.pcard {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(34,26,23,.05);
}
.pcard__imgwrap { position: relative; }
.pcard__label { padding: 13px 18px; font-weight: 700; font-size: 15px; background: var(--cream-2); text-align: center; }
.pcard__chip {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(214,69,96,.35);
}
.pcard__chip--green { background: var(--green); box-shadow: 0 6px 16px rgba(31,168,85,.35); }

.callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.3;
  background: rgba(34,26,23,.88);
  color: #fff;
  padding: 6px 11px;
  border-radius: 11px;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.callout i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: .3; } }
.callout--1 { right: 3%; top: 46%; }
.callout--2 { left: 3%; top: 64%; }
.callout--3 { left: 5%; top: 14%; }

/* ═══════ WAX TYPES ═══════ */
.benefits { background: linear-gradient(160deg, var(--dark), #3a2b24); }
.benefits__intro { color: rgba(255,255,255,.75); text-align: center; font-size: 15.5px; margin: -10px 0 22px; }
.benefits__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bcard {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px 14px;
  color: #fff;
  text-align: center;
}
.bcard__ico { font-size: 32px; margin-bottom: 10px; }
.bcard h3 { font-size: 16px; margin-bottom: 6px; }
.bcard p { font-size: 14px; opacity: .8; line-height: 1.45; }

/* ═══════ OFFER ═══════ */
.offer__card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  border: 1px solid rgba(34,26,23,.05);
  text-align: center;
}
.offer__card h2 { font-size: 21px; margin-bottom: 16px; }
.offer .timer { margin-bottom: 18px; }
.offer__stock-bar {
  height: 9px;
  background: #f0e4da;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto 8px;
  max-width: 300px;
}
.offer__stock-bar i {
  display: block;
  height: 100%;
  width: 24%;
  background: linear-gradient(90deg, var(--accent), #f08a3c);
  border-radius: 999px;
  transition: width 1.2s ease;
}
.offer__stock p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; }
.offer__stock b { color: var(--accent); }
.offer__prices { display: flex; flex-direction: column; font-size: 27px; line-height: 1.15; margin-bottom: 16px; }

/* ═══════ HOW ═══════ */
.step { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.step__num {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(214,69,96,.3);
}
.step h3 { font-size: 16px; margin-bottom: 3px; }
.step p { color: var(--ink-soft); font-size: 15px; }
.how__note {
  background: var(--cream-2);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14.5px;
  margin-bottom: 22px;
}

/* ═══════ SPECS ═══════ */
.specs__img { max-width: 320px; margin: 0 auto 20px; }
.specs__img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.specs__table table { width: 100%; border-collapse: collapse; }
.specs__table td { padding: 10px 4px; border-bottom: 1px solid rgba(34,26,23,.09); font-size: 15px; }
.specs__table td:first-child { color: var(--ink-soft); width: 46%; }
.specs__table td:last-child { font-weight: 700; }

/* ═══════ REVIEWS SLIDER ═══════ */
.reviews { background: linear-gradient(160deg, #2a2019, var(--dark)); padding-left: 0; padding-right: 0; }
.reviews .sec-title, .reviews__sub { padding: 0 18px; }
.reviews__sub { text-align: center; color: rgba(255,255,255,.7); margin: -14px 0 24px; font-size: 15px; }

.slider { position: relative; }
.slider__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 24px 12px;
  scrollbar-width: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 88%; scroll-snap-align: center; }

.slider__arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  transition: transform .2s, background .2s;
}
.slider__arrow:active { transform: translateY(-50%) scale(.92); }
.slider__arrow--prev { left: 8px; }
.slider__arrow--next { right: 8px; }

.slider__dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.slider__dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.slider__dots button.on { background: var(--accent); width: 22px; }
.slider__hint { text-align: center; color: rgba(255,255,255,.55); font-size: 13px; margin-top: 10px; animation: hintSlide 2.5s ease-in-out infinite; }
@keyframes hintSlide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }

/* ── «скриншот телефона» ── */
.shot {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0,0,0,.4);
  font-size: 14px;
  color: #050505;
  font-family: -apple-system, "Segoe UI", Roboto, var(--font);
}
.shot__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 14px 4px;
  font-size: 12.5px;
}
.shot__status b { font-weight: 700; letter-spacing: .3px; }
.shot__sicons { display: flex; align-items: center; gap: 5px; }

.ava {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 15px;
}
.ava--sm { width: 30px; height: 30px; font-size: 13px; }
.ava--brand { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }

.rx {
  font-style: normal;
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  line-height: 1;
  vertical-align: text-bottom;
}
.rx--like { background: #1877f2; font-size: 9px; }
.rx--love { font-size: 14px; }
.rx--like + .rx--love { margin-left: -5px; }

/* facebook post */
.fbp__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 14px 8px;
  border-bottom: 1px solid #e4e6eb;
}
.fbp__logo { color: #1877f2; font-weight: 900; font-size: 22px; letter-spacing: -.5px; font-family: Helvetica, Arial, sans-serif; }
.fbp__navicons i { font-style: normal; margin-left: 12px; font-size: 15px; }
.fbp__head { display: flex; align-items: center; gap: 8px; padding: 10px 14px 6px; }
.fbp__who { flex: 1; line-height: 1.25; }
.fbp__who b { display: block; font-size: 15px; }
.fbp__who span { font-size: 12.5px; color: #65676b; display: flex; align-items: center; gap: 3px; }
.fbp__dots { color: #65676b; font-weight: 700; }
.fbp__text { padding: 2px 14px 10px; font-size: 15px; line-height: 1.45; }
.fbp__img { width: 100%; }
.fbp__stats {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  color: #65676b;
  font-size: 12.5px;
  border-bottom: 1px solid #e4e6eb;
}
.fbp__reacts { display: flex; align-items: center; gap: 4px; }
.fbp__actions {
  display: flex;
  justify-content: space-around;
  padding: 7px 8px;
  color: #65676b;
  font-weight: 700;
  font-size: 12.5px;
  border-bottom: 1px solid #e4e6eb;
}

/* facebook comments */
.fbc { display: flex; gap: 8px; padding: 10px 14px 0; }
.fbc:last-child { padding-bottom: 14px; }
.fbc--reply { padding: 8px 0 0; }
.fbc__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px 10px;
  border-bottom: 1px solid #e4e6eb;
}
.fbc__header b { font-size: 15px; }
.fbc__header span { font-size: 22px; color: #050505; width: 20px; }
.fbc__sort { padding: 10px 14px 0; font-size: 12.5px; font-weight: 700; color: #65676b; }
.fbc__body { flex: 1; }
.fbc__bubble { background: #f0f2f5; border-radius: 16px; padding: 7px 11px; display: inline-block; }
.fbc__bubble b { font-size: 13.5px; display: flex; align-items: center; gap: 3px; margin-bottom: 1px; }
.fbc__bubble p { font-size: 14px; line-height: 1.4; color: #1c1e21; }
.fbc__meta { font-size: 12px; color: #65676b; margin: 4px 0 0 11px; font-weight: 600; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.fbc__likes {
  background: #fff;
  border-radius: 999px;
  padding: 1px 6px 1px 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  color: #65676b;
}

/* instagram */
.ig__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px 10px;
  border-bottom: 1px solid #dbdbdb;
}
.ig__header b { font-size: 15px; }
.ig__header span { font-size: 24px; line-height: 1; }
.ig__post { display: flex; gap: 10px; padding: 12px 14px; border-bottom: 1px solid #efefef; }
.ig__cap { font-size: 14px; line-height: 1.45; }
.ig__cap span { color: #8e8e8e; font-size: 13px; }
.igc { display: flex; gap: 10px; padding: 11px 14px 0; align-items: flex-start; }
.igc:last-of-type { padding-bottom: 6px; }
.igc--reply { padding-left: 48px; }
.igc__body { flex: 1; }
.igc__body p { font-size: 14px; line-height: 1.45; }
.igc__body p b { font-weight: 700; }
.igc__meta { font-size: 12.5px; color: #8e8e8e; margin-top: 3px; }
.igc__meta b { font-weight: 600; }
.igc__heart { flex: none; text-align: center; font-size: 13px; color: #8e8e8e; line-height: 1.1; padding-top: 4px; }
.igc__heart small { display: block; font-size: 10px; }
.igc:nth-child(odd) .igc__heart { color: #ed4956; animation: heartbeat 3s ease-in-out infinite; }
@keyframes heartbeat { 0%, 90%, 100% { transform: scale(1); } 93% { transform: scale(1.25); } 96% { transform: scale(1.1); } }
.ig__input {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px 14px;
  border-top: 1px solid #efefef;
  color: #8e8e8e;
  font-size: 13px;
}
.ig__input span { flex: 1; }
.ig__input em { font-style: normal; color: #b3dcf5; font-weight: 700; }

/* ═══════ DELIVERY ═══════ */
.dcard {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(34,26,23,.05);
  margin-bottom: 16px;
  overflow: hidden;
}
.dcard__imgwrap { position: relative; }
.dcard__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.dcard__num {
  position: absolute;
  left: 14px;
  bottom: -18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 900;
  font-size: 19px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(214,69,96,.35);
  border: 3px solid #fff;
}
.dcard__body { padding: 24px 18px 16px; }
.dcard h3 { font-size: 16px; margin-bottom: 5px; }
.dcard p { font-size: 14.5px; color: var(--ink-soft); }
.dcard p b { color: var(--ink); }

/* ═══════ ORDER ═══════ */
.order { background: var(--cream-2); }
.order__info { text-align: center; margin-bottom: 22px; }
.order__info h2 { font-size: 24px; margin-bottom: 12px; }
.order__prices { font-size: 30px; display: flex; align-items: baseline; justify-content: center; gap: 14px; margin-bottom: 6px; }
.order__timer { font-size: 15px; color: var(--ink-soft); margin-bottom: 14px; }
.order__timer b { color: var(--accent); font-variant-numeric: tabular-nums; }
.order__perks { display: inline-block; text-align: left; }
.order__perks li { padding: 4px 0; font-weight: 600; font-size: 15px; }

.form {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  border: 1px solid rgba(34,26,23,.05);
  position: relative;
  overflow: hidden;
}
.form h3 { font-size: 21px; text-align: center; }
.form__sub { text-align: center; color: var(--ink-soft); font-size: 14px; margin: 5px 0 18px; }
.form__field { display: block; margin-bottom: 14px; }
.form__field span { display: block; font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.form__field input {
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  padding: 13px 15px;
  border: 2px solid #eadfd6;
  border-radius: 12px;
  outline: none;
  transition: border-color .2s;
  background: var(--cream);
}
.form__field input:focus { border-color: var(--accent); }
.form__field input.err { border-color: #e03131; animation: shake .35s; }
@keyframes shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.form__note { font-size: 12.5px; color: var(--ink-soft); text-align: center; margin-top: 10px; }

.form__ok {
  position: absolute;
  inset: 0;
  background: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.form.is-done .form__ok { opacity: 1; pointer-events: auto; }
.form__ok-ico { font-size: 48px; margin-bottom: 8px; }
.form__ok p { color: var(--ink-soft); margin-top: 6px; font-size: 15px; }

/* ═══════ ORDER STEPS ═══════ */
.osteps__grid { display: flex; flex-direction: column; gap: 14px; }
.ostep {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  text-align: center;
  border: 1px solid rgba(34,26,23,.05);
}
.ostep__num {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--accent);
  font-size: 20px;
  font-weight: 900;
  display: grid;
  place-items: center;
  border: 2px dashed var(--accent);
}
.ostep h3 { font-size: 16px; margin-bottom: 5px; }
.ostep p { font-size: 14.5px; color: var(--ink-soft); }

/* ═══════ FAQ ═══════ */
.faq__item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(34,26,23,.07);
  margin-bottom: 10px;
  border: 1px solid rgba(34,26,23,.05);
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 44px 15px 18px;
  list-style: none;
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform .25s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 18px 15px; color: var(--ink-soft); font-size: 14.5px; }

/* ═══════ FINAL ═══════ */
.final { background: linear-gradient(160deg, var(--dark), #47301f); color: #fff; text-align: center; padding: 56px 18px; }
.final h2 { font-size: 26px; margin-bottom: 10px; }
.final p { opacity: .85; font-size: 16px; }
.final__price { font-size: 32px; margin: 20px 0; display: flex; gap: 14px; justify-content: center; align-items: baseline; }
.final__price .price-new { color: #ffb26b; }
.final__timer { margin-top: 18px; opacity: .9; font-size: 15px; }
.final__timer b { font-variant-numeric: tabular-nums; color: #ffb26b; }

/* ═══════ FOOTER ═══════ */
.footer { background: #17120f; color: rgba(255,255,255,.7); padding: 30px 18px; text-align: center; font-size: 14px; }
.footer .logo { color: #fff; margin-bottom: 8px; }
.footer__copy { font-size: 12.5px; opacity: .6; margin-top: 6px; }

/* ═══════ STICKY CTA ═══════ */
.sticky-cta {
  position: fixed;
  left: 50%;
  transform: translate(-50%, 110%);
  bottom: 0;
  z-index: 200;
  width: 100%;
  max-width: 480px;
  background: #fff;
  box-shadow: 0 -8px 30px rgba(0,0,0,.15);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: transform .35s;
}
.sticky-cta.show { transform: translate(-50%, 0); }
.sticky-cta__price { display: flex; flex-direction: column; line-height: 1.1; }
.sticky-cta__price b { color: var(--accent); font-size: 21px; }
.sticky-cta__timer { display: flex; flex-direction: column; align-items: center; line-height: 1.2; }
.sticky-cta__timer small { font-size: 12px; color: var(--ink-soft); }
.sticky-cta__timer b { color: var(--accent); font-size: 18px; font-variant-numeric: tabular-nums; }

/* ═══════ SCROLL REVEAL ═══════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22,.8,.35,1), transform .7s cubic-bezier(.22,.8,.35,1);
}
.reveal.visible { opacity: 1; transform: none; }
