:root {
  --vwxw-clr-primary: #7c3aed;
  --vwxw-clr-primary-dark: #3b0091;
  --vwxw-clr-accent: #c4b0ff;
  --vwxw-clr-gold: #fff8cb;
  --vwxw-clr-pink-light: #ffe8f9;
  --vwxw-clr-bg: #ffffff;
  --vwxw-clr-surface: #fafafa;
  --vwxw-clr-dark: #140a2e;
  --vwxw-clr-dark-mid: #1e1140;
  --vwxw-clr-text: #1a1a2e;
  --vwxw-clr-text-muted: #5a5a72;
  --vwxw-clr-border: #e8e4f0;
  --vwxw-ff-head: 'Playfair Display', Georgia, serif;
  --vwxw-ff-body: 'Source Sans 3', system-ui, sans-serif;
  --vwxw-radius: 0px;
  --vwxw-shadow-elevated: 0 4px 24px rgba(100,60,200,0.10), 0 1px 4px rgba(0,0,0,0.06);
  --vwxw-container: 1320px;
  --vwxw-space-xs: 0.5rem;
  --vwxw-space-sm: 1rem;
  --vwxw-space-md: 2rem;
  --vwxw-space-lg: 3.5rem;
  --vwxw-space-xl: 5rem;
}

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

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

body {
  font-family: var(--vwxw-ff-body);
  color: var(--vwxw-clr-text);
  background: var(--vwxw-clr-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--vwxw-clr-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--vwxw-container);
  margin-inline: auto;
  padding-inline: 2rem;
}

h1, h2, h3, h4 {
  font-family: var(--vwxw-ff-head);
  line-height: 1.2;
  color: var(--vwxw-clr-text);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 600; margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; margin-bottom: 0.75rem; }

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

