:root {
  --vfjq-accent: #8030e1;
  --vfjq-accent-dark: #310272;
  --vfjq-accent-light: #c9b4ff;
  --vfjq-accent-pale: #ede8ff;
  --vfjq-gold: #fff8cb;
  --vfjq-pink-light: #ffe8f9;
  --vfjq-black: #111111;
  --vfjq-white: #ffffff;
  --vfjq-gray-bg: #f2f2f3;
  --vfjq-gray-mid: #9090a0;
  --vfjq-gray-dark: #3a3a4a;
  --vfjq-text: #1a1a2a;
  --vfjq-text-light: #5a5a6a;
  --vfjq-border: #d4ceee;
  --vfjq-radius: 0px;
  --vfjq-container: 1320px;
  --vfjq-spacing-xs: 0.5rem;
  --vfjq-spacing-sm: 1rem;
  --vfjq-spacing-md: 1.75rem;
  --vfjq-spacing-lg: 3rem;
  --vfjq-spacing-xl: 5rem;
  --vfjq-font-main: 'Libre Franklin', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--vfjq-font-main);
  background: var(--vfjq-gray-bg);
  color: var(--vfjq-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.content-narrow {
  max-width: 800px;
  margin: 0 auto;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--vfjq-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1,h2,h3,h4 {
  font-family: var(--vfjq-font-main);
  font-weight: 700;
  line-height: 1.2;
  color: var(--vfjq-black);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: var(--vfjq-spacing-md); }
h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
h4 { font-size: 1rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; }
ul, ol { margin-bottom: 1rem; padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }

.section {
  padding: var(--vfjq-spacing-xl) 0;
  background: var(--vfjq-white);
}

.section:nth-child(even) { background: var(--vfjq-gray-bg); }

.uptt {
  background: var(--vfjq-accent-dark) !important;
  color: var(--vfjq-white);
}

.uptt h1,
.uptt h2,
.uptt h3,
.uptt h4 { color: var(--vfjq-white); }

.uptt p,
.uptt li { color: rgba(255,255,255,0.88); }

.uptt a { color: var(--vfjq-accent-light); }

.umsr {
  background: var(--vfjq-accent) !important;
  color: var(--vfjq-white);
}

.umsr h1,
.umsr h2,
.umsr h3 { color: var(--vfjq-white); }

.light { color: rgba(255,255,255,0.85); }

.section-intro {
  font-size: 1.1rem;
  color: var(--vfjq-text-light);
  margin-bottom: var(--vfjq-spacing-lg);
  max-width: 700px;
}

.uptt .section-intro,
.umsr .section-intro { color: rgba(255,255,255,0.75); }

.section-image {
  width: 100%;
  border-radius: var(--vfjq-radius);
  margin-top: var(--vfjq-spacing-lg);
}

.mt-2 { margin-top: 2rem; }

.btn-cta {
  display: inline-block;
  background: var(--vfjq-accent);
  color: var(--vfjq-white) !important;
  font-family: var(--vfjq-font-main);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.01em;
}

.btn-cta:hover {
  background: var(--vfjq-accent-dark);
  transform: translateY(-1px);
  text-decoration: none !important;
}

.btn-header {
  font-size: 0.9rem;
  padding: 0.6rem 1.3rem;
}

.btn-hero {
  font-size: 1.05rem;
  padding: 1rem 2.4rem;
  margin-top: var(--vfjq-spacing-md);
}

.btn-order {
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem;
  margin-top: var(--vfjq-spacing-sm);
}

.uptt .btn-cta,
.umsr .btn-cta {
  background: var(--vfjq-white);
  color: var(--vfjq-accent) !important;
}

.uptt .btn-cta:hover,
.umsr .btn-cta:hover {
  background: var(--vfjq-gold);
}

.dashed-card {
  border: 2px dashed var(--vfjq-border);
  border-radius: var(--vfjq-radius);
  padding: var(--vfjq-spacing-md);
  background: var(--vfjq-white);
}

.uptt .dashed-card {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}

.umsr .dashed-card {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--vfjq-accent);
  color: var(--vfjq-white);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.uouy {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vfjq-white);
  border-bottom: 2px solid var(--vfjq-accent-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.site-logo {
  font-family: var(--vfjq-font-main);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--vfjq-accent-dark) !important;
  text-decoration: none !important;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  flex: 1;
}

.site-nav a {
  color: var(--vfjq-text);
  font-size: 0.93rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--vfjq-accent);
}

.breadcrumb-bar {
  background: var(--vfjq-accent-dark);
  padding: 0.5rem 0;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb-list a { color: var(--vfjq-accent-light); }
.breadcrumb-list [aria-current="page"] { color: var(--vfjq-white); font-weight: 600; }

.hero-minimal {
  position: relative;
  background: var(--vfjq-gray-bg);
  padding: var(--vfjq-spacing-xl) 0;
  overflow: hidden;
}

.udqq {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.udqq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vfjq-accent);
  background: var(--vfjq-accent-pale);
  padding: 0.3rem 0.8rem;
  border-radius: var(--vfjq-radius);
  margin-bottom: var(--vfjq-spacing-sm);
}

.hero-h1 {
  display: block;
  margin-bottom: var(--vfjq-spacing-sm);
}

.h1-outlined {
  -webkit-text-stroke: 3px var(--vfjq-accent-dark);
  color: transparent;
}

.h1-block {
  display: block;
  color: var(--vfjq-accent-dark);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--vfjq-text-light);
  max-width: 600px;
  margin-bottom: var(--vfjq-spacing-sm);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.rating-num { font-weight: 700; font-size: 1.1rem; color: var(--vfjq-accent-dark); }
.rating-count { font-size: 0.9rem; color: var(--vfjq-text-light); }

.band-thin {
  padding: 0.75rem 0;
}

.band-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.band-sep { color: rgba(255,255,255,0.35); }

.section-page-hero {
  padding: var(--vfjq-spacing-lg) 0;
  background: var(--vfjq-gray-bg);
}

.section-page-hero h1 { margin-bottom: var(--vfjq-spacing-sm); }

.sources-grid,
.lifestyle-grid,
.reviews-grid,
.myths-grid {
  display: grid;
  gap: 1.25rem;
}

.sources-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.lifestyle-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.reviews-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.myths-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.source-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.source-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.source-card p { font-size: 0.9rem; color: var(--vfjq-text-light); margin-bottom: 0.5rem; }
.source-link { font-size: 0.85rem; font-weight: 600; }

.lifestyle-card { text-align: left; }
.lifestyle-icon { margin-bottom: 0.75rem; font-size: 1.3rem; }

.myth-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.4rem;
  border-radius: var(--vfjq-radius);
}

