:root {
  --vzgh-accent: #1a3a2a;
  --vzgh-accent-dark: #0f2418;
  --vzgh-accent-mid: #2d5c42;
  --vzgh-bg: #f5f1e6;
  --vzgh-bg-alt: #ece6d4;
  --vzgh-text: #1c1a14;
  --vzgh-muted: #5b5648;
  --vzgh-border: #d8d0bd;
  --vzgh-font-display: "Manrope", system-ui, sans-serif;
  --vzgh-font-body: "Karla", system-ui, sans-serif;
  --vzgh-space-1: 0.25rem;
  --vzgh-space-2: 0.5rem;
  --vzgh-space-3: 0.75rem;
  --vzgh-space-4: 1rem;
  --vzgh-space-6: 1.5rem;
  --vzgh-space-8: 2rem;
  --vzgh-space-12: 3rem;
  --vzgh-space-16: 4rem;
  --vzgh-space-20: 5rem;
  --vzgh-radius-sm: 0.25rem;
  --vzgh-radius: 0.5rem;
  --vzgh-radius-lg: 1rem;
  --vzgh-radius-pill: 999px;
  --vzgh-shadow-sm: 0 1px 4px rgba(26,26,20,.07);
  --vzgh-shadow-md: 0 6px 20px rgba(26,26,20,.11);
  --vzgh-shadow-lg: 0 18px 48px rgba(26,26,20,.15);
  --vzgh-transition: 0.26s ease;
  --vzgh-max-width: 1200px;
  --vzgh-header-height: 4.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--vzgh-font-body); color: var(--vzgh-text); background: var(--vzgh-bg); line-height: 1.68; font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.05rem); }
h1, h2, h3, h4 { font-family: var(--vzgh-font-display); line-height: 1.15; color: var(--vzgh-text); font-weight: 700; }
h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.7vw, 2.3rem); }
h3 { font-size: clamp(1.1rem, 0.9rem + 0.9vw, 1.5rem); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }

.container { width: 92%; max-width: var(--vzgh-max-width); margin-inline: auto; }

.disclosure-bar { background: var(--vzgh-accent); color: rgba(255,255,255,0.88); text-align: center; font-size: 0.8rem; padding: 0.35rem 1rem; font-family: var(--vzgh-font-display); letter-spacing: 0.03em; }

