:root {
  --vutj-red: #ed1b24;
  --vutj-navy: #166ca7;
  --vutj-black: #000000;
  --vutj-white: #ffffff;
  --vutj-gold: #bdab3c;
  --vutj-cream: #eeeccb;
  --vutj-bg: #f5f4ee;
  --vutj-text: #1a1a1a;
  --vutj-text-muted: #5a5a5a;
  --vutj-container: 1080px;
  --vutj-radius: 0px;
  --vutj-gap: 1.25rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--vutj-text);
  background: var(--vutj-bg);
}

.container {
  max-width: var(--vutj-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3, h4 {
  font-family: 'Zilla Slab', serif;
  line-height: 1.2;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; margin-bottom: .6rem; }
h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }

p { margin-bottom: .85rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--vutj-navy); text-decoration: underline; }
a:hover { color: var(--vutj-red); }

ul, ol { padding-left: 1.4rem; margin-bottom: .85rem; }
li { margin-bottom: .3rem; }

img { max-width: 100%; height: auto; display: block; border-radius: var(--vutj-radius); }

.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.6rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s;
  line-height: 1.2;
}
.btn--primary { background: var(--vutj-red); color: var(--vutj-white); border-color: var(--vutj-red); }
.btn--primary:hover { background: #c0151d; border-color: #c0151d; color: var(--vutj-white); }
.btn--ghost { background: transparent; color: var(--vutj-navy); border-color: var(--vutj-navy); }
.btn--ghost:hover { background: var(--vutj-navy); color: var(--vutj-white); }
.btn--sm { font-size: .82rem; padding: .5rem 1.1rem; }
.btn--full { width: 100%; text-align: center; }

.uzyr {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--vutj-black);
  border-bottom: 3px solid var(--vutj-red);
  padding: .75rem 0;
}
.uzyr .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-header__logo {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--vutj-white);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-header__logo:hover { color: var(--vutj-gold); }
.site-header__nav {
  display: flex;
  gap: 1.4rem;
  flex: 1;
}
.site-header__nav a {
  color: #ccc;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.site-header__nav a:hover,
.site-header__nav a[aria-current="page"] { color: var(--vutj-white); }

.breadcrumb {
  font-size: .8rem;
  color: var(--vutj-text-muted);
  margin-bottom: 1rem;
  display: flex;
  gap: .4rem;
  align-items: center;
}
.breadcrumb a { color: var(--vutj-text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--vutj-red); }

.hero--big-stat {
  position: relative;
  background: var(--vutj-black);
  color: var(--vutj-white);
  padding: 4rem 0 3rem;
  overflow: hidden;
}
.hero__bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .14;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero__inner .breadcrumb a { color: rgba(255,255,255,.55); }
.hero__inner .breadcrumb { color: rgba(255,255,255,.55); }
.hero__stat-block {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1.2rem;
}
.hero__big-number {
  font-family: 'Zilla Slab', serif;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--vutj-red);
  line-height: 1;
}
.hero__big-number--unit {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--vutj-white);
}
.hero__stat-label {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 0;
}
.hero__headline {
  color: var(--vutj-white);
  margin-bottom: 1rem;
}
.hero__headline--outlined {
  color: transparent;
  -webkit-text-stroke: 2px var(--vutj-red);
  text-stroke: 2px var(--vutj-red);
}
.hero__sub {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 1.6rem;
}
.hero__cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.band-thin--dark {
  height: 6px;
  background: var(--vutj-red);
  width: 100%;
}

.section {
  padding: 3rem 0;
}
.section--light { background: var(--vutj-bg); }
.section--dark {
  background: var(--vutj-black);
  color: var(--vutj-white);
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--vutj-white); }
.section--dark p, .section--dark li { color: rgba(255,255,255,.85); }
.section--dark a { color: var(--vutj-gold); }
.section--accent {
  background: var(--vutj-navy);
  color: var(--vutj-white);
}
.section--accent h2, .section--accent h3, .section--accent h4 { color: var(--vutj-white); }
.section--accent p, .section--accent li { color: rgba(255,255,255,.9); }
.section--accent a { color: var(--vutj-gold); }
.section--order { background: var(--vutj-cream); }

.section__intro {
  font-size: 1.05rem;
  color: var(--vutj-text-muted);
  max-width: 700px;
  margin-bottom: 2rem;
}
.section--dark .section__intro { color: rgba(255,255,255,.65); }
.section--accent .section__intro { color: rgba(255,255,255,.75); }