.myth-label.myth { background: #ffe0e0; color: #a00000; }
.myth-label.fact { background: #e0f4e8; color: #1a6630; margin-top: 0.75rem; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--vfjq-spacing-lg);
  align-items: start;
}

.about-image {
  width: 100%;
  border-radius: var(--vfjq-radius);
  border: 2px dashed var(--vfjq-border);
}

.about-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vfjq-accent);
  margin-bottom: 0.5rem;
}

.about-disclosure {
  font-size: 0.85rem;
  color: var(--vfjq-text-light);
  border-top: 1px solid var(--vfjq-border);
  padding-top: 0.75rem;
  margin-top: 1rem;
}

.review-header { margin-bottom: var(--vfjq-spacing-lg); }
.review-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vfjq-accent-light);
  background: rgba(255,255,255,0.1);
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.75rem;
}

.review-verdict {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--vfjq-spacing-md);
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 2px dashed rgba(255,255,255,0.2);
  padding: var(--vfjq-spacing-md);
  margin-bottom: var(--vfjq-spacing-lg);
}

.verdict-score {
  text-align: center;
  padding-right: var(--vfjq-spacing-md);
  border-right: 1px solid rgba(255,255,255,0.2);
}

.score-num {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--vfjq-white);
  line-height: 1;
}

.score-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: var(--vfjq-spacing-lg);
}

.pros { border-color: rgba(255,255,255,0.2); }
.cons { border-color: rgba(255,255,255,0.15); }