.uvrq { position: sticky; top: 0; z-index: 50; background: rgba(245,241,230,0.93); backdrop-filter: blur(10px); border-bottom: 1px solid var(--vzgh-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--vzgh-header-height); gap: var(--vzgh-space-6); }
.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-mark { width: 2rem; height: 2rem; background: var(--vzgh-accent); color: #fff; border-radius: var(--vzgh-radius-sm); display: flex; align-items: center; justify-content: center; font-family: var(--vzgh-font-display); font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.logo-text { font-family: var(--vzgh-font-display); font-weight: 800; font-size: 1.2rem; color: var(--vzgh-accent); letter-spacing: 0.04em; }
.uiay { display: flex; align-items: center; gap: var(--vzgh-space-6); flex-wrap: nowrap; }
.uiay a { font-size: 0.92rem; font-weight: 600; color: var(--vzgh-muted); transition: color var(--vzgh-transition); white-space: nowrap; }
.uiay a:hover, .uiay a.nav-active { color: var(--vzgh-accent); }
.ukeo { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 4px; }
.ukeo span { width: 24px; height: 2px; background: var(--vzgh-text); border-radius: 2px; transition: var(--vzgh-transition); display: block; }

.btn { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.75rem 1.5rem; border-radius: var(--vzgh-radius-pill); font-weight: 700; font-family: var(--vzgh-font-display); cursor: pointer; border: 2px solid transparent; transition: background var(--vzgh-transition), color var(--vzgh-transition), border-color var(--vzgh-transition), box-shadow var(--vzgh-transition); font-size: 0.95rem; text-decoration: none; }
.btn-primary { background: var(--vzgh-accent); color: #fff; }
.btn-primary:hover { background: var(--vzgh-accent-dark); box-shadow: var(--vzgh-shadow-md); }
.btn-outline { background: transparent; border-color: var(--vzgh-accent); color: var(--vzgh-accent); }
.btn-outline:hover { background: var(--vzgh-accent); color: #fff; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

.section { padding: var(--vzgh-space-20) 0; }
.section-alt { background: var(--vzgh-bg-alt); }
.umin { background: var(--vzgh-accent); color: #fff; }
.umin h2, .umin h3, .umin .section-title { color: #fff; }
.ueyr { background: var(--vzgh-accent-mid); color: #fff; }
.ueyr h2, .ueyr .section-title { color: #fff; }

.section-eyebrow { display: block; font-family: var(--vzgh-font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vzgh-accent-mid); margin-bottom: 0.6rem; }
.section-title { margin-bottom: 1rem; }
.section-lead { color: var(--vzgh-muted); max-width: 640px; font-size: 1.05rem; margin-bottom: 2rem; }

.media { position: relative; overflow: hidden; border-radius: var(--vzgh-radius-lg); background: linear-gradient(135deg, var(--vzgh-accent-mid) 0%, var(--vzgh-bg-alt) 100%); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-16x9 { aspect-ratio: 16/9; }
.media-21x9 { aspect-ratio: 21/9; }
.media-4x3 { aspect-ratio: 4/3; }
.media-1x1 { aspect-ratio: 1/1; }
.media-3x4 { aspect-ratio: 3/4; }

.hero { padding: var(--vzgh-space-20) 0; position: relative; overflow: hidden; }
.section-hero { background: var(--vzgh-bg); }
.usbi { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.usbi img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--vzgh-space-12); align-items: center; position: relative; z-index: 1; }
.hero-content { min-width: 0; }
.hero-eyebrow { display: inline-block; font-family: var(--vzgh-font-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vzgh-accent-mid); background: rgba(45,92,66,0.1); padding: 0.3rem 0.8rem; border-radius: var(--vzgh-radius-pill); margin-bottom: 1rem; }
.hero-title { margin-bottom: 1rem; }
.hl { color: var(--vzgh-accent-mid); }
.hero-sub { color: var(--vzgh-muted); font-size: 1.05rem; margin-bottom: 1.5rem; }

.checklist { list-style: none; display: grid; gap: 0.75rem; margin-bottom: 1.5rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.65rem; font-weight: 500; }
.check-ic { flex: 0 0 auto; width: 1.9rem; height: 1.9rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(26,58,42,0.12); color: var(--vzgh-accent); font-size: 0.95rem; margin-top: 0.05rem; }

.hero-rating { margin-bottom: 1rem; font-size: 0.95rem; }
.stars { color: #c8922a; letter-spacing: 0.1em; }

.price-block { display: flex; align-items: baseline; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.price-old { color: var(--vzgh-muted); font-size: 1.1rem; text-decoration: line-through; }
.price-new { font-family: var(--vzgh-font-display); font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.2rem); color: var(--vzgh-accent); font-weight: 800; }
.price-badge { background: var(--vzgh-accent); color: #fff; padding: 0.2rem 0.7rem; border-radius: var(--vzgh-radius-pill); font-size: 0.82rem; font-weight: 700; font-family: var(--vzgh-font-display); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.hero-note { font-size: 0.82rem; color: var(--vzgh-muted); }

.uftu { position: relative; aspect-ratio: 1/1; border-radius: var(--vzgh-radius-lg); overflow: hidden; background: linear-gradient(135deg, #e8e2d0 0%, #d4cdb8 100%); }
.uftu img { width: 100%; height: 100%; object-fit: cover; display: block; }

.trust-section { padding: var(--vzgh-space-8) 0; }
.trust-band { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--vzgh-space-4); }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-align: center; }
.trust-item i { font-size: 1.5rem; color: rgba(255,255,255,0.85); }
.trust-item span { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85); }

.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--vzgh-space-6); margin-top: var(--vzgh-space-8); }
.benefit-card { background: var(--vzgh-bg); border: 1px solid var(--vzgh-border); border-radius: var(--vzgh-radius-lg); padding: var(--vzgh-space-6); transition: box-shadow var(--vzgh-transition), transform var(--vzgh-transition); }
.benefit-card:hover { box-shadow: var(--vzgh-shadow-md); transform: translateY(-3px); }
.benefit-icon { display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; background: rgba(26,58,42,0.1); border-radius: var(--vzgh-radius); color: var(--vzgh-accent); font-size: 1.2rem; margin-bottom: 0.75rem; }
.benefit-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.9rem; color: var(--vzgh-muted); margin: 0; }

.food-supplement-note { display: inline-block; margin-top: 2rem; font-size: 0.82rem; color: var(--vzgh-muted); border: 1px solid var(--vzgh-border); border-radius: var(--vzgh-radius-pill); padding: 0.3rem 1rem; }

.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--vzgh-space-12); align-items: center; }
.split-reverse .split-text { order: 2; }
.split-reverse .media { order: 1; }

.bigstat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--vzgh-space-8); text-align: center; margin-top: var(--vzgh-space-8); }
.bigstat b { display: block; font-family: var(--vzgh-font-display); font-size: clamp(2rem, 1.4rem + 2vw, 3rem); color: #fff; line-height: 1; font-weight: 800; }
.bigstat span { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-top: 0.3rem; }
.bigstat-note { text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 1.5rem; }

.uorj { background: var(--vzgh-bg); color: var(--vzgh-text); border: 1px solid var(--vzgh-border); border-radius: var(--vzgh-radius-lg); padding: var(--vzgh-space-8); max-width: 640px; margin-top: var(--vzgh-space-8); }
.uorj * { color: var(--vzgh-text); }
.umin .uorj, .ueyr .uorj { background: #fff; color: var(--vzgh-text); }
.calc-label { display: block; font-weight: 600; margin-bottom: 1.5rem; font-size: 1rem; }
.calc-val { display: inline-block; background: var(--vzgh-accent); color: #fff; border-radius: var(--vzgh-radius-pill); padding: 0.1rem 0.6rem; font-family: var(--vzgh-font-display); font-weight: 700; min-width: 2rem; text-align: center; margin: 0 0.3rem; }
.uorj input[type="range"] { width: 100%; accent-color: var(--vzgh-accent); margin-top: 0.5rem; display: block; }
.calc-check { display: flex; align-items: center; gap: 0.6rem; font-weight: 500; margin-bottom: 1.5rem; cursor: pointer; }
.calc-check input { accent-color: var(--vzgh-accent); width: 1rem; height: 1rem; }
.uxyo { background: var(--vzgh-bg-alt); border-left: 4px solid var(--vzgh-accent); border-radius: var(--vzgh-radius); padding: var(--vzgh-space-4) var(--vzgh-space-6); font-weight: 600; font-size: 1.05rem; color: var(--vzgh-text); margin-top: 0; }
.calc-note { font-size: 0.8rem; color: var(--vzgh-muted); margin-top: 0.75rem; }

.order-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--vzgh-space-8); margin-top: var(--vzgh-space-8); }
.step-card { background: var(--vzgh-bg); border: 1px solid var(--vzgh-border); border-radius: var(--vzgh-radius-lg); padding: var(--vzgh-space-6); text-align: center; }
.step-num { width: 3rem; height: 3rem; background: var(--vzgh-accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--vzgh-font-display); font-weight: 800; font-size: 1.2rem; margin: 0 auto 1rem; }
.step-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--vzgh-muted); margin: 0; }
.steps-note { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; color: var(--vzgh-muted); }