.section__illustration,
.section__lifestyle-img {
  width: 100%;
  border-radius: var(--vutj-radius);
  margin-bottom: 2rem;
  object-fit: cover;
  max-height: 420px;
}

.review-meta-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: .78rem;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--vutj-red);
}
.review-meta-row__tag {
  background: var(--vutj-red);
  color: var(--vutj-white);
  font-weight: 700;
  padding: .2rem .6rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .72rem;
}
.review-meta-row__date { color: var(--vutj-text-muted); }
.review-meta-row__disclosure { color: var(--vutj-text-muted); font-style: italic; }

.scorecard {
  background: var(--vutj-white);
  border: 2px solid var(--vutj-navy);
  padding: 1.5rem;
  margin: 2rem 0;
}
.scorecard__title {
  font-family: 'Zilla Slab', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--vutj-navy);
}
.scorecard__grid { display: flex; flex-direction: column; gap: .7rem; }
.scorecard__item {
  display: grid;
  grid-template-columns: 200px 1fr 80px;
  align-items: center;
  gap: .75rem;
}
.scorecard__item--total {
  padding-top: .7rem;
  border-top: 2px solid var(--vutj-navy);
}
.scorecard__label { font-size: .88rem; font-weight: 700; }
.scorecard__bar-wrap {
  background: #e5e5e0;
  height: 10px;
  width: 100%;
}
.scorecard__bar {
  height: 100%;
  background: var(--vutj-navy);
  transition: width .4s;
}
.scorecard__bar--accent { background: var(--vutj-red); }
.scorecard__score { font-size: .85rem; font-weight: 700; text-align: right; color: var(--vutj-navy); }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
.pros-cons__col { background: var(--vutj-white); padding: 1.25rem; border-top: 4px solid; }
.pros-cons__col--pros { border-color: var(--vutj-navy); }
.pros-cons__col--cons { border-color: var(--vutj-gold); }
.pros-cons__col h4 { margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .05em; font-size: .85rem; }

.verdict-box {
  background: var(--vutj-navy);
  color: var(--vutj-white);
  padding: 1.5rem;
  margin: 2rem 0;
}
.verdict-box__label {
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--vutj-gold);
  margin-bottom: .5rem;
}
.verdict-box p { color: rgba(255,255,255,.9); margin-bottom: 1rem; }
.verdict-box .btn--primary { background: var(--vutj-red); border-color: var(--vutj-red); }

.pack-feature {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #ddd;
}
.pack-feature__img-wrap {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-pack {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.supplement-disclaimer {
  font-size: .78rem;
  color: var(--vutj-text-muted);
  border-top: 1px solid #ddd;
  padding-top: .75rem;
  margin-top: 1rem;
  line-height: 1.5;
}
.supplement-disclaimer-inline {
  font-size: .78rem;
  color: var(--vutj-text-muted);
  font-style: italic;
  margin-top: 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.step-card {
  background: rgba(255,255,255,.06);
  padding: 1.25rem;
  border-top: 3px solid var(--vutj-red);
}
.step-card__number {
  font-family: 'Zilla Slab', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--vutj-red);
  margin-bottom: .4rem;
}
.step-card h3 { color: var(--vutj-white); font-size: 1rem; }
.step-card p { color: rgba(255,255,255,.8); font-size: .88rem; }

.uitc { margin-top: 2.5rem; }
.lf-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--vutj-red);
}
.lf-tabs__btn {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  padding: .6rem 1.2rem;
  background: transparent;
  color: rgba(255,255,255,.6);
  border: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: color .15s, border-color .15s;
}
.lf-tabs__btn.is-active,
.lf-tabs__btn:hover { color: var(--vutj-white); border-bottom-color: var(--vutj-white); }
.lf-tabs__panels { padding: 1.5rem 0; }
.lf-tabs__panel { display: none; }
.lf-tabs__panel.is-active { display: block; }
.lf-tabs__panel img { max-height: 280px; object-fit: cover; width: 100%; margin-bottom: 1rem; }
.lf-tabs__panel h4 { color: var(--vutj-white); }
.lf-tabs__panel p { color: rgba(255,255,255,.8); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.review-card { background: var(--vutj-white); }
.review-card__img { width: 100%; height: 200px; object-fit: cover; }
.review-card__content { padding: 1.1rem; }
.review-card__stars { color: var(--vutj-gold); font-size: 1.1rem; margin-bottom: .5rem; }
.review-card__quote { font-size: .9rem; margin-bottom: .5rem; color: var(--vutj-text); font-style: italic; }
.review-card__author { font-size: .8rem; font-weight: 700; display: block; color: var(--vutj-navy); }
.review-card__disclosure { font-size: .72rem; color: var(--vutj-text-muted); display: block; margin-top: .25rem; }
.review-disclaimer { font-size: .8rem; color: var(--vutj-text-muted); margin-bottom: 1rem; }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.tip-card {
  background: rgba(255,255,255,.08);
  padding: 1.25rem;
}
.tip-card__icon { font-size: 1.8rem; margin-bottom: .6rem; }
.tip-card h3 { color: var(--vutj-white); font-size: 1rem; }
.tip-card p { color: rgba(255,255,255,.8); font-size: .88rem; }

.uwhu {
  background: rgba(255,255,255,.08);
  padding: 1.5rem;
  margin-top: 2rem;
  max-width: 480px;
}
.lf-calc__title {
  font-family: 'Zilla Slab', serif;
  font-size: 1.1rem;
  color: var(--vutj-white);
  margin-bottom: .4rem;
}
.lf-calc__desc { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1rem; }
.lf-calc__row { margin-bottom: 1rem; display: flex; flex-direction: column; gap: .35rem; }
.lf-calc__row label { font-size: .85rem; color: rgba(255,255,255,.8); font-weight: 700; }
.lf-calc__input {
  padding: .5rem .75rem;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(0,0,0,.3);
  color: var(--vutj-white);
  width: 120px;
  border-radius: var(--vutj-radius);
}
.lf-calc__result {
  margin-top: .85rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--vutj-gold);
  min-height: 1.5rem;
}

