* {
  box-sizing: border-box;
}



html {
  scroll-behavior: smooth;
  background: #dcdcdc;
}

body {
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  color: #151515;
  background: #dcdcdc;
  line-height: 1.42;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

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

.page-shell {
  width: 480px;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  background: #f3f3f3;
  overflow: hidden;
  box-shadow: 0 0 34px rgba(0,0,0,.22);
  /* padding-bottom: 78px; */
}

.container {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 auto;
}

/* TOP PROMO */
.top-sale {
  background: #ffffff;
  color: #111;
  border-bottom: 3px solid #111;
}

.top-sale__inner {
  min-height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2px;
  font-weight: 800;
}

.top-sale strong {
  background: #e1251b;
  color: #ffffff;
  padding: 7px 10px;
  border-radius: 2px;
}

/* HEADER */
.site-header {
  background: #111;
  color: #fff;
  position: relative;
  z-index: 20;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.header-inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 14px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #ffd400;
  color: #111;
  font-weight: 900;
  border-radius: 4px;
}

.header-btn {
  background: #ffd400;
  color: #111;
  padding: 10px 11px;
  border-radius: 3px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
}

/* HERO */
.hero {
  background:
    linear-gradient(180deg, rgba(0,0,0,.90), rgba(0,0,0,.76)),
    url("img/hero-bg.webp") center/cover no-repeat;
  color: #fff;
  padding: 22px 0 28px;
}

.hero-grid,
.two-col,
.transform-grid,
.final-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.eyebrow,
.section-head span {
  display: inline-block;
  background: #ffd400;
  color: #111;
  padding: 7px 10px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: 38px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;
  line-height: 1.1;  
  margin-bottom: 13px;
  text-transform: uppercase;
  font-weight: 1000;
}

h2 {
  font-size: 30px;
  line-height: 1.04;
  margin-bottom: 12px;
  text-transform: uppercase;  
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 900;  
  
}

.hero-subtitle {
  font-size: 15.5px;
  color: rgba(255,255,255,.86);
  margin-bottom: 14px;
}

.mini-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 14px 0;
}

.mini-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  padding: 8px;
}

.mini-card img {
  height: 66px;
  object-fit: cover;
}

.mini-card strong {
  display: block;
  color: #ffd400;
  font-size: 14px;
}

.mini-card span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.75);
}

.rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 13px 0 10px;
  font-size: 16px;
}

.stars {
  color: #ffd400;
  letter-spacing: 1px;
}

.check-list,
.yellow-list,
.kit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 13px 0 16px;
  font-size: 18px;
}

.check-list li,
.yellow-list li,
.kit-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before,
.yellow-list li::before,
.kit-list li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  background: #ffd400;
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 900;
  border-radius: 50%;
  font-size: 12px;
}

.price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px;
  background: #fff;
  color: #111;
  border-left: 7px solid #ffd400;
  box-shadow: 0 10px 24px rgba(0,0,0,.24);
}

.old-price {
  display: block;
  color: #777;
  text-decoration: line-through;
  font-weight: 700;
  font-size: 13px;
}

.new-price {
  display: block;
  font-size: 38px;
  line-height: 1;
  color: #e1251b;
  font-weight: 1000;
}

.discount {
  background: #e1251b;
  color: #fff;
  padding: 8px 9px;
  border-radius: 3px;
  font-weight: 900;
}

.hero-side {
  display: grid;
  gap: 14px;
}

.product-card,
.image-frame {
  /* background: #fff; */
  /* padding: 8px; */
  /* border: 1px solid #dedede; */
  box-shadow: 0 12px 26px rgba(0,0,0,.15);
}

.product-card img {
  min-height: 280px;
  object-fit: cover;
}

/* FORM */
.order-form {
  background: #fff;
  color: #111;
  padding: 16px;
  border: 3px solid #ffd400;
  box-shadow: 0 12px 30px rgba(0,0,0,.26);
}

.order-form h3 {
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 8px;
}

.order-form p {
  color: #555;
  margin-bottom: 14px;
  font-size: 14.5px;
}

.order-form label {
  display: block;
  margin-bottom: 11px;
}

.order-form label span {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
  font-size: 13px;
}