.uyfu { position: relative; background: var(--vzgh-bg); border: 1px solid var(--vzgh-border); border-radius: var(--vzgh-radius-lg); padding: var(--vzgh-space-8); margin-top: var(--vzgh-space-8); overflow: hidden; color: var(--vzgh-text); }
.uyfu * { color: var(--vzgh-text); }
.umin .uyfu, .ueyr .uyfu { background: #fff; color: var(--vzgh-text); }
.uoqy { display: flex; }
.udmy { min-width: 100%; flex: 0 0 100%; }
.uxaj { position: absolute; top: 50%; transform: translateY(-50%); width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid var(--vzgh-border); background: var(--vzgh-bg); cursor: pointer; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; color: var(--vzgh-accent); transition: background var(--vzgh-transition); }
.uxaj:hover { background: var(--vzgh-accent); color: #fff; }
.uwoa { left: 1rem; }
.uwyq { right: 1rem; }
.testimonial { padding: 0 2.5rem; }
.testimonial p { font-style: italic; margin: 0.75rem 0; font-size: 1rem; }
.testimonial cite { font-style: normal; font-weight: 700; color: var(--vzgh-accent-mid); font-size: 0.9rem; }
.testimonial footer { display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem; }
.avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; flex-shrink: 0; }
.testimonial-disclaimer { text-align: center; font-size: 0.85rem; color: var(--vzgh-muted); margin-bottom: 0; }

.rating-summary { display: flex; align-items: center; gap: 1rem; margin: 1rem 0; }
.rating-big { font-family: var(--vzgh-font-display); font-size: 3.5rem; font-weight: 800; color: var(--vzgh-accent); line-height: 1; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--vzgh-space-6); }
.section-alt .testimonial { background: var(--vzgh-bg); border-radius: var(--vzgh-radius-lg); border: 1px solid var(--vzgh-border); padding: var(--vzgh-space-6); }
.section-alt .testimonial p { padding: 0; }

