:root {
  --vzka-accent: #8a20e8;
  --vzka-accent-dark: #6c18c0;
  --vzka-accent-light: #e8d5ff;
  --vzka-dark: #1a0a2e;
  --vzka-dark-2: #2f016a;
  --vzka-black: #0d0d0d;
  --vzka-white: #ffffff;
  --vzka-cream: #fff8cb;
  --vzka-bg: #f7f7f8;
  --vzka-bg-2: #efeff2;
  --vzka-text: #1e1e2e;
  --vzka-text-muted: #5a5a72;
  --vzka-border: #e0dff0;
  --vzka-radius: 8px;
  --vzka-shadow-hard: 4px 4px 0px var(--vzka-black);
  --vzka-shadow-hard-accent: 4px 4px 0px var(--vzka-accent);
  --vzka-container: 1080px;
  --vzka-font: 'Archivo', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--vzka-font);
  background: var(--vzka-bg);
  color: var(--vzka-text);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--vzka-container);
  margin: 0 auto;
  padding: 0 24px;
}

.accent-word { color: var(--vzka-accent); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vzka-accent);
  margin-bottom: 12px;
  display: block;
}

.section-intro {
  max-width: 640px;
  color: var(--vzka-text-muted);
  margin-top: 12px;
  margin-bottom: 48px;
}

.utoq {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vzka-dark);
  color: var(--vzka-white);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.utoq.is-visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--vzka-container);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; font-size: 0.875rem; }
.cookie-banner-text a { color: var(--vzka-accent-light); }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--vzka-radius);
  font-family: var(--vzka-font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.cookie-btn-accept {
  background: var(--vzka-accent);
  color: var(--vzka-white);
  border-color: var(--vzka-accent);
}
.cookie-btn-accept:hover { background: var(--vzka-accent-dark); border-color: var(--vzka-accent-dark); }
.cookie-btn-reject {
  background: transparent;
  color: var(--vzka-white);
  border-color: rgba(255,255,255,0.4);
}
.cookie-btn-reject:hover { border-color: var(--vzka-white); }

.uijx {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--vzka-border);
  padding: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--vzka-text);
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; color: var(--vzka-accent); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.site-nav a {
  color: var(--vzka-text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--vzka-radius);
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover { color: var(--vzka-accent); background: var(--vzka-accent-light); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--vzka-accent); }
.ultg {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ultg span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vzka-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--vzka-radius);
  font-family: var(--vzka-font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--vzka-accent);
  color: var(--vzka-white);
  border-color: var(--vzka-accent);
  box-shadow: var(--vzka-shadow-hard-accent);
}
.btn-primary:hover { background: var(--vzka-accent-dark); border-color: var(--vzka-accent-dark); box-shadow: 2px 2px 0px var(--vzka-accent-dark); }

.btn-ghost {
  background: transparent;
  color: var(--vzka-text);
  border-color: var(--vzka-border);
}
.btn-ghost:hover { border-color: var(--vzka-accent); color: var(--vzka-accent); }

.btn-outline-accent {
  background: transparent;
  color: var(--vzka-accent);
  border-color: var(--vzka-accent);
  box-shadow: var(--vzka-shadow-hard-accent);
}
.btn-outline-accent:hover { background: var(--vzka-accent); color: var(--vzka-white); box-shadow: 2px 2px 0px var(--vzka-accent-dark); }

.btn-outline-light {
  background: transparent;
  color: var(--vzka-white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--vzka-white); }

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,2,80,0.72) 0%, rgba(138,32,232,0.28) 60%, rgba(0,0,0,0.18) 100%);
}
.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-card {
  background: rgba(255,255,255,0.96);
  border-radius: var(--vzka-radius);
  padding: 48px;
  max-width: 540px;
  box-shadow: var(--vzka-shadow-hard);
}
.hero-card h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--vzka-text);
}
.hero-sub {
  color: var(--vzka-text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--vzka-text-muted);
  background: var(--vzka-bg);
  border: 1px solid var(--vzka-border);
  border-radius: 100px;
  padding: 4px 12px;
}
.trust-chip svg { color: var(--vzka-accent); flex-shrink: 0; }

.hero-pack {
  flex-shrink: 0;
}
.hero-pack img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(8px 8px 0px rgba(44,2,80,0.4));
}