.pros ul li::marker { color: #6ddc8a; }
.cons ul li::marker { color: #ff9090; }

.section-review .pros-cons .dashed-card {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.section-review .pros-cons h3 { color: var(--vfjq-white); }

.how-works-timeline { margin-top: var(--vfjq-spacing-lg); }
.how-works-timeline h3 { color: var(--vfjq-white); margin-bottom: 0.5rem; }

.timeline { position: relative; padding-left: 1rem; }

.timeline-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: var(--vfjq-spacing-md);
  align-items: flex-start;
}

.timeline-dot {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.timeline-body h4 { margin-bottom: 0.3rem; }

.section-review .timeline-body h4 { color: var(--vfjq-white); }
.section-review .timeline-body p { color: rgba(255,255,255,0.82); }

.usage-steps {
  display: grid;
  gap: 1rem;
  margin-bottom: var(--vfjq-spacing-lg);
}

.usage-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  font-size: 1rem;
}

.review-card { }
.review-stars { font-size: 1.2rem; color: #e8a900; margin-bottom: 0.5rem; }
.review-meta { font-size: 0.85rem; color: var(--vfjq-text-light); font-weight: 600; margin-top: 0.5rem; }
.review-disclosure { font-size: 0.78rem; color: var(--vfjq-text-light); font-style: italic; margin-top: 0.3rem; }

.quiz-container { max-width: 720px; margin: 0 auto; }

.uuuj { }

.quiz-step { display: none; }
.quiz-step.active { display: block; }

.quiz-question {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: var(--vfjq-spacing-sm);
}

.quiz-options {
  display: grid;
  gap: 0.75rem;
}

.quiz-option {
  background: var(--vfjq-white);
  border: 2px dashed var(--vfjq-border);
  border-radius: var(--vfjq-radius);
  padding: 0.85rem 1.2rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--vfjq-font-main);
  font-size: 0.97rem;
  color: var(--vfjq-text);
  transition: border-color 0.15s, background 0.15s;
}

.quiz-option:hover {
  border-color: var(--vfjq-accent);
  background: var(--vfjq-accent-pale);
}

.quiz-result { text-align: left; }
.quiz-result-title { color: var(--vfjq-accent-dark); margin-bottom: 0.75rem; }
.quiz-result-text { margin-bottom: var(--vfjq-spacing-sm); }

.order-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--vfjq-spacing-lg);
  align-items: start;
}

.order-product { text-align: center; }

.order-pack {
  width: 100%;
  max-width: 340px;
  margin: 0 auto var(--vfjq-spacing-sm);
  border-radius: var(--vfjq-radius);
  aspect-ratio: 1;
  object-fit: contain;
}

.order-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.badge {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
  color: var(--vfjq-white);
}

.order-form-wrap h2 { color: var(--vfjq-white); }

.price-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.price-old {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}

.price-current {
  font-size: 2rem;
  font-weight: 900;
  color: var(--vfjq-white);
}

.price-badge {
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--vfjq-gold);
  color: var(--vfjq-accent-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-note { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: var(--vfjq-spacing-sm); }

.uaoo {
  display: grid;
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--vfjq-radius);
  font-family: var(--vfjq-font-main);
  font-size: 1rem;
  background: rgba(255,255,255,0.1);
  color: var(--vfjq-white);
  outline: none;
  transition: border-color 0.15s;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.45); }

.form-group input:focus,
.form-group textarea:focus { border-color: var(--vfjq-white); }

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
}

.consent-label input[type="checkbox"] { margin-top: 0.15rem; flex-shrink: 0; }
.consent-label a { color: var(--vfjq-accent-light); }

.order-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.uytz .form-group label { color: var(--vfjq-text); }
.uytz .form-group input,
.uytz .form-group textarea {
  border: 2px solid var(--vfjq-border);
  background: var(--vfjq-white);
  color: var(--vfjq-text);
}
.uytz .consent-label { color: var(--vfjq-text-light); }

.faq-list { display: grid; gap: 0.75rem; }

.ukag { }
.faq-q {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.faq-a p { font-size: 0.95rem; color: var(--vfjq-text-light); margin: 0; }

.cta-block {
  text-align: center;
  padding: var(--vfjq-spacing-lg) 0;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--vfjq-text-light);
  margin-top: 0.5rem;
}

.disclaimer-inline,
.disclaimer-box {
  font-size: 0.85rem;
  color: var(--vfjq-text-light);
  line-height: 1.6;
}

.disclaimer-box {
  margin-top: var(--vfjq-spacing-lg);
  background: var(--vfjq-accent-pale);
  border-color: var(--vfjq-accent-light);
}

.ingredient-entry {
  margin-bottom: var(--vfjq-spacing-lg);
  padding-bottom: var(--vfjq-spacing-lg);
  border-bottom: 1px dashed var(--vfjq-border);
}

.ingredient-entry:last-of-type { border-bottom: none; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: var(--vfjq-spacing-md) 0;
}

.cookie-table th {
  background: var(--vfjq-accent-dark);
  color: var(--vfjq-white);
  padding: 0.6rem 0.8rem;
  text-align: left;
  font-weight: 600;
}

.cookie-table td {
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid var(--vfjq-border);
}

.cookie-table tr:nth-child(even) td { background: var(--vfjq-accent-pale); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vfjq-spacing-lg);
  align-items: start;
}

.contact-details { margin-bottom: var(--vfjq-spacing-md); }
.contact-map { margin-top: var(--vfjq-spacing-sm); }
.contact-map iframe { border-radius: var(--vfjq-radius); }