.order-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--vzgh-space-12); align-items: start; }
.order-visual { display: flex; flex-direction: column; gap: var(--vzgh-space-6); }
.product-pack { max-width: 300px; margin-inline: auto; }
.product-pack svg { width: 100%; height: auto; display: block; }
.order-guarantees { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.guarantee-chip { display: inline-flex; align-items: center; gap: 0.35rem; background: var(--vzgh-bg-alt); border: 1px solid var(--vzgh-border); border-radius: var(--vzgh-radius-pill); padding: 0.3rem 0.75rem; font-size: 0.82rem; font-weight: 600; }
.pack-detail-img { max-width: 100%; }

.ughr { background: #fff; color: var(--vzgh-text); border: 1px solid var(--vzgh-border); border-radius: var(--vzgh-radius-lg); box-shadow: var(--vzgh-shadow-md); padding: var(--vzgh-space-8); }
.ughr h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.ughr .price-block { margin-bottom: 1.5rem; }
.ughr .btn-block { width: 100%; justify-content: center; }
.order-note { font-size: 0.8rem; color: var(--vzgh-muted); text-align: center; margin-top: 0.75rem; }
.uiqn { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.phone-row { display: grid; grid-template-columns: minmax(84px, auto) 1fr; gap: 0.5rem; }
.phone-row select { padding: 0.75rem 0.6rem; border: 1px solid var(--vzgh-border); border-radius: var(--vzgh-radius-sm); font: inherit; background: #fff; color: var(--vzgh-text); }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; font-size: 0.92rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--vzgh-border); border-radius: var(--vzgh-radius-sm); font: inherit; background: #fff; color: var(--vzgh-text); transition: border-color var(--vzgh-transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--vzgh-accent-mid); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.6rem; }
.form-checkbox input[type="checkbox"] { margin-top: 0.2rem; accent-color: var(--vzgh-accent); width: 1rem; height: 1rem; flex-shrink: 0; }
.form-checkbox label { font-size: 0.88rem; font-weight: 400; }
.uxjt { display: none; color: #b91c1c; font-size: 0.82rem; margin-top: 0.25rem; }
.uxjt.is-visible { display: block; }

.cta-band { text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }

.faq { display: grid; gap: 0.75rem; margin-top: var(--vzgh-space-6); }
.ujgs { border: 1px solid var(--vzgh-border); border-radius: var(--vzgh-radius); overflow: hidden; background: var(--vzgh-bg); }
.uxje { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; background: none; border: 0; cursor: pointer; font: inherit; font-weight: 600; font-size: 0.98rem; text-align: left; color: var(--vzgh-text); gap: 1rem; }
.uxje i { flex-shrink: 0; transition: transform var(--vzgh-transition); font-size: 0.9rem; color: var(--vzgh-accent); }
.ujgs.is-open .uxje i { transform: rotate(180deg); }
.usbv { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 1.25rem 1rem; color: var(--vzgh-muted); font-size: 0.95rem; }

.page-hero { padding: var(--vzgh-space-12) 0; }
.page-hero h1 { margin-bottom: 0.5rem; }
.page-lead { color: var(--vzgh-muted); font-size: 1.05rem; max-width: 680px; }

.breadcrumb { font-size: 0.85rem; color: var(--vzgh-muted); margin-bottom: 1rem; display: flex; gap: 0.5rem; align-items: center; }
.breadcrumb a { color: var(--vzgh-accent-mid); }
.breadcrumb a:hover { text-decoration: underline; }

.ingredient-spotlights { display: grid; gap: var(--vzgh-space-12); margin-top: var(--vzgh-space-8); }
.ingredient-spot.split-block { align-items: center; }
.ingredient-spot .split-text h3 { margin-bottom: 0.75rem; }
.claim-note { font-size: 0.78rem; color: var(--vzgh-muted); font-style: italic; margin-top: 0.5rem; }

.dose-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.dose-table th, .dose-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--vzgh-border); }
.dose-table thead th { background: var(--vzgh-bg-alt); font-family: var(--vzgh-font-display); font-size: 0.88rem; }
.dose-note { font-size: 0.78rem; color: var(--vzgh-muted); margin-top: 0.5rem; }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--vzgh-border); }
.data-table thead th { background: var(--vzgh-bg-alt); font-family: var(--vzgh-font-display); font-size: 0.88rem; }
.table-wrap { overflow-x: auto; border-radius: var(--vzgh-radius); border: 1px solid var(--vzgh-border); margin-top: 1.5rem; }

.usage-list { display: grid; gap: 0.75rem; margin: 1.5rem 0; }
.usage-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; }
.usage-list i { color: var(--vzgh-accent); font-size: 1.2rem; margin-top: 0.1rem; flex-shrink: 0; }
.usage-note { font-size: 0.88rem; color: var(--vzgh-muted); font-style: italic; margin-top: 0.5rem; }

