/* =============================================================
   INSUNORM – BEAUTEX
   Stylesheet: structured wellness support landing
   Architecture: SMACSS-inspired modular
   Token family: --tone-main / --tone-support / --tone-cta
   ============================================================= */

/* ---------- 1. BASE / TOKENS ---------- */
:root {
  --tone-main:        #2f8f6e;   /* saturated green */
  --tone-main-deep:   #1f6e54;
  --tone-support:     #d8f0e4;   /* pastel green */
  --tone-support-2:   #eaf7f0;   /* lighter pastel */
  --tone-cta:         #f3a83b;   /* warm contrast accent for CTA */
  --tone-cta-deep:    #d68a1e;

  --bg-page:          #fbfdfa;
  --bg-soft:          #f3f9f4;
  --bg-card:          #ffffff;

  --ink-strong:       #14352a;
  --ink-mid:          #3d5b4f;
  --ink-soft:         #6e8378;
  --ink-line:         #d9e8df;

  --radius-xs:        6px;
  --radius-sm:        10px;
  --radius-md:        16px;
  --radius-lg:        22px;
  --radius-pill:      999px;

  --shadow-sm:  0 2px 8px rgba(31, 110, 84, .06);
  --shadow-md:  0 12px 32px rgba(31, 110, 84, .10);
  --shadow-lg:  0 24px 60px rgba(31, 110, 84, .14);

  --font-display: "Nunito", system-ui, sans-serif;
  --font-body:    "Source Sans 3", system-ui, sans-serif;

  --shell-w: 1180px;
  --gut: clamp(16px, 3vw, 28px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-mid);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--tone-main-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--tone-main); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-strong);
  margin: 0 0 .5em;
  line-height: 1.2;
  letter-spacing: -.01em;
}

p { margin: 0 0 1em; }

/* ---------- 2. LAYOUT ---------- */
.shell {
  width: 100%;
  max-width: var(--shell-w);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tone-main-deep);
  background: var(--tone-support);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.eyebrow--alt {
  background: #fff5e0;
  color: var(--tone-cta-deep);
}