.stat-band {
  padding: 72px 0;
}
.uend {
  background: var(--vzka-accent);
  color: var(--vzka-white);
}
.section-accent-soft {
  background: var(--vzka-accent-light);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--vzka-white);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.author-section { padding: 96px 0; }
.author-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.author-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 20px; line-height: 1.25; }
.author-text p { color: var(--vzka-text-muted); margin-bottom: 16px; }
.press-quote {
  border-left: 4px solid var(--vzka-accent);
  padding: 16px 24px;
  margin: 28px 0 0;
  background: var(--vzka-bg-2);
  border-radius: 0 var(--vzka-radius) var(--vzka-radius) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--vzka-text);
}
.press-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--vzka-text-muted);
  font-weight: 600;
}
.author-values h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.values-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.values-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--vzka-white);
  padding: 16px 20px;
  border-radius: var(--vzka-radius);
  box-shadow: var(--vzka-shadow-hard);
}
.val-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--vzka-accent-light);
  border-radius: var(--vzka-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vzka-accent);
}
.values-list li span:last-child { font-size: 0.9rem; color: var(--vzka-text-muted); padding-top: 2px; }
.values-list li strong { color: var(--vzka-text); }

.steps-section { padding: 96px 0; background: var(--vzka-bg-2); }
.steps-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; max-width: 640px; line-height: 1.25; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.step-card {
  background: var(--vzka-white);
  border-radius: var(--vzka-radius);
  box-shadow: var(--vzka-shadow-hard);
  overflow: hidden;
  position: relative;
}
.step-number {
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--vzka-accent);
  background: var(--vzka-accent-light);
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 1;
}
.step-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.step-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.step-card h3 { font-size: 1.1rem; font-weight: 700; padding: 20px 20px 8px; }
.step-card p { font-size: 0.9rem; color: var(--vzka-text-muted); padding: 0 20px 24px; }

.reading-section { padding: 96px 0; }
.reading-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; line-height: 1.25; }
.reading-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.reading-card {
  background: var(--vzka-white);
  border-radius: var(--vzka-radius);
  box-shadow: var(--vzka-shadow-hard);
  padding: 28px;
  display: block;
  color: var(--vzka-text);
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.reading-card:hover { box-shadow: var(--vzka-shadow-hard-accent); text-decoration: none; }
.reading-card-ext { cursor: default; }
.reading-card-ext:hover { box-shadow: var(--vzka-shadow-hard); }
.reading-card-icon {
  width: 44px;
  height: 44px;
  background: var(--vzka-accent-light);
  border-radius: var(--vzka-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vzka-accent);
  margin-bottom: 16px;
}
.reading-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.reading-card p { font-size: 0.875rem; color: var(--vzka-text-muted); margin-bottom: 16px; }
.reading-link { font-size: 0.85rem; font-weight: 700; color: var(--vzka-accent); }

.faq-section { padding: 96px 0; background: var(--vzka-bg); }
.faq-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 40px; line-height: 1.25; }
.faq-grid { display: flex; flex-direction: column; gap: 12px; max-width: 780px; }
.umtc {
  background: var(--vzka-white);
  border-radius: var(--vzka-radius);
  box-shadow: var(--vzka-shadow-hard);
  overflow: hidden;
}
.uxee {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--vzka-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vzka-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.uxee:hover { color: var(--vzka-accent); }
.uxee[aria-expanded="true"] { color: var(--vzka-accent); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.uxee[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.uqqd {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--vzka-text-muted);
  line-height: 1.7;
}
.uqqd p { margin-bottom: 10px; }
.uqqd p:last-child { margin-bottom: 0; }

.ingredients-section { padding: 96px 0; background: var(--vzka-bg-2); }
.ingredients-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; line-height: 1.25; }
.ingredient-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.ing-gallery-img { border-radius: var(--vzka-radius); overflow: hidden; box-shadow: var(--vzka-shadow-hard); }
.ing-gallery-img img { width: 100%; height: 100%; object-fit: cover; }
.ing-img-wide { grid-row: span 2; }

.ingredient-table-wrap {
  background: var(--vzka-white);
  border-radius: var(--vzka-radius);
  box-shadow: var(--vzka-shadow-hard);
  overflow: hidden;
}
.ingredient-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.ingredient-table caption {
  padding: 20px 24px 12px;
  text-align: left;
  font-size: 0.8rem;
  color: var(--vzka-text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ingredient-table th {
  background: var(--vzka-dark);
  color: var(--vzka-white);
  padding: 14px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ingredient-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--vzka-border);
  vertical-align: top;
}
.ingredient-table tr:last-child td { border-bottom: none; }
.ingredient-table tr:hover td { background: var(--vzka-bg); }
.table-note {
  font-size: 0.78rem;
  color: var(--vzka-text-muted);
  padding: 12px 20px;
}

.quiz-section { padding: 96px 0; }
.quiz-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; color: var(--vzka-white); }
.quiz-section .section-label { color: rgba(255,255,255,0.7); }
.quiz-section .section-intro { color: rgba(255,255,255,0.8); margin-bottom: 40px; }
.uuan {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--vzka-radius);
  padding: 40px;
  max-width: 640px;
}
.quiz-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vzka-white);
  margin-bottom: 20px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--vzka-radius);
  padding: 14px 20px;
  text-align: left;
  font-family: var(--vzka-font);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--vzka-white);
  cursor: pointer;
  transition: all 0.2s;
}
.quiz-option:hover { background: rgba(255,255,255,0.18); border-color: var(--vzka-white); }
.quiz-result { text-align: center; }
.quiz-result-inner { padding: 20px 0; }
.quiz-result-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vzka-white);
  margin: 0 auto 20px;
}
.quiz-result-title { font-size: 1.3rem; font-weight: 700; color: var(--vzka-white); margin-bottom: 12px; }
.quiz-result-text { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 0.95rem; max-width: 480px; margin-left: auto; margin-right: auto; }