.routine-steps {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin: 1.5rem 0;
}
.routine-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: var(--vutj-white);
  border-left: 4px solid var(--vutj-navy);
}
.routine-step__time {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  color: var(--vutj-navy);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.routine-step p { margin-bottom: 0; font-size: .9rem; }

.sources-list { list-style: none; padding-left: 0; }
.sources-list li { padding: .5rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .9rem; }
.sources-list--spaced li { padding: .75rem 0; border-bottom: 1px solid #ddd; }
.sources-note { font-size: .8rem; color: var(--vutj-text-muted); margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid #ddd; }
.section--dark .sources-note { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.1); }

.order-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.order-info h2 { margin-bottom: 1rem; }
.order-info__list { list-style: none; padding-left: 0; margin-bottom: 1.25rem; }
.order-info__list li { padding: .35rem 0; font-size: .95rem; }
.order-price { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.order-price__original { text-decoration: line-through; color: var(--vutj-text-muted); font-size: 1.1rem; }
.order-price__current { font-family: 'Zilla Slab', serif; font-size: 2rem; font-weight: 700; color: var(--vutj-red); }
.order-price__note { font-size: .78rem; color: var(--vutj-text-muted); }

.order-form-wrap {
  background: var(--vutj-white);
  padding: 2rem;
  border-top: 4px solid var(--vutj-red);
}
.order-form__field { margin-bottom: 1rem; display: flex; flex-direction: column; gap: .35rem; }
.order-form__field label { font-size: .85rem; font-weight: 700; }
.order-form__field input {
  padding: .6rem .85rem;
  border: 2px solid #ccc;
  border-radius: var(--vutj-radius);
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  transition: border-color .15s;
}
.order-form__field input:focus { outline: none; border-color: var(--vutj-navy); }
.order-form__consent {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: .8rem;
  color: var(--vutj-text-muted);
  line-height: 1.45;
}
.order-form__consent input[type="checkbox"] { margin-top: .2rem; flex-shrink: 0; }
.order-form__note { font-size: .72rem; color: var(--vutj-text-muted); margin-top: .75rem; }

.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 1.25rem; }
.upaq { border-left: 4px solid var(--vutj-navy); padding-left: 1rem; }
.upaq h3 { font-size: 1rem; margin-bottom: .35rem; }
.upaq p { font-size: .9rem; color: var(--vutj-text-muted); margin-bottom: 0; }

.ingredient-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.ingredient-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.ingredient-table th { background: var(--vutj-navy); color: var(--vutj-white); padding: .6rem .85rem; text-align: left; }
.ingredient-table td { padding: .6rem .85rem; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.ingredient-table tr:nth-child(even) td { background: rgba(255,255,255,.04); }

.cookie-table { width: 100%; border-collapse: collapse; font-size: .85rem; margin: 1rem 0; }
.cookie-table th { background: var(--vutj-navy); color: var(--vutj-white); padding: .5rem .75rem; text-align: left; }
.cookie-table td { padding: .5rem .75rem; border-bottom: 1px solid #ddd; }

.content-article { max-width: 820px; }
.content-article h2 { margin-top: 2rem; }
.content-article img { margin: 1.5rem 0; }

.page-hero {
  background: var(--vutj-black);
  color: var(--vutj-white);
  padding: 2.5rem 0 2rem;
  border-bottom: 3px solid var(--vutj-red);
}
.page-hero h1 { color: var(--vutj-white); }
.page-hero__sub { color: rgba(255,255,255,.75); max-width: 680px; margin-top: .75rem; margin-bottom: 0; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info__list { list-style: none; padding-left: 0; margin-bottom: 1.25rem; }
.contact-info__list li { padding: .3rem 0; font-size: .9rem; }
.contact-info__note { font-size: .8rem; color: var(--vutj-text-muted); font-style: italic; }
.contact-form-wrap { background: var(--vutj-white); padding: 2rem; border-top: 4px solid var(--vutj-navy); }
.contact-form__field { margin-bottom: 1rem; display: flex; flex-direction: column; gap: .3rem; }
.contact-form__field label { font-size: .85rem; font-weight: 700; }
.contact-form__field input,
.contact-form__field textarea {
  padding: .6rem .85rem;
  border: 2px solid #ccc;
  border-radius: var(--vutj-radius);
  font-size: .95rem;
  font-family: 'Lato', sans-serif;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus { outline: none; border-color: var(--vutj-navy); }
.contact-form__consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .8rem; color: var(--vutj-text-muted); margin-bottom: 1.25rem; line-height: 1.45; }
.contact-form__consent input[type="checkbox"] { margin-top: .2rem; flex-shrink: 0; }

.tips-article h2 { margin-top: 2rem; }

.unya {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  padding: 1.75rem;
  margin-top: 2.5rem;
}
.lf-quiz__title { font-family: 'Zilla Slab', serif; font-size: 1.2rem; color: var(--vutj-text); margin-bottom: .4rem; }
.lf-quiz__desc { font-size: .9rem; color: var(--vutj-text-muted); margin-bottom: 1.25rem; }
.lf-quiz__step { display: none; }
.lf-quiz__step.is-active { display: block; }
.lf-quiz__question { font-weight: 700; margin-bottom: .85rem; color: var(--vutj-text); }
.lf-quiz__options { display: flex; flex-direction: column; gap: .5rem; }
.lf-quiz__opt {
  text-align: left;
  background: var(--vutj-white);
  border: 2px solid var(--vutj-navy);
  color: var(--vutj-navy);
  padding: .55rem 1rem;
  font-size: .9rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--vutj-radius);
  transition: background .15s, color .15s;
}
.lf-quiz__opt:hover { background: var(--vutj-navy); color: var(--vutj-white); }
.lf-quiz__result-text { margin-bottom: 1rem; font-weight: 700; color: var(--vutj-text); }
.lf-quiz__restart { margin-top: .6rem; font-size: .85rem; }
.lf-quiz__disclaimer { font-size: .75rem; color: var(--vutj-text-muted); margin-top: 1rem; }

.thankyou-page { padding: 5rem 0; text-align: center; }
.thankyou-container { max-width: 540px; }
.thankyou-icon { font-size: 3.5rem; color: var(--vutj-navy); margin-bottom: 1rem; }
.thankyou-page h1 { margin-bottom: 1rem; }
.thankyou-page p { color: var(--vutj-text-muted); margin-bottom: .75rem; }
.thankyou-page .btn { margin-top: 1.5rem; }

.error-page { padding: 5rem 0; text-align: center; }
.error-container { max-width: 480px; }
.error-page__code { font-family: 'Zilla Slab', serif; font-size: 6rem; font-weight: 700; color: var(--vutj-red); display: block; line-height: 1; margin-bottom: .5rem; }

.site-footer {
  background: var(--vutj-black);
  color: rgba(255,255,255,.7);
  padding: 2.5rem 0 0;
  margin-top: 3rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer__logo {
  font-family: 'Zilla Slab', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--vutj-white);
  display: block;
  margin-bottom: .75rem;
}
.site-footer__brand p { font-size: .85rem; line-height: 1.6; margin-bottom: .5rem; }
.site-footer__supplement-disclaimer { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: .5rem; line-height: 1.5; }
.site-footer__nav h4,
.site-footer__legal h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--vutj-white); margin-bottom: .75rem; }
.site-footer__nav ul,
.site-footer__legal ul { list-style: none; padding-left: 0; }
.site-footer__nav a,
.site-footer__legal a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .85rem; display: block; padding: .2rem 0; }
.site-footer__nav a:hover,
.site-footer__legal a:hover { color: var(--vutj-white); }
.site-footer__bottom { padding: 1rem 0; font-size: .78rem; color: rgba(255,255,255,.4); }
.site-footer__bottom p { margin-bottom: .25rem; }
.site-footer__bottom a { color: rgba(255,255,255,.5); text-decoration: underline; }

.utbd {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vutj-black);
  border-top: 3px solid var(--vutj-red);
  z-index: 9999;
  display: none;
  padding: 1rem;
}
.utbd.is-visible { display: block; }
.cookie-banner__inner {
  max-width: var(--vutj-container);
  margin: 0 auto;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner__text { font-size: .82rem; color: rgba(255,255,255,.8); flex: 1; min-width: 200px; }
.cookie-banner__text a { color: var(--vutj-gold); }
.cookie-banner__actions { display: flex; gap: .6rem; flex-wrap: wrap; }

@media (max-width: 800px) {
  .scorecard__item { grid-template-columns: 1fr; gap: .3rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .pack-feature { grid-template-columns: 1fr; }
  .order-container { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-header__nav { display: none; }
  .routine-step { grid-template-columns: 1fr; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.utbd{position:fixed !important;left:1rem;right:1rem;bottom:1rem;z-index:9000 !important;max-width:760px;margin-left:auto;margin-right:auto;background:#fff;color:#1a1a1a;border:1px solid rgba(0,0,0,.12);border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,.18);padding:1rem 1.25rem;transform:translateY(220%);transition:transform .32s ease}
.utbd.is-visible,.cookie-banner--visible,.utbd.show,.utbd.active{transform:none !important}
.utbd a{color:inherit;text-decoration:underline}
.utbd button{cursor:pointer}
.ucse{position:fixed !important;inset:0;z-index:9001 !important;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,.5);padding:1rem}
.ucse.is-visible,.cookie-modal--visible,.ucse.show,.ucse.active{display:flex !important}
.uvgl,.ucse>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.urys .unya,.urys .uwhu,.urys .uitc,.urys .uopn,.uszs .unya,.uszs .uwhu,.uszs .uitc,.uszs .uopn{background:#fff !important;color:#1a1a1a !important}
.unya,.uwhu{color:#1a1a1a !important}
.unya label,.uwhu label,.unya p,.uwhu p,.unya .usdj,.unya span,.uwhu span,.ujwh,.uunf,.uitc .ukwh,.uitc .ukwh *{color:#1a1a1a !important}
.ujwh,.uunf{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.unya .uows{color:#1a1a1a !important}
.unya .uows.is-sel{color:#fff !important}
.usii .uwwm{display:none}
.usii .uwwm.is-visible{display:block !important;color:#c0392b}
.usii .ueab,.usii [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.usii{color:#1a1a1a}
.urys .usii,.uszs .usii{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.utvy{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.utvy img{width:100%;height:100%;object-fit:cover}
.uofm,.uigo{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uofm img,.uigo img{width:100%;height:100%;object-fit:cover;display:block}
.uofm img{opacity:.28}
.uigo img{opacity:.07}
*:has(> .uofm),*:has(> .uigo){position:relative}
.ucwl{position:absolute !important;left:50%;top:52%;transform:translate(-50%,-50%);width:52%;max-width:280px;text-align:center;pointer-events:none;color:#2c2c2c;background:rgba(250,246,238,.94);border-radius:10px;padding:1rem .8rem;box-shadow:0 2px 14px rgba(0,0,0,.16)}
.ucwl .ujwg{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ucwl .ujba{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uxnv{margin:1.4rem auto;max-width:920px}
.uxnv img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uamg{padding:3rem 0}
.ustb{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ustb img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uopn{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.unmb{display:flex;overflow:hidden;gap:0 !important}
.uvvx{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ugzr{position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:50%;border:1px solid rgba(0,0,0,.18);background:#fff;cursor:pointer;z-index:2;font-size:1.1rem;line-height:1}
.ulmq{left:.5rem}.uxrx{right:.5rem}
.uitc .ukwh{display:none}.uitc .ukwh.is-active{display:block}
.unya .ucdj{display:block !important}
.unya .ukxy{display:flex;flex-wrap:wrap;gap:.5rem}
.unya .uows{cursor:pointer}