.h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  margin-bottom: .35em;
}
.h2--light { color: #fff; }

.section-head {
  margin-bottom: 36px;
  max-width: 760px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head__lead {
  color: var(--ink-soft);
  font-size: 17px;
}

/* ---------- 3. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
}
.btn--cta {
  background: var(--tone-cta);
  color: #2a1a00;
  box-shadow: 0 8px 22px rgba(243, 168, 59, .35);
}
.btn--cta:hover {
  background: var(--tone-cta-deep);
  color: #fff;
  transform: translateY(-2px);
}
.btn--cta-sm { padding: 11px 20px; font-size: 14.5px; }
.btn--cta-lg { padding: 18px 36px; font-size: 17px; }
.btn--ghost {
  background: transparent;
  border-color: var(--tone-main);
  color: var(--tone-main-deep);
}
.btn--ghost:hover {
  background: var(--tone-support);
  color: var(--tone-main-deep);
}
.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* ---------- 4. HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 253, 250, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-line);
}
.shell--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink-strong);
  letter-spacing: -.01em;
}
.brand__by {
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-primary a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-mid);
}
.nav-primary a:hover { color: var(--tone-main-deep); }
.nav-primary__cta {
  background: var(--tone-cta);
  color: #2a1a00 !important;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
}
.nav-primary__cta:hover {
  background: var(--tone-cta-deep);
  color: #fff !important;
}

.burger {
  display: none;
  width: 44px; height: 44px;
  background: var(--tone-support);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  width: 22px; height: 2.5px;
  background: var(--tone-main-deep);
  border-radius: 3px;
  transition: transform .25s ease, opacity .25s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px var(--gut) 24px;
  background: #fff;
  border-bottom: 1px solid var(--ink-line);
}
.mobile-drawer.is-open { display: flex; }
.mobile-drawer a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink-strong);
  padding: 8px 0;
  border-bottom: 1px dashed var(--ink-line);
}
.mobile-drawer__cta {
  background: var(--tone-cta);
  color: #2a1a00 !important;
  border-radius: var(--radius-pill);
  text-align: center;
  padding: 12px 16px !important;
  border-bottom: none !important;
}

/* ---------- 5. HERO ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 90% 20%, var(--tone-support) 0, transparent 55%),
    radial-gradient(circle at 0% 100%, var(--tone-support-2) 0, transparent 50%),
    var(--bg-page);
  padding: 56px 0 90px;
  overflow: hidden;
}
.shell--hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  margin-bottom: .35em;
  letter-spacing: -.015em;
}
.hero__lead {
  font-size: 18px;
  color: var(--ink-mid);
  max-width: 540px;
  margin-bottom: 20px;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.hero__bullets li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--tone-support);
  box-shadow: inset 0 0 0 4px var(--tone-main);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.hero__visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--tone-support);
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(6px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 36px);
  width: 280px;
  box-shadow: var(--shadow-sm);
}
.hero__badge-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--tone-main-deep);
  flex-shrink: 0;
  line-height: 1;
}
.hero__badge-text {
  font-size: 12.5px;
  color: var(--ink-mid);
  line-height: 1.35;
}

.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 50px;
  background: var(--bg-page);
  -webkit-mask: radial-gradient(ellipse 60% 50px at 50% 0, transparent 99%, black 100%);
          mask: radial-gradient(ellipse 60% 50px at 50% 0, transparent 99%, black 100%);
}

/* ---------- 6. TRUST STRIP ---------- */
.trust-strip {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink-line);
}
.trust-strip__items {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust-strip__items li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.trust-strip__num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--tone-main);
  background: var(--tone-support);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.trust-strip__txt {
  font-size: 14.5px;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
}

/* ---------- 7. ABOUT ---------- */
.about { padding: 80px 0; }
.about__top {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) 1.15fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 48px;
}
.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  max-height: 540px;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__media-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--tone-cta);
  color: #2a1a00;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
}
.about__copy { min-width: 0; }
.about__copy p { margin-bottom: 14px; }
.about__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about__point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 22px;
  background: var(--bg-card);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  min-width: 0;
}
.about__point:hover {
  border-color: var(--tone-main);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.about__point-ico {
  width: 48px; height: 48px;
  background: var(--tone-support);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--tone-main-deep);
  flex-shrink: 0;
}
.about__point-body { min-width: 0; }
.about__point h3 {
  font-size: 17px;
  margin-bottom: 6px;
  line-height: 1.25;
}
.about__point p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- 8. APPROACH ---------- */
.approach {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--tone-support-2) 100%);
  padding: 80px 0;
}
.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.approach__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5 / 4;
}
.approach__media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 9. PRODUCT ---------- */
.product { padding: 80px 0; background: #fff; }
.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.product__visual {
  position: relative;
  margin: 0;
  background: linear-gradient(160deg, var(--tone-support) 0%, var(--tone-support-2) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  box-shadow: var(--shadow-md);
}
.product__visual img {
  max-height: 380px;
  width: auto;
  filter: drop-shadow(0 18px 30px rgba(31, 110, 84, .25));
}
.product__price-card {
  position: absolute;
  right: -18px; bottom: -18px;
  background: #fff;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 4px;
  min-width: 200px;
}
.product__price-label {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 600;
}
.product__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  color: var(--tone-main-deep);
  line-height: 1;
}
.product__price-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.product__feats {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink-line);
}
.product__feats li {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-line);
  font-size: 15.5px;
}
.product__feats-key {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-strong);
}
.product__feats-val {
  color: var(--ink-mid);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.product__note {
  background: var(--tone-support-2);
  border-left: 4px solid var(--tone-main);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink-mid);
  margin: 0;
}