.testimonials-section { padding: 96px 0; background: var(--vzka-white); }
.testimonials-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 48px; line-height: 1.25; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--vzka-bg);
  border-radius: var(--vzka-radius);
  box-shadow: var(--vzka-shadow-hard);
  padding: 28px;
}
.testimonial-stars { margin-bottom: 16px; }
.testimonial-stars img { width: 88px; height: auto; }
.testimonial-card blockquote { font-style: italic; color: var(--vzka-text-muted); font-size: 0.9rem; line-height: 1.7; }
.testimonial-card cite { display: block; margin-top: 12px; font-style: normal; font-weight: 700; font-size: 0.85rem; color: var(--vzka-text); }
.lifestyle-images-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.lifestyle-images-row img { border-radius: var(--vzka-radius); box-shadow: var(--vzka-shadow-hard); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.testimonial-disclaimer { font-size: 0.8rem; color: var(--vzka-text-muted); font-style: italic; }

.order-section { padding: 96px 0; }
.uplh { background: var(--vzka-dark); color: var(--vzka-white); }
.uplh h2 { color: var(--vzka-white); }
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.order-product img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 24px;
  filter: drop-shadow(6px 6px 0px rgba(138,32,232,0.5));
}
.order-product h3 { font-size: 1.5rem; font-weight: 800; color: var(--vzka-white); margin-bottom: 6px; }
.product-sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.price-current { font-size: 2rem; font-weight: 800; color: var(--vzka-cream); }
.price-old { font-size: 1.1rem; color: rgba(255,255,255,0.45); text-decoration: line-through; }
.price-badge { background: var(--vzka-accent); color: var(--vzka-white); font-size: 0.78rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.order-trust-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.order-trust-list li { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.order-trust-list svg { color: var(--vzka-accent-light); flex-shrink: 0; }

.order-form-wrap h2 { font-size: 1.6rem; font-weight: 800; color: var(--vzka-white); margin-bottom: 8px; }
.order-form-sub { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.ukky { display: flex; flex-direction: column; gap: 16px; }
.utwl { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--vzka-radius);
  padding: 12px 16px;
  font-family: var(--vzka-font);
  font-size: 0.95rem;
  color: var(--vzka-white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--vzka-accent-light); }
.form-checkbox { display: flex; gap: 12px; align-items: flex-start; }
.form-checkbox input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--vzka-accent); width: 16px; height: 16px; }
.form-checkbox label { font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.form-checkbox a { color: var(--vzka-accent-light); }
.form-submit {
  background: transparent;
  color: var(--vzka-white);
  border: 2px solid var(--vzka-white);
  border-radius: var(--vzka-radius);
  padding: 14px 28px;
  font-family: var(--vzka-font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 4px 4px 0px rgba(255,255,255,0.3);
}
.form-submit:hover { background: var(--vzka-white); color: var(--vzka-dark); box-shadow: 2px 2px 0px rgba(255,255,255,0.2); }
.form-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.5); line-height: 1.5; margin-top: -4px; }
.form-disclaimer a { color: rgba(255,255,255,0.7); }