.order-form input {
  width: 100%;
  height: 50px;
  border: 1px solid #cfcfcf;
  background: #f6f6f6;
  padding: 0 13px;
  font-size: 16px;
  outline: none;
}

.order-form input:focus {
  border-color: #111;
  background: #fff;
}

.btn-primary,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  cursor: pointer;
  text-align: center;
  font-weight: 1000;
  text-transform: uppercase;
  border-radius: 3px;
  font-size: 20px;
}

.btn-primary {
  width: 100%;
  background: #df382f;
  color: #fff;
  
  font-size: 15px;
}

.btn-dark {
  background: #df382f;
  color: #fff;
  margin-top: 16px;
}

.btn-large {
  width: 100%;
}

.form-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid #e0e0e0;
}

.form-trust span {
  font-size: 13px;
  font-weight: 800;
  color: #333;
  padding-left: 23px;
  position: relative;
}

.form-trust span::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  color: #0a8f3c;
  font-weight: 1000;
}

/* SECTIONS */
.section {
  padding: 34px 0;
  background: #f3f3f3;
}

.section-dark {
  padding: 36px 0;
  background: #111;
  color: #fff;
}

.spec-content p,
.transform-grid p,
.kit-text p,
.final-grid p {
  color: #555;
  font-size: 15.5px;
}

.section-dark p {
  color: rgba(255,255,255,.78);
}

.spec-table {
  margin-top: 16px;
  border: 1px solid #ddd;
  background: #fff;
}

.spec-table div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 12px;
  border-bottom: 1px solid #e2e2e2;
}

.spec-table div:last-child {
  border-bottom: 0;
}

.spec-table span {
  color: #666;
  font-weight: 700;
  font-size: 16px;
}

.spec-table strong {
  color: #111;
  font-size: 17px;
}

.image-frame--dark {
  background: #222;
  border-color: #333;
}

.yellow-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  font-size: 16px;
}

.formula-card {
  background: #fff;
  color: #111;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.32);
}

.formula-card > strong {
  font-size: 28px;
  text-align: center;
  line-height: 1;
}

.formula-item {
  text-align: center;
  font-weight: 900;
}

.formula-item img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 7px;
}

.section-head {
  
  margin: 0 auto 22px;
}

.size-grid,
.benefit-grid,
.steps-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.size-card,
.benefit-card,
.step-card,
.review-card {
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 9px 22px rgba(0,0,0,.08);
}

.size-card img,
.benefit-card img,
.step-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.size-card h3,
.benefit-card h3,
.step-card h3,
.review-card strong {
  margin: 13px 13px 7px;
  font-size: 20px;
  text-transform: uppercase;
}

.size-card p,
.benefit-card p,
.step-card p,
.review-card p {
  margin: 0 13px 15px;
  color: #555;
  font-size: 16px;
}

.center {
  text-align: center;
  margin-top: 20px;
}

.kit-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.kit-list li {
  background: rgba(255,255,255,.08);
  padding: 12px 12px 12px 40px;
}

.step-card {
  position: relative;
}

.step-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #ffd400;
  color: #111;
  font-weight: 1000;
  margin: -21px 0 0 13px;
  position: relative;
  z-index: 1;
}

.review-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  margin-bottom: 16px;
}

.review-score {
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 12px;
}

.review-score strong {
  font-size: 52px;
  line-height: 1;
}

.review-score span {
  display: block;
  color: #ffd400;
  font-size: 19px;
}

.review-score p {
  color: #666;
  margin: 4px 0 0;
}

.review-bars {
  display: grid;
  gap: 9px;
}

.review-bars div {
  display: grid;
  grid-template-columns: 72px 1fr 40px;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}

.review-bars b {
  height: 10px;
  background: #ececec;
  overflow: hidden;
  display: block;
}

.review-bars i {
  display: block;
  height: 100%;
  background: #ffd400;
}

.review-card {
  padding: 15px;
}

.review-card p {
  margin: 11px 0;
}