.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--vzgh-space-6); margin-top: var(--vzgh-space-6); }
.spec-card { background: var(--vzgh-bg); border: 1px solid var(--vzgh-border); border-radius: var(--vzgh-radius-lg); padding: var(--vzgh-space-6); }
.spec-card i { font-size: 1.5rem; color: var(--vzgh-accent); display: block; margin-bottom: 0.75rem; }
.spec-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.spec-card p { font-size: 0.88rem; color: var(--vzgh-muted); margin: 0; }

.timeline-h { display: flex; justify-content: space-between; gap: var(--vzgh-space-4); position: relative; margin-top: var(--vzgh-space-8); padding-top: var(--vzgh-space-8); }
.timeline-h::before { content: ""; position: absolute; left: 5%; right: 5%; top: 12px; height: 2px; background: var(--vzgh-border); z-index: 0; }
.tl-node { position: relative; flex: 1; text-align: center; padding-top: var(--vzgh-space-6); }
.tl-node::before { content: ""; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 14px; height: 14px; border-radius: 50%; background: var(--vzgh-accent); z-index: 1; }
.tl-label-top { display: block; font-family: var(--vzgh-font-display); font-weight: 700; font-size: 0.9rem; color: var(--vzgh-accent); margin-bottom: 0.4rem; }
.tl-label-bot { display: block; font-size: 0.82rem; color: var(--vzgh-muted); }