.site-footer {
  background: var(--vzka-black);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--vzka-white); margin-bottom: 12px; }
.footer-brand .logo:hover { color: var(--vzka-accent-light); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vzka-white); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--vzka-accent-light); text-decoration: none; }
.footer-disclaimer {
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.6;
}
.footer-bottom { padding: 20px 0 24px; }
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.4); font-size: 0.78rem; }
.footer-legal-links a:hover { color: var(--vzka-accent-light); text-decoration: none; }

.breadcrumb ol { list-style: none; display: flex; gap: 8px; align-items: center; margin-bottom: 16px; }
.breadcrumb li { font-size: 0.8rem; color: var(--vzka-text-muted); }
.breadcrumb li::after { content: "›"; margin-left: 8px; }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--vzka-accent); }

.page-hero { padding: 72px 0 56px; background: var(--vzka-bg-2); border-bottom: 1px solid var(--vzka-border); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.page-hero p { color: var(--vzka-text-muted); max-width: 640px; }
.byline { font-size: 0.85rem; color: var(--vzka-text-muted); margin-top: 12px; font-style: italic; }

.legal-section { padding: 64px 0; }
.prose { max-width: 760px; }
.prose h2 { font-size: 1.3rem; font-weight: 700; margin: 36px 0 12px; color: var(--vzka-text); }
.prose h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 10px; color: var(--vzka-text); }
.prose p { color: var(--vzka-text-muted); margin-bottom: 14px; line-height: 1.75; }
.prose ul, .prose ol { margin: 12px 0 14px 24px; }
.prose li { color: var(--vzka-text-muted); margin-bottom: 8px; line-height: 1.65; }
.prose a { color: var(--vzka-accent); }

.prose-wide { max-width: 820px; }
.article-img-float { float: right; margin: 0 0 24px 36px; width: 42%; border-radius: var(--vzka-radius); box-shadow: var(--vzka-shadow-hard); overflow: hidden; }
.article-img-float img { width: 100%; height: auto; }

.ingredient-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.ing-detail-card {
  background: var(--vzka-white);
  border-radius: var(--vzka-radius);
  box-shadow: var(--vzka-shadow-hard);
  overflow: hidden;
}
.ing-detail-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ing-detail-card h2 { font-size: 1.2rem; font-weight: 700; padding: 20px 24px 10px; }
.ing-detail-card p { font-size: 0.875rem; color: var(--vzka-text-muted); padding: 0 24px 20px; line-height: 1.7; }
.claim-box { margin: 0 24px 24px; padding: 14px 18px; background: var(--vzka-accent-light); border-left: 4px solid var(--vzka-accent); border-radius: 0 var(--vzka-radius) var(--vzka-radius) 0; font-size: 0.875rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-details li { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon { width: 36px; height: 36px; background: var(--vzka-accent-light); border-radius: var(--vzka-radius); display: flex; align-items: center; justify-content: center; color: var(--vzka-accent); flex-shrink: 0; }
.contact-details strong { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 2px; }
.contact-map iframe { width: 100%; height: 350px; border-radius: var(--vzka-radius); border: 0; }
.contact-form-card { background: var(--vzka-bg-2); border-radius: var(--vzka-radius); box-shadow: var(--vzka-shadow-hard); padding: 40px; }
.contact-form-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }
.utwl .form-group label { color: var(--vzka-text); }
.utwl .form-group input,
.utwl .form-group textarea { background: var(--vzka-white); border-color: var(--vzka-border); color: var(--vzka-text); }
.utwl .form-group input::placeholder,
.utwl .form-group textarea::placeholder { color: var(--vzka-text-muted); }
.utwl .form-group input:focus,
.utwl .form-group textarea:focus { border-color: var(--vzka-accent); }
.utwl .form-checkbox label { color: var(--vzka-text-muted); }
.utwl .form-submit { background: transparent; color: var(--vzka-accent); border-color: var(--vzka-accent); box-shadow: var(--vzka-shadow-hard-accent); }
.utwl .form-submit:hover { background: var(--vzka-accent); color: var(--vzka-white); }

.centered-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; }
.centered-card { background: var(--vzka-white); border-radius: var(--vzka-radius); box-shadow: var(--vzka-shadow-hard); padding: 56px 48px; max-width: 520px; width: 100%; text-align: center; }
.centered-icon { width: 64px; height: 64px; background: var(--vzka-accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--vzka-accent); margin: 0 auto 24px; }
.centered-card h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.centered-card p { color: var(--vzka-text-muted); margin-bottom: 14px; font-size: 0.95rem; }
.centered-card a.btn { margin-top: 12px; }
.not-found-num { font-size: 6rem; font-weight: 800; color: var(--vzka-accent-light); line-height: 1; margin-bottom: 12px; }

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-pack { display: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .author-grid { grid-template-columns: 1fr; }
  .ingredient-detail-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .ingredient-gallery { grid-template-columns: 1fr 1fr; }
  .ing-img-wide { grid-row: auto; grid-column: span 2; }
}