.btn-primary {
  display: inline-block;
  background: var(--vwxw-clr-primary);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--vwxw-radius);
  font-family: var(--vwxw-ff-body);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--vwxw-clr-primary);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--vwxw-clr-primary-dark); border-color: var(--vwxw-clr-primary-dark); text-decoration: none; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--vwxw-clr-primary);
  padding: 0.85rem 2rem;
  border-radius: var(--vwxw-radius);
  font-family: var(--vwxw-ff-body);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--vwxw-clr-primary);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { background: var(--vwxw-clr-primary); color: #fff; text-decoration: none; }

.uruh {
  background: var(--vwxw-clr-dark);
  color: #fff;
}
.uruh h1, .uruh h2, .uruh h3 { color: #fff; }
.uruh a { color: var(--vwxw-clr-accent); }

.uhtt {
  background: var(--vwxw-clr-primary-dark);
  color: #fff;
}
.uhtt h1, .uhtt h2, .uhtt h3 { color: var(--vwxw-clr-gold); }
.uhtt a { color: var(--vwxw-clr-accent); }

.uodh {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vwxw-clr-dark);
  color: #fff;
  z-index: 9999;
  padding: 1.25rem 1.5rem;
  display: none;
  border-top: 3px solid var(--vwxw-clr-primary);
}
.uodh.is-visible { display: block; }
.cookie-inner { max-width: var(--vwxw-container); margin-inline: auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cookie-inner p { margin: 0; font-size: 0.9rem; flex: 1 1 300px; }
.cookie-inner a { color: var(--vwxw-clr-accent); }
.ummr { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-cookie-accept { background: var(--vwxw-clr-primary); color: #fff; border: none; padding: 0.6rem 1.25rem; border-radius: var(--vwxw-radius); font-weight: 600; cursor: pointer; font-size: 0.9rem; }
.btn-cookie-reject, .btn-cookie-settings { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); padding: 0.6rem 1.25rem; border-radius: var(--vwxw-radius); font-weight: 500; cursor: pointer; font-size: 0.9rem; }
.btn-cookie-reject:hover, .btn-cookie-settings:hover { border-color: #fff; }

.umzw {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vwxw-clr-bg);
  border-bottom: 1px solid var(--vwxw-clr-border);
  padding: 1rem 0;
}
.header-inner { display: flex; align-items: center; gap: 2rem; }
.site-logo { font-family: var(--vwxw-ff-head); font-size: 1.4rem; font-weight: 700; color: var(--vwxw-clr-primary-dark); text-decoration: none; white-space: nowrap; }
.ucxp { flex: 1; }
.ucxp ul { list-style: none; padding: 0; display: flex; gap: 2rem; }
.ucxp a { color: var(--vwxw-clr-text); font-weight: 500; font-size: 0.95rem; text-decoration: none; }
.ucxp a:hover, .ucxp a[aria-current="page"] { color: var(--vwxw-clr-primary); }
.nav-cta { padding: 0.65rem 1.5rem; font-size: 0.9rem; }

.breadcrumb-nav { background: var(--vwxw-clr-surface); padding: 0.6rem 0; border-bottom: 1px solid var(--vwxw-clr-border); }
.breadcrumb { list-style: none; padding: 0; display: flex; gap: 0.5rem; font-size: 0.85rem; color: var(--vwxw-clr-text-muted); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; }
.breadcrumb a { color: var(--vwxw-clr-text-muted); }
.breadcrumb a:hover { color: var(--vwxw-clr-primary); }

.hero-split { padding: var(--vwxw-space-xl) 0; background: var(--vwxw-clr-bg); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.editorial-tag { display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vwxw-clr-primary); margin-bottom: 1.25rem; }
.hero-h1 { margin-bottom: 1.5rem; }
.h1-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--vwxw-clr-primary);
  font-style: italic;
}
.hero-lead { font-size: 1.1rem; color: var(--vwxw-clr-text-muted); margin-bottom: 1.75rem; max-width: 560px; }
.trust-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.chip { display: inline-block; border: 1px solid var(--vwxw-clr-border); padding: 0.35rem 0.85rem; border-radius: var(--vwxw-radius); font-size: 0.82rem; font-weight: 600; color: var(--vwxw-clr-text); background: var(--vwxw-clr-surface); }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.editorial-byline { font-size: 0.82rem; color: var(--vwxw-clr-text-muted); font-style: italic; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.pack-frame { width: 100%; max-width: 460px; aspect-ratio: 1/1; overflow: hidden; }
.pack-frame img { width: 100%; height: 100%; object-fit: contain; }
.hero-bg-layer { position: absolute; bottom: -2rem; left: -1rem; right: -1rem; height: 120px; overflow: hidden; opacity: 0.18; border-radius: var(--vwxw-radius); z-index: -1; }
.hero-bg-layer img { width: 100%; height: 100%; object-fit: cover; }

.routine-section { padding: var(--vwxw-space-xl) 0; background: var(--vwxw-clr-surface); }
.section-intro { font-size: 1.08rem; color: var(--vwxw-clr-text-muted); max-width: 680px; margin-bottom: 2.5rem; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.step-card { padding: 2rem 1.5rem; background: var(--vwxw-clr-bg); box-shadow: var(--vwxw-shadow-elevated); }
.step-number { display: block; font-family: var(--vwxw-ff-head); font-size: 2.5rem; font-weight: 700; color: var(--vwxw-clr-primary); opacity: 0.25; line-height: 1; margin-bottom: 0.75rem; }
.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.92rem; color: var(--vwxw-clr-text-muted); margin: 0; }
.lifestyle-visual { max-width: 720px; margin-inline: auto; }

.mechanism-section { padding: var(--vwxw-space-xl) 0; }
.mechanism-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.mechanism-step { padding: 2.5rem 2rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }
.mech-icon { margin-bottom: 1.25rem; }
.mechanism-step h3 { color: var(--vwxw-clr-gold); font-size: 1.05rem; margin-bottom: 0.75rem; }
.mechanism-step p { font-size: 0.95rem; color: rgba(255,255,255,0.85); margin: 0; }
.mechanism-visual { max-width: 840px; margin-inline: auto; border-radius: var(--vwxw-radius); overflow: hidden; }

.stat-band { padding: var(--vwxw-space-xl) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 3rem; text-align: center; }
.stat-item { padding: 1.5rem 1rem; }
.stat-number { display: block; font-family: var(--vwxw-ff-head); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--vwxw-clr-accent); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.7); display: block; }
.stat-world-map { max-width: 860px; margin-inline: auto; opacity: 0.9; }

