/* ============================================================
   MUDPRO — Main Stylesheet
   Architecture: BEM + Utility Helpers
   Token family: --brand / --brand-alt / --highlight
   Palette: Dark Navy · Metallic Blue · Ivory · Wax · White
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --brand:           #0d1f3c;
  --brand-alt:       #1b4f9a;
  --brand-deep:      #071428;
  --highlight:       #3b82f6;
  --highlight-hover: #2563eb;
  --highlight-soft:  #dbeafe;
  --metallic:        #7a9bbd;
  --metallic-light:  #c0d4e8;
  --metallic-pale:   #e8f1f8;

  --ivory:           #fdf8ee;
  --wax:             #f0ebe0;
  --wax-mid:         #e8e0d0;
  --white:           #ffffff;

  --txt-dark:        #0d1f3c;
  --txt-mid:         #334e7a;
  --txt-soft:        #6080a8;
  --txt-pale:        #94afc8;

  --border-soft:     #d8e8f4;
  --border-card:     #e4eff8;

  --sh-xs:  0 1px 4px rgba(13,31,60,.07);
  --sh-sm:  0 2px 10px rgba(13,31,60,.09);
  --sh-md:  0 4px 22px rgba(13,31,60,.12);
  --sh-lg:  0 8px 40px rgba(13,31,60,.16);
  --sh-hero:0 20px 60px rgba(13,31,60,.22);

  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 100px;

  --f-head: 'Montserrat', sans-serif;
  --f-body: 'Source Sans 3', sans-serif;

  --hdr-h: 70px;
  --container: 1160px;

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--txt-dark);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* ---- Container ---- */
.hdr__wrap,
.hero__wrap,
.trust-strip__wrap,
.audience__wrap,
.product-blk__wrap,
.benefits__wrap,
.routine__wrap,
.reviews__wrap,
.faq-sec__wrap,
.order-sec__wrap,
.contact-sec__wrap,
.site-footer__wrap {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

/* ---- Section Label ---- */
.lbl {
  display: inline-block;
  font-family: var(--f-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  background: var(--highlight-soft);
  padding: 0.3em 0.85em;
  border-radius: var(--r-pill);
  margin-bottom: 0.9rem;
}

/* ---- Utility margin ---- */
.u-mt-md { margin-top: 1.75rem; }

/* ======================================
   BUTTONS
====================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--f-head);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition: background 0.22s var(--ease-out),
              color 0.22s var(--ease-out),
              transform 0.15s ease,
              box-shadow 0.22s ease;
  cursor: pointer;
}
.btn--pill { border-radius: var(--r-pill); }

.btn--primary {
  background: linear-gradient(135deg, var(--highlight) 0%, var(--brand-alt) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(59,130,246,.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--highlight-hover) 0%, #163d7a 100%);
  box-shadow: 0 6px 24px rgba(59,130,246,.45);
  transform: translateY(-2px);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.85);
}

.btn--sm  { padding: 0.55rem 1.3rem; font-size: 0.82rem; }
.btn--md  { padding: 0.75rem 1.75rem; font-size: 0.9rem; }
.btn--lg  { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ======================================
   COOKIE BANNER
====================================== */
.ck-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--brand);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.5rem;
  display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.ck-bar.is-visible { display: block; }

.ck-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.ck-bar__text {
  flex: 1;
  font-size: 0.87rem;
  color: var(--metallic-light);
  line-height: 1.5;
}
.ck-bar__link {
  color: var(--highlight);
  text-decoration: underline;
}
.ck-bar__btns {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}
.ck-bar__btn {
  padding: 0.5rem 1.3rem;
  border-radius: var(--r-pill);
  font-family: var(--f-head);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all .2s;
}
.ck-bar__btn--accept {
  background: var(--highlight);
  color: var(--white);
}
.ck-bar__btn--accept:hover { background: var(--highlight-hover); }
.ck-bar__btn--reject {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--metallic-light);
}
.ck-bar__btn--reject:hover { border-color: rgba(255,255,255,.6); color: var(--white); }

/* ======================================
   HEADER
====================================== */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--hdr-h);
  background: rgba(7,20,40,.92);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .25s ease, background .25s ease;
}
.hdr.is-scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  background: rgba(7,20,40,.98);
}

.hdr__wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hdr__brand { flex-shrink: 0; }

.hdr__nav { margin-left: auto; }
.hdr__nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.hdr__nav-link {
  font-family: var(--f-head);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 0.45rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}