.site-footer {
  background: var(--vfjq-black);
  color: rgba(255,255,255,0.75);
  margin-top: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--vfjq-spacing-lg);
  padding: var(--vfjq-spacing-lg) 0;
}

.footer-logo {
  font-family: var(--vfjq-font-main);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--vfjq-white) !important;
  text-decoration: none !important;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }
.footer-legal-id { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

.footer-nav {
  display: flex;
  gap: var(--vfjq-spacing-lg);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col h4 {
  color: var(--vfjq-white);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-col a:hover { color: var(--vfjq-accent-light); }

.footer-bottom {
  background: #0a0a0f;
  padding: 1rem 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0 0 0.3rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  max-width: 900px;
}

.unkf {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--vfjq-accent-dark);
  color: var(--vfjq-white);
  padding: 1rem;
  display: none;
  border-top: 3px solid var(--vfjq-accent);
}

.unkf.is-visible { display: block; }

.cookie-inner {
  max-width: var(--vfjq-container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cookie-inner p { margin: 0; font-size: 0.88rem; flex: 1; min-width: 200px; }
.cookie-inner a { color: var(--vfjq-accent-light); }

.ungp {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-cookie-accept {
  background: var(--vfjq-accent);
  color: var(--vfjq-white);
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.1rem;
  font-family: var(--vfjq-font-main);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-cookie-reject {
  background: transparent;
  color: var(--vfjq-white);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  padding: 0.5rem 1.1rem;
  font-family: var(--vfjq-font-main);
  font-size: 0.88rem;
  cursor: pointer;
}

.cookie-link { font-size: 0.82rem; color: var(--vfjq-accent-light); }

@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; }
  .order-inner { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .review-verdict { grid-template-columns: 1fr; }
  .verdict-score { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-right: 0; padding-bottom: var(--vfjq-spacing-sm); }
}

@media (max-width: 768px) {
  :root { --vfjq-spacing-xl: 3rem; }
  .pros-cons { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .header-inner { justify-content: space-between; }
  .footer-nav { flex-direction: column; gap: 1rem; }
  .sources-grid { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .myths-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .band-facts { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
  .band-sep { display: none; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.unkf{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}
.unkf.is-visible,.cookie-banner--visible,.unkf.show,.unkf.active{transform:none !important}
.unkf a{color:inherit;text-decoration:underline}
.unkf button{cursor:pointer}
.umgs{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}
.umgs.is-visible,.cookie-modal--visible,.umgs.show,.umgs.active{display:flex !important}
.uyge,.umgs>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uptt .uuuj,.uptt .ubqj,.uptt .utxl,.uptt .uhop,.umsr .uuuj,.umsr .ubqj,.umsr .utxl,.umsr .uhop{background:#fff !important;color:#1a1a1a !important}
.uuuj,.ubqj{color:#1a1a1a !important}
.uuuj label,.ubqj label,.uuuj p,.ubqj p,.uuuj .ucrd,.uuuj span,.ubqj span,.usvs,.uqgt,.utxl .ueji,.utxl .ueji *{color:#1a1a1a !important}
.usvs,.uqgt{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uuuj .ucwd{color:#1a1a1a !important}
.uuuj .ucwd.is-sel{color:#fff !important}
.uaoo .uttz{display:none}
.uaoo .uttz.is-visible{display:block !important;color:#c0392b}
.uaoo .usds,.uaoo [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uaoo{color:#1a1a1a}
.uptt .uaoo,.umsr .uaoo{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ulxh{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ulxh img{width:100%;height:100%;object-fit:cover}
.udqq,.uvgf{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.udqq img,.uvgf img{width:100%;height:100%;object-fit:cover;display:block}
.udqq img{opacity:.28}
.uvgf img{opacity:.07}
*:has(> .udqq),*:has(> .uvgf){position:relative}
.upvf{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)}
.upvf .uyfi{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.upvf .urqw{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uuta{margin:1.4rem auto;max-width:920px}
.uuta img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ubfr{padding:3rem 0}
.unrp{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.unrp img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uhop{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uxfh{display:flex;overflow:hidden;gap:0 !important}
.ubou{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.upzy{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}
.uton{left:.5rem}.uxxh{right:.5rem}
.utxl .ueji{display:none}.utxl .ueji.is-active{display:block}
.uuuj .udhq{display:block !important}
.uuuj .uacn{display:flex;flex-wrap:wrap;gap:.5rem}
.uuuj .ucwd{cursor:pointer}