.faq-section { padding: var(--vwxw-space-xl) 0; background: var(--vwxw-clr-bg); }
.faq-inner h2 { margin-bottom: 0.75rem; }
.faq-list { margin-top: 2.5rem; }
.upbt { border-bottom: 1px solid var(--vwxw-clr-border); }
.ujuu {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--vwxw-ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vwxw-clr-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.ujuu::after { content: '+'; font-size: 1.4rem; color: var(--vwxw-clr-primary); flex-shrink: 0; transition: transform 0.2s; }
.ujuu[aria-expanded="true"]::after { transform: rotate(45deg); }
.uqxd { display: none; padding: 0 0 1.25rem; color: var(--vwxw-clr-text-muted); font-size: 0.97rem; }
.uqxd.is-open { display: block; }

.ingredients-section { padding: var(--vwxw-space-xl) 0; background: var(--vwxw-clr-surface); }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-bottom: 2rem; }
.ingredient-card { background: var(--vwxw-clr-bg); box-shadow: var(--vwxw-shadow-elevated); overflow: hidden; }
.ingredient-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ingredient-info { padding: 1.5rem; }
.ingredient-info h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.ingredient-source { font-size: 0.8rem; color: var(--vwxw-clr-primary); font-weight: 600; margin-bottom: 0.5rem; }
.ingredient-info p { font-size: 0.9rem; color: var(--vwxw-clr-text-muted); margin-bottom: 0.75rem; }
.efsa-tag { display: inline-block; background: var(--vwxw-clr-gold); color: var(--vwxw-clr-primary-dark); font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem; letter-spacing: 0.04em; }
.nrv-bar-wrap { display: flex; align-items: center; gap: 0.6rem; margin: 0.75rem 0; }
.nrv-label { font-size: 0.75rem; color: var(--vwxw-clr-text-muted); white-space: nowrap; }
.nrv-bar { flex: 1; height: 6px; background: var(--vwxw-clr-border); border-radius: 0; overflow: hidden; }
.nrv-fill { height: 100%; background: var(--vwxw-clr-primary); }
.nrv-val { font-size: 0.8rem; font-weight: 700; color: var(--vwxw-clr-primary); white-space: nowrap; }
.ingredient-disclaimer { font-size: 0.82rem; color: var(--vwxw-clr-text-muted); font-style: italic; margin-top: 1.5rem; max-width: 720px; }
.nutrient-info { padding: 1.5rem; }
.nutrient-info h3 { font-size: 1.1rem; }

.comparison-section { padding: var(--vwxw-space-xl) 0; background: var(--vwxw-clr-bg); }
.comparison-table-wrap { overflow-x: auto; margin: 2rem 0; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.comparison-table th, .comparison-table td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--vwxw-clr-border); }
.comparison-table th { font-family: var(--vwxw-ff-head); font-weight: 600; background: var(--vwxw-clr-surface); color: var(--vwxw-clr-text); }
.highlight-col { background: rgba(124,58,237,0.05); }
.comparison-table th.highlight-col { background: var(--vwxw-clr-primary); color: #fff; }
.check { color: #16a34a; font-weight: 700; }
.cross { color: var(--vwxw-clr-text-muted); }
.partial { color: #ca8a04; }
.comparison-note { font-size: 0.82rem; color: var(--vwxw-clr-text-muted); font-style: italic; margin-top: 1rem; }

.order-section { padding: var(--vwxw-space-xl) 0; }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.order-info h2 { color: var(--vwxw-clr-gold); margin-bottom: 1.5rem; }
.pack-detail-visual { margin-bottom: 2rem; border-radius: var(--vwxw-radius); overflow: hidden; }
.order-highlights { list-style: none; padding: 0; margin-bottom: 0; }
.order-highlights li { padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 0.95rem; color: rgba(255,255,255,0.88); }
.price-regular { text-decoration: line-through; color: rgba(255,255,255,0.5); margin-right: 0.5rem; }
.price-sale { color: var(--vwxw-clr-gold); font-weight: 700; font-size: 1.2rem; }
.order-form-wrap { background: var(--vwxw-clr-bg); padding: 2.5rem; }
.order-form-wrap h3 { font-family: var(--vwxw-ff-head); font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--vwxw-clr-text); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; color: var(--vwxw-clr-text); }
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--vwxw-clr-border);
  border-radius: var(--vwxw-radius);
  font-family: var(--vwxw-ff-body);
  font-size: 1rem;
  color: var(--vwxw-clr-text);
  background: var(--vwxw-clr-bg);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--vwxw-clr-primary); }