.hdr__nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,.07);
}
.hdr__nav-link--cta {
  background: var(--highlight);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--r-pill);
  margin-left: 0.4rem;
}
.hdr__nav-link--cta:hover {
  background: var(--highlight-hover);
}

.hdr__tel {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--f-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}
.hdr__tel:hover { color: var(--highlight); }

.hdr__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.hdr__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.8);
  border-radius: 2px;
  transition: all .25s;
}

/* ======================================
   HERO
====================================== */
.hero {
  padding-top: calc(var(--hdr-h) + 4.5rem);
  padding-bottom: 5rem;
  background: linear-gradient(155deg, var(--brand-deep) 0%, var(--brand) 42%, #1b3a70 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(59,130,246,.18) 0%, transparent 60%);
  pointer-events: none;
}

.hero__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--f-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--metallic-light);
  margin-bottom: 1rem;
}

.hero__h1 {
  font-family: var(--f-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero__h1-accent {
  background: linear-gradient(90deg, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero__tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.hero__tag {
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--metallic-light);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  padding: 0.28em 0.75em;
  border-radius: var(--r-pill);
}

.hero__visual { display: flex; justify-content: center; }

.hero__img-holder {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero__img {
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-hero);
  object-fit: cover;
  aspect-ratio: 6/5;
}

.hero__natural-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -0.75rem;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 0.85rem 1.15rem;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 148px;
  border-left: 3px solid #22c55e;
}
.hero__natural-badge-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.hero__natural-badge-text {
  font-family: var(--ff-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ======================================
   TRUST STRIP
====================================== */
.trust-strip {
  background: var(--brand-alt);
  padding: 1.1rem 0;
}
.trust-strip__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
}
.trust-strip__ico {
  width: 18px;
  height: 18px;
  stroke: #93c5fd;
  flex-shrink: 0;
}

/* ======================================
   AUDIENCE / FOR WHOM
====================================== */
.audience {
  padding: 5.5rem 0;
  background: var(--ivory);
}
.audience__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.audience__h2 {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.audience__intro {
  color: var(--txt-mid);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.chklist { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 0.5rem; }
.chklist__row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--txt-dark);
  line-height: 1.5;
}
.chklist__mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight) 0%, var(--brand-alt) 100%);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.audience__imgs { position: relative; }
.audience__img-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}
.audience__img {
  border-radius: var(--r-lg);
  object-fit: cover;
  box-shadow: var(--sh-md);
}
.audience__img--a { width: 100%; aspect-ratio: 16/10; }
.audience__img--b { width: 82%; aspect-ratio: 16/10; }

/* ======================================
   PRODUCT BLOCK
====================================== */
.product-blk {
  padding: 5.5rem 0;
  background: var(--white);
}
.product-blk__wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.product-blk__frame {
  position: relative;
  background: linear-gradient(145deg, var(--metallic-pale) 0%, var(--wax) 100%);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.product-blk__frame-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(59,130,246,.15) 0%, transparent 60%);
  pointer-events: none;
}
.product-blk__img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 32px rgba(13,31,60,.22));
}

.product-blk__h2 {
  font-family: var(--f-head);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.2;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}
.product-blk__desc {
  color: var(--txt-mid);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.prod-feats { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.prod-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.prod-feat__ico-wrap {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--highlight-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prod-feat__ico-wrap svg {
  width: 18px;
  height: 18px;
  stroke: var(--highlight);
}
.prod-feat__body strong {
  display: block;
  font-family: var(--f-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.1rem;
}
.prod-feat__body span {
  font-size: 0.85rem;
  color: var(--txt-soft);
}

.prod-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-soft);
}
.prod-price { display: flex; flex-direction: column; }
.prod-price__num {
  font-family: var(--f-head);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.prod-price__note {
  font-size: 0.78rem;
  color: var(--txt-soft);
  margin-top: 0.2rem;
}

/* ======================================
   BENEFITS / LIFESTYLE CARDS
====================================== */
.benefits {
  padding: 5.5rem 0;
  background: var(--wax);
}
.benefits__hdr {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 640px;
  margin-inline: auto 3rem;
}
.benefits__h2 {
  font-family: var(--f-head);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.benefits__sub { color: var(--txt-mid); font-size: 0.98rem; }

.lc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.lc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-card);
  transition: transform .25s var(--ease-out), box-shadow .25s ease;
}
.lc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.lc-card__thumb { overflow: hidden; aspect-ratio: 16/9; }
.lc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.lc-card:hover .lc-card__img { transform: scale(1.04); }
.lc-card__body { padding: 1.2rem 1.25rem 1.5rem; }
.lc-card__title {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 0.5rem;
}
.lc-card__text { font-size: 0.875rem; color: var(--txt-mid); line-height: 1.6; }

/* ======================================
   ROUTINE STEPS
====================================== */
.routine {
  padding: 5.5rem 0;
  background: var(--brand);
  position: relative;
  overflow: hidden;
}
.routine::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(59,130,246,.15) 0%, transparent 55%);
  pointer-events: none;
}
.routine__wrap { position: relative; z-index: 1; }