@media (max-width: 640px) {
  .hero-card { padding: 28px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .reading-grid { grid-template-columns: 1fr; }
  .lifestyle-images-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { flex-direction: column; align-items: flex-start; }
  .ultg { display: flex; }
  .site-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--vzka-white); flex-direction: column; padding: 16px 24px 24px; border-bottom: 1px solid var(--vzka-border); box-shadow: 0 4px 12px rgba(0,0,0,0.08); gap: 4px; }
  .site-nav.open { display: flex; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .article-img-float { float: none; width: 100%; margin: 0 0 24px; }
  .ing-detail-card h2 { font-size: 1.05rem; }
  .contact-form-card { padding: 24px 20px; }
  .centered-card { padding: 36px 24px; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.utoq{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}
.utoq.is-visible,.cookie-banner--visible,.utoq.show,.utoq.active{transform:none !important}
.utoq a{color:inherit;text-decoration:underline}
.utoq button{cursor:pointer}
.utng{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}
.utng.is-visible,.cookie-modal--visible,.utng.show,.utng.active{display:flex !important}
.ugsj,.utng>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uplh .uuan,.uplh .undr,.uplh .uzvz,.uplh .umdj,.uend .uuan,.uend .undr,.uend .uzvz,.uend .umdj{background:#fff !important;color:#1a1a1a !important}
.uuan,.undr{color:#1a1a1a !important}
.uuan label,.undr label,.uuan p,.undr p,.uuan .ujlb,.uuan span,.undr span,.uhsc,.uobd,.uzvz .ukad,.uzvz .ukad *{color:#1a1a1a !important}
.uhsc,.uobd{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uuan .ucsn{color:#1a1a1a !important}
.uuan .ucsn.is-sel{color:#fff !important}
.ukky .uzzp{display:none}
.ukky .uzzp.is-visible{display:block !important;color:#c0392b}
.ukky .ubsu,.ukky [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ukky{color:#1a1a1a}
.uplh .ukky,.uend .ukky{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ugwg{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ugwg img{width:100%;height:100%;object-fit:cover}
.ucxc,.uxfm{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ucxc img,.uxfm img{width:100%;height:100%;object-fit:cover;display:block}
.ucxc img{opacity:.28}
.uxfm img{opacity:.07}
*:has(> .ucxc),*:has(> .uxfm){position:relative}
.uoiy{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)}
.uoiy .uaay{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uoiy .uqsp{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.upti{margin:1.4rem auto;max-width:920px}
.upti img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uqps{padding:3rem 0}
.uiaa{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uiaa img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.umdj{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.umkn{display:flex;overflow:hidden;gap:0 !important}
.ucwh{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ufsg{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}
.uezb{left:.5rem}.uxzi{right:.5rem}
.uzvz .ukad{display:none}.uzvz .ukad.is-active{display:block}
.uuan .ujuc{display:block !important}
.uuan .ubxy{display:flex;flex-wrap:wrap;gap:.5rem}
.uuan .ucsn{cursor:pointer}