.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--vzgh-space-12); align-items: start; }
.contact-info-panel h2 { margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--vzgh-border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item i { font-size: 1.2rem; color: var(--vzgh-accent); flex-shrink: 0; margin-top: 0.15rem; }
.contact-info-item strong { display: block; margin-bottom: 0.25rem; font-size: 0.88rem; }
.map-container { border-radius: var(--vzgh-radius-lg); overflow: hidden; border: 1px solid var(--vzgh-border); margin-top: 0; }
.map-container iframe { display: block; width: 100%; height: 450px; border: 0; }

.legal-content h2 { font-size: 1.15rem; margin: 2rem 0 0.6rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 0.95rem; color: var(--vzgh-muted); }
.legal-content a { color: var(--vzgh-accent-mid); text-decoration: underline; }

.honesty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--vzgh-space-6); margin-top: var(--vzgh-space-6); }
.honesty-card { border-radius: var(--vzgh-radius-lg); padding: var(--vzgh-space-6); }
.honesty-yes { background: rgba(45,92,66,0.08); border: 1px solid rgba(45,92,66,0.25); }
.honesty-no { background: rgba(180,40,40,0.06); border: 1px solid rgba(180,40,40,0.2); }
.honesty-card h3 { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; margin-bottom: 0.75rem; }
.honesty-yes h3 { color: var(--vzgh-accent); }
.honesty-no h3 { color: #9b2020; }
.honesty-card ul { display: grid; gap: 0.5rem; }
.honesty-card li { font-size: 0.9rem; color: var(--vzgh-muted); padding-left: 1rem; position: relative; }
.honesty-card li::before { content: "·"; position: absolute; left: 0; color: var(--vzgh-accent); }
.company-info { background: var(--vzgh-bg); border: 1px solid var(--vzgh-border); border-radius: var(--vzgh-radius-lg); padding: var(--vzgh-space-6); margin-bottom: 1.5rem; line-height: 1.9; }

.thankyou-section { min-height: 60vh; display: flex; align-items: center; }
.thankyou-inner { text-align: center; max-width: 520px; margin-inline: auto; }
.thankyou-icon { display: block; font-size: 3.5rem; color: var(--vzgh-accent); margin-bottom: 1.5rem; }

.ugrs { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90; background: #fff; border: 1px solid var(--vzgh-border); border-radius: var(--vzgh-radius-lg); box-shadow: var(--vzgh-shadow-lg); padding: var(--vzgh-space-6); transform: translateY(140%); transition: transform var(--vzgh-transition); color: var(--vzgh-text); }
.ugrs.is-visible { transform: none; }
.cookie-banner-inner { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.cookie-banner-text { flex: 1; font-size: 0.88rem; color: var(--vzgh-text); min-width: 200px; margin: 0; }
.cookie-banner-text a { color: var(--vzgh-accent-mid); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.5rem;flex-wrap: wrap; }
.ujal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,0.5); }
.ujal.is-visible { display: flex; }
.umbm { background: #fff; color: var(--vzgh-text); border-radius: var(--vzgh-radius-lg); padding: var(--vzgh-space-8); max-width: 480px; width: 92%; box-shadow: var(--vzgh-shadow-lg); }
.umbm h2 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.umbm p { font-size: 0.88rem; color: var(--vzgh-muted); margin-bottom: 1.5rem; }
.cookie-toggle { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--vzgh-border); }
.cookie-toggle:last-of-type { border-bottom: none; }
.cookie-toggle h4 { font-size: 0.92rem; margin-bottom: 0.15rem; }
.cookie-toggle p { font-size: 0.8rem; color: var(--vzgh-muted); margin: 0; }
.cookie-modal-actions { display: flex; gap: 0.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; background: #ccc; border-radius: 999px; transition: var(--vzgh-transition); cursor: pointer; }
.slider::before { content: ""; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: var(--vzgh-transition); }
.switch input:checked + .slider { background: var(--vzgh-accent); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { opacity: 0.6; cursor: not-allowed; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.site-footer { background: var(--vzgh-accent); color: rgba(255,255,255,0.85); padding: var(--vzgh-space-12) 0 var(--vzgh-space-8); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--vzgh-space-8); margin-bottom: var(--vzgh-space-8); }
.footer-brand .logo-text { color: rgba(255,255,255,0.9); display: block; margin-bottom: 0.75rem; font-size: 1.3rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.footer-col h4 { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.footer-col ul { display: grid; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.75); transition: color var(--vzgh-transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.7; }
.footer-contact a { color: rgba(255,255,255,0.85); text-decoration: underline; }
.payment-note { margin-top: 0.75rem; font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 1rem; padding: var(--vzgh-space-6) 0; border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); margin: 0 auto; max-width: var(--vzgh-max-width); width: 92%; }
.footer-legal-links a { font-size: 0.82rem; color: rgba(255,255,255,0.65); transition: color var(--vzgh-transition); }
.footer-legal-links a:hover { color: #fff; }
.footer-disclaimer { max-width: var(--vzgh-max-width); width: 92%; margin: var(--vzgh-space-4) auto 0; font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-bottom { max-width: var(--vzgh-max-width); width: 92%; margin: var(--vzgh-space-4) auto 0; display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom-simple { padding-top: var(--vzgh-space-4); }

.back-to-top { position: fixed; bottom: 5rem; right: 1.5rem; width: 2.75rem; height: 2.75rem; background: var(--vzgh-accent); color: #fff; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; opacity: 0; transform: translateY(10px); transition: opacity var(--vzgh-transition), transform var(--vzgh-transition); z-index: 40; box-shadow: var(--vzgh-shadow-md); }
.back-to-top.is-visible { opacity: 1; transform: none; }
.back-to-top:hover { background: var(--vzgh-accent-dark); }

@media (max-width: 1024px) {
  .trust-band { grid-template-columns: repeat(3, 1fr); }
  .bigstat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { gap: var(--vzgh-space-8); }
}

@media (max-width: 768px) {
  .ukeo { display: flex; }
  .uiay { position: fixed; inset: var(--vzgh-header-height) 0 auto 0; flex-direction: column; align-items: flex-start; background: var(--vzgh-bg); padding: var(--vzgh-space-6); box-shadow: var(--vzgh-shadow-md); transform: translateY(-150%); transition: transform var(--vzgh-transition); z-index: 49; border-bottom: 1px solid var(--vzgh-border); }
  .uiay.is-open { transform: none; }
  .uiay a { font-size: 1rem; padding: 0.5rem 0; width: 100%; border-bottom: 1px solid var(--vzgh-border); }
  .uiay a:last-child { border-bottom: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { order: 1; }
  .uftu { order: 2; max-width: 340px; margin-inline: auto; }
  .split-block { grid-template-columns: 1fr; }
  .split-reverse .split-text { order: 1; }
  .split-reverse .media { order: 2; }
  .order-steps { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .trust-band { grid-template-columns: repeat(2, 1fr); }
  .bigstat-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .honesty-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline-h { flex-direction: column; gap: var(--vzgh-space-4); padding-top: 0; }
  .timeline-h::before { display: none; }
  .tl-node { text-align: left; padding-top: 0; padding-left: var(--vzgh-space-8); }
  .tl-node::before { left: 0; top: 50%; transform: translateY(-50%); }
  .testimonial { padding: 0 0.5rem; }
  .uxaj { display: none; }
  .ingredient-spot.split-block { gap: var(--vzgh-space-6); }
  .container { width: 94%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-band { grid-template-columns: 1fr 1fr; }
  .bigstat-grid { grid-template-columns: 1fr 1fr; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.ugrs{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}
.ugrs.is-visible,.cookie-banner--visible,.ugrs.show,.ugrs.active{transform:none !important}
.ugrs a{color:inherit;text-decoration:underline}
.ugrs button{cursor:pointer}
.ujal{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}
.ujal.is-visible,.cookie-modal--visible,.ujal.show,.ujal.active{display:flex !important}
.umbm,.ujal>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.umin .uuha,.umin .uorj,.umin .uixz,.umin .uyfu,.ueyr .uuha,.ueyr .uorj,.ueyr .uixz,.ueyr .uyfu{background:#fff !important;color:#1a1a1a !important}
.uuha,.uorj{color:#1a1a1a !important}
.uuha label,.uorj label,.uuha p,.uorj p,.uuha .upmw,.uuha span,.uorj span,.uxyo,.utgf,.uixz .utwm,.uixz .utwm *{color:#1a1a1a !important}
.uxyo,.utgf{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uuha .uvnk{color:#1a1a1a !important}
.uuha .uvnk.is-sel{color:#fff !important}
.ughr .uxjt{display:none}
.ughr .uxjt.is-visible{display:block !important;color:#c0392b}
.ughr .uiqn,.ughr [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ughr{color:#1a1a1a}
.umin .ughr,.ueyr .ughr{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uftu{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uftu img{width:100%;height:100%;object-fit:cover}
.usbi,.ufnn{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.usbi img,.ufnn img{width:100%;height:100%;object-fit:cover;display:block}
.usbi img{opacity:.28}
.ufnn img{opacity:.07}
*:has(> .usbi),*:has(> .ufnn){position:relative}
.uhxy{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)}
.uhxy .ukxh{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uhxy .umsa{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uveg{margin:1.4rem auto;max-width:920px}
.uveg img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.usha{padding:3rem 0}
.uumg{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uumg img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uyfu{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uoqy{display:flex;overflow:hidden;gap:0 !important}
.udmy{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uxaj{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}
.uwoa{left:.5rem}.uwyq{right:.5rem}
.uixz .utwm{display:none}.uixz .utwm.is-active{display:block}
.uuha .ujmx{display:block !important}
.uuha .uqbi{display:flex;flex-wrap:wrap;gap:.5rem}
.uuha .uvnk{cursor:pointer}