.consent-group { display: flex; align-items: flex-start; gap: 0.75rem; }
.consent-group input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--vwxw-clr-primary); }
.consent-group label { font-weight: 400; font-size: 0.85rem; color: var(--vwxw-clr-text-muted); }
.btn-order { width: 100%; padding: 1rem; font-size: 1.05rem; text-align: center; }
.form-note { font-size: 0.8rem; color: var(--vwxw-clr-text-muted); margin-top: 0.75rem; text-align: center; }

.testimonials-section { padding: var(--vwxw-space-xl) 0; background: var(--vwxw-clr-surface); }
.testimonials-section h2 { margin-bottom: 0.5rem; }
.testimonial-disclaimer { font-size: 0.82rem; color: var(--vwxw-clr-text-muted); font-style: italic; margin-bottom: 2.5rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--vwxw-clr-bg); box-shadow: var(--vwxw-shadow-elevated); padding: 2rem 1.5rem; }
.testimonial-card p { font-size: 0.93rem; color: var(--vwxw-clr-text); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; flex-direction: column; gap: 0.2rem; }
.author-initial { font-weight: 700; font-size: 0.95rem; color: var(--vwxw-clr-primary); }
.author-loc { font-size: 0.82rem; color: var(--vwxw-clr-text-muted); }
.star-rating { color: #f59e0b; font-size: 0.95rem; letter-spacing: 0.05em; }

.lf-calc-section { padding: var(--vwxw-space-xl) 0; }
.calc-inner { max-width: 600px; margin-inline: auto; text-align: center; }
.calc-inner h2 { color: var(--vwxw-clr-gold); margin-bottom: 1rem; }
.calc-inner > p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.uljx { background: rgba(255,255,255,0.07); padding: 2.5rem; border: 1px solid rgba(255,255,255,0.12); }
.calc-field { margin-bottom: 1.5rem; }
.calc-field label { display: block; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.lf-calc-input { width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: #fff; font-size: 1.1rem; font-family: var(--vwxw-ff-body); border-radius: var(--vwxw-radius); text-align: center; }
.lf-calc-input::placeholder { color: rgba(255,255,255,0.4); }
.lf-calc-trigger { margin-top: 0; width: 100%; padding: 0.85rem; background: var(--vwxw-clr-gold); color: var(--vwxw-clr-primary-dark); border: 2px solid var(--vwxw-clr-gold); border-radius: var(--vwxw-radius); font-weight: 700; font-size: 1rem; cursor: pointer; }
.lf-calc-result { margin-top: 1.5rem; font-size: 1.3rem; font-family: var(--vwxw-ff-head); font-weight: 700; color: var(--vwxw-clr-gold); min-height: 2rem; }
.calc-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 1.5rem; }

.active-visual-section { padding: var(--vwxw-space-xl) 0; background: var(--vwxw-clr-bg); }
.active-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.active-text h2 { margin-bottom: 1.25rem; }
.active-text p { color: var(--vwxw-clr-text-muted); margin-bottom: 1rem; }
.active-text .btn-primary { margin-top: 0.75rem; }
.active-image { border-radius: var(--vwxw-radius); overflow: hidden; }

.site-footer { padding: var(--vwxw-space-lg) 0 var(--vwxw-space-md); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 3rem; align-items: start; }
.footer-logo { font-family: var(--vwxw-ff-head); font-size: 1.3rem; font-weight: 700; color: var(--vwxw-clr-accent); display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 0.5rem; }
.footer-brand a { color: var(--vwxw-clr-accent); }
.footer-nav ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { color: rgba(255,255,255,0.7); font-size: 0.88rem; text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.footer-disclaimer p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.footer-disclaimer strong { color: rgba(255,255,255,0.7); }

.page-hero { padding: var(--vwxw-space-lg) 0 var(--vwxw-space-md); border-bottom: 1px solid var(--vwxw-clr-border); }
.page-lead { font-size: 1.1rem; color: var(--vwxw-clr-text-muted); max-width: 640px; margin-top: 1rem; }
.content-section { padding: var(--vwxw-space-xl) 0; }
.content-narrow { max-width: 780px; margin-inline: auto; }
.cta-inline { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }

.ingredients-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.bento-item { background: var(--vwxw-clr-bg); box-shadow: var(--vwxw-shadow-elevated); overflow: hidden; }
.bento-wide { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.bento-wide img { height: 100%; object-fit: cover; }
.bento-text { padding: 2rem; }
.bento-item h2 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.bento-item p { font-size: 0.9rem; color: var(--vwxw-clr-text-muted); }
.bento-item { padding: 1.75rem; }
.bento-wide { padding: 0; }
.nrv-headline { font-family: var(--vwxw-ff-head); font-size: 1.5rem; font-weight: 700; color: var(--vwxw-clr-primary); margin-bottom: 0.75rem; }

.nutrient-table-wrap { overflow-x: auto; margin: 2rem 0; }
.nutrient-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.nutrient-table th, .nutrient-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--vwxw-clr-border); text-align: left; }
.nutrient-table th { background: var(--vwxw-clr-surface); font-weight: 700; color: var(--vwxw-clr-text); }
.table-note { font-size: 0.8rem; color: var(--vwxw-clr-text-muted); font-style: italic; margin-top: 0.75rem; }

.legal-page { padding: var(--vwxw-space-xl) 0; }
.legal-date { font-size: 0.85rem; color: var(--vwxw-clr-text-muted); margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: 0.75rem; }

.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin: 1.5rem 0; }
.cookie-table th, .cookie-table td { padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--vwxw-clr-border); text-align: left; }
.cookie-table th { background: var(--vwxw-clr-surface); font-weight: 700; }
.cookie-table code { background: var(--vwxw-clr-surface); padding: 0.1em 0.35em; border-radius: 2px; font-size: 0.85em; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2, .contact-info h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; }
.map-container { margin-top: 1.5rem; }