/* ---------- 10. ROUTINE ---------- */
.routine {
  padding: 80px 0;
  background: var(--bg-soft);
}
.routine__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.rcard {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.rcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.rcard__step {
  position: absolute;
  top: -12px; left: 18px;
  background: var(--tone-cta);
  color: #2a1a00;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
}
.rcard img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.rcard__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.rcard p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ---------- 11. TRUST CO ---------- */
.trust-co {
  padding: 80px 0;
  background: #fff;
}
.trust-co__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.trust-co__list {
  list-style: none;
  margin: 0; padding: 28px;
  background: linear-gradient(160deg, var(--tone-support) 0%, var(--tone-support-2) 100%);
  border-radius: var(--radius-md);
  display: grid;
  gap: 14px;
}
.trust-co__list li {
  font-size: 15.5px;
  color: var(--ink-strong);
  border-bottom: 1px dashed rgba(31, 110, 84, .25);
  padding-bottom: 12px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.trust-co__list li:last-child { border: none; padding-bottom: 0; }
.trust-co__list strong {
  font-family: var(--font-display);
  display: inline-block;
  min-width: 90px;
  color: var(--tone-main-deep);
  margin-right: 4px;
}

/* ---------- 12. REVIEWS ---------- */
.reviews { padding: 80px 0; background: var(--bg-soft); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.rev {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rev__head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rev__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--tone-main) 0%, var(--tone-main-deep) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rev__head strong {
  font-family: var(--font-display);
  display: block;
  color: var(--ink-strong);
  font-size: 16px;
}
.rev__meta {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
}
.rev p { margin: 0; font-size: 15.5px; color: var(--ink-mid); font-style: italic; }
.rev__stars {
  font-size: 16px;
  color: var(--tone-cta);
  letter-spacing: 2px;
}

/* ---------- 13. ORDER FORM ---------- */
.order { padding: 80px 0; background: #fff; }
.order__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.order__intro p { color: var(--ink-mid); font-size: 16px; }
.order__perks {
  list-style: none;
  margin: 24px 0 0; padding: 0;
  display: grid;
  gap: 12px;
}
.order__perks li {
  background: var(--tone-support-2);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink-strong);
}
.order__perks strong { color: var(--tone-main-deep); }

.order__form {
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-line);
  box-shadow: var(--shadow-md);
}
.order__form-title {
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--ink-strong);
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.field > span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--ink-strong);
}
.field input,
.field select {
  padding: 12px 14px;
  border: 1.5px solid var(--ink-line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  background: #fff;
  color: var(--ink-strong);
  transition: border-color .2s ease;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--tone-main);
}
.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 16px 0 18px;
}
.field--check input { margin-top: 4px; }
.order__form-note {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- 14. FAQ ---------- */
.faq { padding: 80px 0; background: var(--tone-support-2); }
.faq__list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.faq__item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-line);
  padding: 18px 22px;
  transition: box-shadow .2s ease;
}
.faq__item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--tone-main);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink-strong);
  position: relative;
  padding-right: 36px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--tone-main-deep);
  font-weight: 400;
  transition: transform .25s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
  margin: 14px 0 0;
  font-size: 15.5px;
  color: var(--ink-mid);
}

/* ---------- 15. FINAL CTA ---------- */
.cta-final {
  padding: 64px 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .14) 0, transparent 50%),
    linear-gradient(135deg, var(--tone-main) 0%, var(--tone-main-deep) 100%);
}
.cta-final__grid {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
}
.cta-final p { color: rgba(255, 255, 255, .9); margin: 0; }
.cta-final .h2 { margin-bottom: 8px; }
.cta-final .btn--cta {
  white-space: nowrap;
}

/* ---------- 16. FOOTER ---------- */
.site-footer {
  background: #102b22;
  color: rgba(255, 255, 255, .78);
  padding-top: 64px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
.site-footer__col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 8px;
  font-size: 14.5px;
}
.site-footer__col a {
  color: rgba(255, 255, 255, .78);
}
.site-footer__col a:hover { color: var(--tone-cta); }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__by { color: rgba(255, 255, 255, .55); }
.site-footer__about {
  margin-top: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .65);
  max-width: 320px;
}
.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
}
.site-footer__bar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
}