.review-top {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-top strong {
  margin: 0;
}

.review-top span {
  font-size: 13px;
  color: #0a8f3c;
  font-weight: 800;
}

.price-box--light {
  margin-top: 17px;
}

.order-form--final {
  border-color: #fff;
}

/* FOOTER */
.footer {
  background: #050505;
  color: #fff;
  padding: 32px 0;
}

.footer-inner {
  text-align: center;
}

.footer h3 {
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 18px;
}

.footer p {
  color: rgba(255,255,255,.72);
  font-size: 13.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  margin: 18px 0;
}

.footer-links a {
  color: #a7a7a7;
  font-weight: 800;
  font-size: 13.5px;
}

.footer-note {
  font-size: 12.5px;
  margin: 0 auto 12px;
}

.copyright {
  margin-bottom: 0;
  font-size: 12.5px;
}

/* STICKY MOBILE BAR */
.sticky-bar {
  position: fixed;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  width: 100%;
  max-width: 480px;
  bottom: 0;
  min-height: 64px;
  background: #111;
  color: #fff;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  box-shadow: 0 -10px 30px rgba(0,0,0,.22);
}

.sticky-bar strong {
  color: #ffd400;
  font-size: 24px;
  line-height: 1;
}

.sticky-bar span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.7);
}

.sticky-bar a {
  background: #df382f;
  color: #fff;
  padding: 13px 22px;
  font-weight: 1000;
  text-transform: uppercase;
  border-radius: 3px;
}
/* ===== FIX SYMBOLS IN LISTS ===== */

.check-list li::before,
.yellow-list li::before,
.kit-list li::before,
.form-trust span::before {
  content: "";
  top: -1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffd400;
  border: 2px solid #111;
}

.check-list li::after,
.yellow-list li::after,
.kit-list li::after,
.form-trust span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #111;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.kit-list li::before {
  top: 11px;
}

.kit-list li::after {
  top: 16px;
}

.form-trust span::before {
  background: #14a447;
  border-color: #14a447;
}

.form-trust span::after {
  border-color: #fff;
}


/* ===== ORDER FORM LIKE ORIGINAL ===== */

.ro-order-form {
  background: #ffffff;
  color: #191919;
  border: 0;
  box-shadow: none;
  padding: 28px 22px 24px;
  text-align: center;
}

.ro-order-form h3 {
  font-family: 'Roboto Condensed', Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: 1px;
  font-weight: 1000;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: #101010;
}

.ro-order-form .form-subtitle {
  font-size: 17px;
  line-height: 1.38;
  color: #4a4a4a;
  margin: 0 auto 14px;
}

.ro-order-form .form-subtitle strong {
  color: #333;
  font-weight: 900;
}

.work-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #565656;
  font-size: 18px;
  font-weight: 900;
  text-decoration: underline;
  margin-bottom: 26px;
}

.work-time span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fcd4a;
  box-shadow: 0 0 0 5px rgba(111, 205, 74, 0.12);
}

.input-row {
  position: relative;
  display: block;
  margin: 0 0 22px;
}

.ro-order-form label {
  margin-bottom: 22px;
}

.ro-order-form label span:not(.fingerprint-icon) {
  display: none;
}

.ro-order-form input {
  width: 100%;
  height: 76px;
  border-radius: 7px;
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 0 18px 0 60px;
  font-size: 19px;
  color: #333;
  outline: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.ro-order-form input::placeholder {
  color: #9a9a9a;
}

.ro-order-form input:focus {
  border-color: #c9c9c9;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(224, 55, 45, 0.08);
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f8f8f8;
  z-index: 2;
}

.input-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #333;
  transform: translate(-50%, -50%);
}


.input-icon--mail::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 11px;
  width: 14px;
  height: 9px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.btn-order {
  width: 100%;
  min-height: 84px;
  border: 0;
  border-radius: 18px;
  background: #df382f;
  color: #fff;
  box-shadow: 0 6px 0 #b42a24, 0 16px 30px rgba(223, 56, 47, 0.22);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.4px;
  margin-top: 1px;
}

.btn-order:disabled {
  opacity: 0.75;
  cursor: wait;
}

.fingerprint-icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 50%;
  position: relative;
}

.price-note {
  color: #666;
  font-size: 15px;
  line-height: 1.45;
  margin-top: 24px;
}

.final-order .ro-order-form {
  border: 0;
}




.sticky-bar {
  transition: all 0.3s ease;
}