.thankyou-main { padding: var(--vwxw-space-xl) 0; }
.thankyou-inner { max-width: 540px; margin-inline: auto; text-align: center; }
.thankyou-inner svg { margin: 0 auto 1.5rem; }
.thankyou-inner h1 { margin-bottom: 1rem; }
.thankyou-inner p { color: var(--vwxw-clr-text-muted); margin-bottom: 1rem; }
.thankyou-inner .btn-primary { margin-top: 1rem; }

@media (max-width: 1024px) {
  .hero-grid, .order-grid, .active-split, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .pack-frame { max-width: 300px; margin-inline: auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .mechanism-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .ingredients-bento { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .ucxp { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .ingredients-bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .bento-wide img { height: 200px; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-inline { flex-direction: column; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uodh{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}
.uodh.is-visible,.cookie-banner--visible,.uodh.show,.uodh.active{transform:none !important}
.uodh a{color:inherit;text-decoration:underline}
.uodh button{cursor:pointer}
.uhje{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}
.uhje.is-visible,.cookie-modal--visible,.uhje.show,.uhje.active{display:flex !important}
.unke,.uhje>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uruh .umks,.uruh .uljx,.uruh .uzkb,.uruh .ujkq,.uhtt .umks,.uhtt .uljx,.uhtt .uzkb,.uhtt .ujkq{background:#fff !important;color:#1a1a1a !important}
.umks,.uljx{color:#1a1a1a !important}
.umks label,.uljx label,.umks p,.uljx p,.umks .ukrn,.umks span,.uljx span,.uydd,.ugrf,.uzkb .uubz,.uzkb .uubz *{color:#1a1a1a !important}
.uydd,.ugrf{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.umks .ulpl{color:#1a1a1a !important}
.umks .ulpl.is-sel{color:#fff !important}
.uzct .udpu{display:none}
.uzct .udpu.is-visible{display:block !important;color:#c0392b}
.uzct .umbi,.uzct [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uzct{color:#1a1a1a}
.uruh .uzct,.uhtt .uzct{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uetc{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uetc img{width:100%;height:100%;object-fit:cover}
.ufkl,.unpu{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ufkl img,.unpu img{width:100%;height:100%;object-fit:cover;display:block}
.ufkl img{opacity:.28}
.unpu img{opacity:.07}
*:has(> .ufkl),*:has(> .unpu){position:relative}
.urtj{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)}
.urtj .upbq{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.urtj .uxhn{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uhap{margin:1.4rem auto;max-width:920px}
.uhap img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.udga{padding:3rem 0}
.uehj{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uehj img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ujkq{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uhdj{display:flex;overflow:hidden;gap:0 !important}
.unom{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ubaz{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}
.uigu{left:.5rem}.uehz{right:.5rem}
.uzkb .uubz{display:none}.uzkb .uubz.is-active{display:block}
.umks .uxxh{display:block !important}
.umks .upbc{display:flex;flex-wrap:wrap;gap:.5rem}
.umks .ulpl{cursor:pointer}