/* ---------- 17. COOKIE BANNER ---------- */
.cookie {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 100;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-line);
  padding: 18px 22px;
  max-width: 860px;
  margin: 0 auto;
  transform: translateY(150%);
  transition: transform .35s cubic-bezier(.22,.9,.4,1);
}
.cookie.is-visible { transform: translateY(0); }
.cookie__inner {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie__txt {
  flex: 1 1 320px;
  font-size: 13.5px;
  color: var(--ink-mid);
  min-width: 0;
}
.cookie__txt strong {
  color: var(--ink-strong);
  font-family: var(--font-display);
  display: block;
  margin-bottom: 4px;
}
.cookie__txt p { margin: 0; line-height: 1.5; }
.cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ---------- 18. STICKY CTA ---------- */
.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 90px;
  z-index: 80;
  background: var(--tone-cta);
  color: #2a1a00;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  display: none;
}
.sticky-cta:hover {
  background: var(--tone-cta-deep);
  color: #fff;
}

/* ---------- 19. LEGAL PAGES SHARED ---------- */
.legal {
  padding: 56px 0 80px;
  max-width: 880px;
}
.legal h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 18px;
}
.legal h2 {
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--tone-main-deep);
}
.legal p, .legal li {
  font-size: 15.5px;
  color: var(--ink-mid);
}
.legal ul, .legal ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal ul li, .legal ol li {
  margin-bottom: 6px;
}
.legal__updated {
  display: inline-block;
  background: var(--tone-support);
  color: var(--tone-main-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.legal__back {
  margin-top: 36px;
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
}

/* ---------- 20. SUCCESS PAGE ---------- */
.thanks {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, var(--tone-support) 0, transparent 60%),
    var(--bg-page);
}
.thanks__inner {
  max-width: 580px;
  padding: 48px 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.thanks__check {
  width: 80px; height: 80px;
  margin: 0 auto 22px;
  background: var(--tone-support);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tone-main-deep);
  font-size: 40px;
}
.thanks h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.thanks p { font-size: 16.5px; }

/* ---------- 21. RESPONSIVE ---------- */
@media (max-width: 1020px) {
  .shell--hero,
  .about__top,
  .approach__grid,
  .product__grid,
  .trust-co__grid,
  .order__grid,
  .cta-final__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about__points { grid-template-columns: repeat(3, 1fr); }
  .routine__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .trust-strip__items { grid-template-columns: repeat(2, 1fr); }
  .nav-primary { display: none; }
  .burger { display: flex; }
  .product__visual { padding: 32px; min-height: 320px; }
  .product__visual img { max-height: 280px; }
  .product__price-card {
    position: static;
    margin-top: 18px;
  }
  .about__media { max-height: 460px; }
  .sticky-cta { display: inline-flex; }
}

@media (max-width: 760px) {
  .about__points { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 32px 0 70px; }
  .hero__title { font-size: 30px; }
  .hero__visual { aspect-ratio: 4 / 4.5; }
  .about, .approach, .product, .routine, .trust-co, .reviews, .order, .faq { padding: 56px 0; }
  .about__top { gap: 28px; }
  .about__media { max-height: 380px; aspect-ratio: 4 / 4; }
  .routine__grid { grid-template-columns: 1fr; }
  .trust-strip__items { grid-template-columns: 1fr; }
  .product__feats li { grid-template-columns: 1fr; gap: 4px; }
  .order__form { padding: 22px; }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn { flex: 1; }
  .site-footer__bar-inner { flex-direction: column; align-items: flex-start; }
  .cta-final__grid { text-align: left; }
  .trust-co__list strong { display: block; min-width: 0; margin-bottom: 2px; }
}

/* ---------- 22. PRINT ---------- */
@media print {
  .site-header, .sticky-cta, .cookie, .nav-primary, .burger { display: none; }
  body { background: #fff; color: #000; }
}