.routine__hdr {
  text-align: center;
  margin-bottom: 3.5rem;
}
.routine__hdr .lbl {
  background: rgba(59,130,246,.2);
  color: #93c5fd;
}
.routine__h2 {
  font-family: var(--f-head);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}
.routine__sub { color: rgba(255,255,255,.65); font-size: 0.98rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: background .25s;
}
.step:hover { background: rgba(255,255,255,.1); }

.step__num {
  font-family: var(--f-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px rgba(59,130,246,.6);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.step__title {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
}
.step__text { font-size: 0.88rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ======================================
   REVIEWS / TESTIMONIALS
====================================== */
.reviews {
  padding: 5.5rem 0;
  background: var(--ivory);
}
.reviews__hdr {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews__h2 {
  font-family: var(--f-head);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
}
.reviews__sub { color: var(--txt-mid); font-size: 0.98rem; }

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.rev-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .25s var(--ease-out);
}
.rev-card:hover { transform: translateY(-4px); }

.rev-card__stars { color: #f59e0b; font-size: 1.05rem; letter-spacing: 2px; }
.rev-card__quote {
  font-size: 0.925rem;
  color: var(--txt-mid);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  quotes: "\201C" "\201D";
}
.rev-card__person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-card);
}
.rev-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-alt), var(--highlight));
  color: var(--white);
  font-family: var(--f-head);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rev-card__meta strong {
  display: block;
  font-family: var(--f-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
}
.rev-card__meta span { font-size: 0.78rem; color: var(--txt-soft); }

/* ======================================
   FAQ
====================================== */
.faq-sec {
  padding: 5.5rem 0;
  background: var(--white);
}
.faq-sec__hdr {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-sec__h2 {
  font-family: var(--f-head);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.faq-acc { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: 0.65rem; }

.faq-acc__item {
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .2s;
}
.faq-acc__item:has([aria-expanded="true"]) {
  box-shadow: var(--sh-sm);
  border-color: var(--metallic-light);
}

.faq-acc__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--f-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand);
  background: transparent;
  text-align: left;
  transition: background .2s;
}
.faq-acc__q:hover { background: var(--metallic-pale); }
.faq-acc__q[aria-expanded="true"] { background: var(--highlight-soft); color: var(--brand-alt); }

.faq-acc__arr {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--metallic);
  transition: transform .25s var(--ease-out);
}
.faq-acc__q[aria-expanded="true"] .faq-acc__arr {
  transform: rotate(180deg);
  stroke: var(--highlight);
}

.faq-acc__a {
  padding: 0 1.4rem 1.25rem;
  font-size: 0.9rem;
  color: var(--txt-mid);
  line-height: 1.7;
  border-top: 1px solid var(--border-soft);
}
.faq-acc__a[hidden] { display: none; }

/* ======================================
   ORDER SECTION
====================================== */
.order-sec {
  padding: 5.5rem 0;
  background: linear-gradient(160deg, var(--wax) 0%, var(--ivory) 100%);
}
.order-sec__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.order-sec__h2 {
  font-family: var(--f-head);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.2;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.order-sec__desc { color: var(--txt-mid); margin-bottom: 1.75rem; line-height: 1.65; }

.order-hls { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.order-hl {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--txt-dark);
  font-weight: 500;
}
.order-hl svg { stroke: var(--highlight); flex-shrink: 0; }

.order-pricebox {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-soft);
}
.order-pricebox__lbl { font-size: 0.82rem; color: var(--txt-soft); display: block; margin-bottom: 0.3rem; }
.order-pricebox__val {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  display: block;
  line-height: 1.1;
}
.order-pricebox__note { font-size: 0.78rem; color: var(--txt-soft); display: block; margin-top: 0.25rem; }

.o-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border-soft);
}
.o-form__row { display: flex; gap: 1rem; }
.o-form__row--2 > * { flex: 1; }

.fld { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1rem; }
.fld__lbl {
  font-family: var(--f-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--txt-dark);
}
.fld__lbl span { color: var(--highlight); }
.fld__inp {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: var(--txt-dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.fld__inp:focus {
  border-color: var(--highlight);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}
.fld__inp.is-invalid { border-color: #ef4444; }
.fld__inp::placeholder { color: var(--txt-pale); }
.fld__sel { appearance: none; cursor: pointer; }
.fld__err {
  font-size: 0.78rem;
  color: #ef4444;
  min-height: 1rem;
  display: block;
}

.o-form__consent {
  font-size: 0.79rem;
  color: var(--txt-soft);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.o-form__consent a {
  color: var(--highlight);
  text-decoration: underline;
}
.o-form__consent a:hover { color: var(--highlight-hover); }

/* ======================================
   CONTACT
====================================== */
.contact-sec {
  padding: 5rem 0;
  background: var(--brand);
}
.contact-sec__hdr {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-sec__hdr .lbl { background: rgba(59,130,246,.2); color: #93c5fd; }
.contact-sec__h2 {
  font-family: var(--f-head);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.contact-sec__hdr p { color: rgba(255,255,255,.6); }

.cntc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.cntc-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: background .25s;
}
.cntc-card:hover { background: rgba(255,255,255,.11); }
.cntc-card__ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(59,130,246,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.cntc-card__ico svg { width: 22px; height: 22px; stroke: #93c5fd; }
.cntc-card h3 {
  font-family: var(--f-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cntc-card a {
  display: block;
  font-family: var(--f-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 0.3rem;
  word-break: break-all;
}
.cntc-card a:hover { color: var(--white); }
.cntc-card span { font-size: 0.8rem; color: rgba(255,255,255,.5); }
.cntc-card address { font-size: 0.88rem; color: rgba(255,255,255,.75); line-height: 1.65; margin-bottom: 0.3rem; }

/* ======================================
   FOOTER
====================================== */
.site-footer {
  background: var(--brand-deep);
  padding: 3.5rem 0 0;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer__tagline {
  font-size: 0.87rem;
  color: rgba(255,255,255,.55);
  margin-top: 0.85rem;
  line-height: 1.6;
}
.site-footer__addr {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  margin-top: 0.4rem;
}
.site-footer__col-title {
  font-family: var(--f-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.site-footer__links li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.site-footer__links li a:hover { color: var(--highlight); }

.site-footer__bottom {
  padding: 1.75rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.site-footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,.38);
  line-height: 1.65;
  max-width: 900px;
}
.site-footer__disclaimer strong { color: rgba(255,255,255,.55); }
.site-footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}

/* ======================================
   LEGAL PAGES
====================================== */
.legal-page { padding-top: var(--hdr-h); min-height: 100vh; background: var(--ivory); }
.legal-page__hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-alt) 100%);
  padding: 3.5rem 0 3rem;
  text-align: center;
}
.legal-page__hero h1 {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
}
.legal-page__hero p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  margin-top: 0.5rem;
}
.legal-page__body {
  max-width: 780px;
  margin: 3rem auto;
  padding: 0 1.25rem 4rem;
}
.legal-page__body h2 {
  font-family: var(--f-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand);
  margin: 2rem 0 0.65rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--highlight-soft);
}
.legal-page__body h3 {
  font-family: var(--f-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  margin: 1.25rem 0 0.4rem;
}
.legal-page__body p { font-size: 0.9rem; color: var(--txt-mid); line-height: 1.75; margin-bottom: 0.85rem; }
.legal-page__body ul { padding-left: 1.4rem; list-style: disc; margin-bottom: 0.85rem; }
.legal-page__body ul li { font-size: 0.9rem; color: var(--txt-mid); line-height: 1.65; margin-bottom: 0.3rem; }
.legal-page__body a { color: var(--highlight); text-decoration: underline; }

/* ======================================
   SUCCESS PAGE
====================================== */
.success-page {
  min-height: 100vh;
  background: linear-gradient(155deg, var(--brand-deep) 0%, var(--brand) 50%, var(--brand-alt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}
.success-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 3.5rem 2.5rem;
  max-width: 520px;
  width: 100%;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(59,130,246,.25);
  border: 2px solid rgba(59,130,246,.5);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon svg { width: 32px; height: 32px; stroke: #93c5fd; }
.success-card h1 {
  font-family: var(--f-head);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.85rem;
}
.success-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 1024px) {
  .lc-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__wrap { gap: 2rem; }
  .product-blk__wrap { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .audience__wrap { gap: 2.5rem; }
  .order-sec__grid { gap: 2.5rem; }
}

@media (max-width: 860px) {
  .hdr__nav { display: none; }
  .hdr__nav.is-open {
    display: block;
    position: fixed;
    top: var(--hdr-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7,20,40,.97);
    z-index: 800;
    padding: 2rem 1.5rem;
    overflow-y: auto;
  }
  .hdr__nav.is-open .hdr__nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hdr__nav.is-open .hdr__nav-link {
    display: block;
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }
  .hdr__burger { display: flex; }
  .hdr__tel { display: none; }

  .hero__wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__tags { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__natural-badge { right: 0.5rem; }

  .audience__wrap { grid-template-columns: 1fr; }
  .audience__imgs { display: none; }

  .product-blk__wrap { grid-template-columns: 1fr; }
  .product-blk__frame { max-width: 380px; margin-inline: auto; }

  .steps { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .cntc-cards { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .order-sec__grid { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .trust-strip__wrap { gap: 1.25rem; }
}

@media (max-width: 600px) {
  .lc-grid { grid-template-columns: 1fr; }
  .o-form__row--2 { flex-direction: column; }
  .o-form { padding: 1.5rem 1.25rem; }
  .hero { padding-top: calc(var(--hdr-h) + 3rem); padding-bottom: 3.5rem; }
  .audience, .product-blk, .benefits, .routine, .reviews, .faq-sec, .order-sec { padding: 4rem 0; }
  .hero__actions { flex-direction: column; align-items: center; }
  .trust-strip__item span { display: none; }
  .trust-strip__item { justify-content: center; }
  .trust-strip__ico { width: 24px; height: 24px; }
}

/* ============================================================
   LEGAL PAGE — EXTENDED COMPONENTS
   ============================================================ */

/* Highlighted notice box */
.legal-page__notice {
  background: #dbeafe;
  border-left: 4px solid var(--highlight);
  border-radius: var(--r-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--brand);
}

/* Data table */
.legal-page__table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.92rem;
}
.legal-page__table th,
.legal-page__table td {
  text-align: left;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border-soft);
}
.legal-page__table th {
  background: var(--metallic-pale);
  font-weight: 600;
  color: var(--brand);
}
.legal-page__table tr:nth-child(even) td {
  background: var(--ivory);
}
.legal-page__table code {
  background: #e8f1f8;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.88em;
}
@media (max-width: 600px) {
  .legal-page__table { font-size: 0.82rem; }
  .legal-page__table th,
  .legal-page__table td { padding: 0.5rem 0.6rem; }
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page {
  min-height: calc(100vh - var(--hdr-h) - 120px);
  background: var(--ivory);
  display: flex;
  align-items: center;
  padding: calc(var(--hdr-h) + 4rem) 1.25rem 5rem;
}
.success-page__wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* Animated checkmark */
.success-page__icon {
  margin-bottom: 1.75rem;
}
.success-check {
  width: 88px;
  height: 88px;
  display: inline-block;
}
.success-check__circle {
  stroke-dasharray: 232;
  stroke-dashoffset: 232;
  animation: drawCircle 0.7s ease forwards 0.1s;
}
.success-check__tick {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawTick 0.45s ease forwards 0.75s;
}
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawTick {
  to { stroke-dashoffset: 0; }
}

.success-page__title {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.75rem;
}
.success-page__lead {
  font-size: 1.05rem;
  color: var(--txt-mid);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

/* Steps list */
.success-page__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.success-page__step {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--sh-xs);
}
.success-page__step-num {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--highlight);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2rem;
}
.success-page__step-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.success-page__step-body strong {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand);
}
.success-page__step-body span {
  font-size: 0.92rem;
  color: var(--txt-mid);
  line-height: 1.55;
}

/* Trust note */
.success-page__trust {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--metallic-pale);
  border-radius: var(--r-sm);
  padding: 0.75rem 1.1rem;
  font-size: 0.9rem;
  color: var(--txt-mid);
  margin-bottom: 2rem;
}

/* CTA */
.success-page__cta {
  margin-bottom: 1.5rem;
}

/* Contact fallback */
.success-page__contact {
  font-size: 0.9rem;
  color: var(--txt-soft);
}
.success-page__contact a {
  color: var(--highlight);
  text-decoration: underline;
}

/* Minimal header / footer variants */
.hdr--minimal .hdr__nav,
.hdr--minimal .hdr__burger { display: none; }

.site-footer--minimal .site-footer__top { display: none; }
.site-footer--minimal { padding: 1.5rem 0; }
.site-footer--minimal .site-footer__bottom {
  text-align: center;
  border-top: none;
  padding-top: 0;
}
.site-footer--minimal .site-footer__copy a {
  color: var(--metallic);
  text-decoration: underline;
}
