:root {
  --veyb-accent: #E0533D;
  --veyb-accent-dark: #b8402e;
  --veyb-bg: #ffffff;
  --veyb-bg-alt: #f3f3f1;
  --veyb-text: #101010;
  --veyb-muted: #5a5a5a;
  --veyb-border: #e2e2e0;
  --veyb-font-display: "Space Grotesk", system-ui, sans-serif;
  --veyb-font-body: "Public Sans", system-ui, sans-serif;
  --veyb-space-2: .5rem;
  --veyb-space-4: 1rem;
  --veyb-space-6: 1.5rem;
  --veyb-space-8: 2rem;
  --veyb-space-12: 3rem;
  --veyb-space-20: 5rem;
  --veyb-radius-sm: .25rem;
  --veyb-radius: .5rem;
  --veyb-radius-lg: .75rem;
  --veyb-radius-pill: 999px;
  --veyb-shadow-sm: 0 1px 3px rgba(16,16,16,.06);
  --veyb-shadow-md: 0 6px 24px rgba(16,16,16,.10);
  --veyb-shadow-lg: 0 18px 48px rgba(16,16,16,.14);
  --veyb-transition: .26s ease;
  --veyb-max-width: 1200px;
  --veyb-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(--veyb-font-body); color: var(--veyb-text); background: var(--veyb-bg); line-height: 1.65; font-size: clamp(.95rem, .9rem + .25vw, 1.05rem); }
h1, h2, h3, h4 { font-family: var(--veyb-font-display); line-height: 1.15; color: var(--veyb-text); }
h1 { font-size: clamp(2rem, 1.4rem + 2.5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.3rem); }
h3 { font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 92%; max-width: var(--veyb-max-width); margin-inline: auto; }
.section { padding: var(--veyb-space-20) 0; }
.section-alt { background: var(--veyb-bg-alt); }
.utwa { background: var(--veyb-text); color: #fff; }
.utwa h2, .utwa h3, .utwa p { color: #fff; }
.uzmf { background: var(--veyb-accent); color: #fff; }
.uzmf h2, .uzmf h3 { color: #fff; }
.section-title { margin-bottom: var(--veyb-space-8); }
.section-eyebrow { display: inline-block; font-family: var(--veyb-font-display); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--veyb-accent); margin-bottom: var(--veyb-space-4); }
.section-lead { max-width: 640px; color: var(--veyb-muted); margin-bottom: var(--veyb-space-8); }
.section-note { font-size: .85rem; color: var(--veyb-muted); margin-top: var(--veyb-space-6); }

.disclosure-bar { background: var(--veyb-text); color: #fff; text-align: center; font-size: .78rem; padding: .45rem 1rem; letter-spacing: .04em; }

.uqyp { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--veyb-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--veyb-header-height); }
.logo { display: flex; align-items: center; gap: .5rem; font-family: var(--veyb-font-display); font-weight: 700; font-size: 1.25rem; color: var(--veyb-text); }
.logo-mark { width: 32px; height: 32px; background: var(--veyb-accent); color: #fff; border-radius: var(--veyb-radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.logo-text { color: var(--veyb-text); }
.ummf { display: flex; align-items: center; gap: var(--veyb-space-6); }
.ummf a { font-size: .92rem; font-weight: 500; color: var(--veyb-muted); transition: color var(--veyb-transition); }
.ummf a:hover, .ummf a.nav-active { color: var(--veyb-accent); }
.urzh { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: .25rem; }
.urzh span { width: 24px; height: 2px; background: var(--veyb-text); transition: var(--veyb-transition); display: block; }

.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.6rem; border-radius: var(--veyb-radius-sm); font-family: var(--veyb-font-display); font-weight: 700; font-size: .92rem; cursor: pointer; border: 2px solid transparent; transition: var(--veyb-transition); letter-spacing: .02em; }
.btn-primary { background: var(--veyb-accent); color: #fff; border-color: var(--veyb-accent); }
.btn-primary:hover { background: var(--veyb-accent-dark); border-color: var(--veyb-accent-dark); }
.btn-outline { background: transparent; border-color: var(--veyb-accent); color: var(--veyb-accent); }
.btn-outline:hover { background: var(--veyb-accent); color: #fff; }
.btn-sm { padding: .5rem 1rem; font-size: .82rem; }
.btn-block { width: 100%; justify-content: center; }
.utwa .btn-outline { border-color: #fff; color: #fff; }
.utwa .btn-outline:hover { background: #fff; color: var(--veyb-text); }

.card { background: #fff; border: 1px solid var(--veyb-border); border-radius: var(--veyb-radius); box-shadow: var(--veyb-shadow-sm); padding: var(--veyb-space-6); transition: var(--veyb-transition); }
.card:hover { box-shadow: var(--veyb-shadow-md); transform: translateY(-2px); }

.hero { position: relative; padding: var(--veyb-space-20) 0; overflow: hidden; }
.ufuu { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.ufuu img { width: 100%; height: 100%; object-fit: cover; opacity: .12; }
.hero > .container { position: relative; z-index: 1; }
.hero-plus-form { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--veyb-space-12); align-items: start; }
.hero-content { padding-top: var(--veyb-space-8); }
.hero-form-col { display: flex; flex-direction: column; gap: var(--veyb-space-6); }
.hero-eyebrow { display: flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--veyb-muted); margin-bottom: var(--veyb-space-4); }
.hero-title { margin-bottom: var(--veyb-space-6); }
.hero-rating { font-size: .92rem; color: var(--veyb-muted); margin-bottom: var(--veyb-space-4); display: flex; align-items: center; gap: .5rem; }
.hero-note { font-size: .82rem; color: var(--veyb-muted); margin-top: var(--veyb-space-4); display: flex; align-items: center; gap: .4rem; }
.hl { color: var(--veyb-accent); }

.checklist { display: grid; gap: .75rem; margin: var(--veyb-space-4) 0; }
.checklist li { display: flex; align-items: flex-start; gap: .65rem; font-size: .95rem; }
.check-ic { flex: 0 0 auto; width: 2rem; height: 2rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(224,83,61,.12); color: var(--veyb-accent); font-size: 1rem; margin-top: .05rem; }

.price-block { display: flex; align-items: baseline; gap: var(--veyb-space-4); flex-wrap: wrap; margin: var(--veyb-space-4) 0; }
.price-old { color: var(--veyb-muted); font-size: 1.05rem; text-decoration: line-through; }
.price-new { font-family: var(--veyb-font-display); font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem); color: var(--veyb-accent); font-weight: 700; }
.price-badge { background: var(--veyb-accent); color: #fff; padding: .2rem .7rem; border-radius: var(--veyb-radius-pill); font-size: .82rem; font-weight: 700; }
.stars { color: #e8a534; letter-spacing: .1em; }

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

.ugxc { position: relative; aspect-ratio: 1/1; border-radius: var(--veyb-radius); overflow: hidden; }
.ugxc img { width: 100%; height: 100%; object-fit: cover; }

.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--veyb-space-6); }
.benefit-card { text-align: left; }
.benefit-card .benefit-icon { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; background: rgba(224,83,61,.10); color: var(--veyb-accent); border-radius: var(--veyb-radius-sm); font-size: 1.4rem; margin-bottom: var(--veyb-space-4); }
.benefit-card h3 { font-size: 1rem; margin-bottom: .5rem; }

.bigstat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--veyb-space-8); text-align: center; }
.bigstat b { display: block; font-family: var(--veyb-font-display); font-size: clamp(2.2rem, 1.5rem + 2.5vw, 3.5rem); color: var(--veyb-accent); line-height: 1; margin-bottom: .4rem; }
.utwa .bigstat b { color: #fff; }
.stat-disclaimer { font-size: .8rem; color: rgba(255,255,255,.6); text-align: center; margin-top: var(--veyb-space-6); }

.table-wrap { overflow-x: auto; }
.data-table, .dose-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td, .dose-table th, .dose-table td { padding: .75rem 1rem; text-align: left; border-bottom: 1px solid var(--veyb-border); font-size: .92rem; }
.data-table thead th, .dose-table thead th { background: var(--veyb-bg-alt); font-family: var(--veyb-font-display); font-weight: 600; }
.dose-note { font-size: .8rem; color: var(--veyb-muted); margin-top: .5rem; }

.order-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--veyb-space-8); }
.step-card { text-align: center; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 50%; background: var(--veyb-accent); color: #fff; font-family: var(--veyb-font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: var(--veyb-space-4); }
.steps-note { text-align: center; color: var(--veyb-muted); font-size: .88rem; margin-top: var(--veyb-space-6); }

.trust-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--veyb-space-6); }
.trust-item { text-align: center; padding: var(--veyb-space-6) var(--veyb-space-4); }
.trust-item i { font-size: 1.8rem; display: block; margin-bottom: .75rem; }
.trust-item strong { display: block; font-family: var(--veyb-font-display); font-size: .95rem; margin-bottom: .3rem; }
.trust-item span { font-size: .82rem; opacity: .85; }
.uzmf .trust-item { color: #fff; }

.split-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--veyb-space-12); align-items: center; }
.split-reverse .media { order: -1; }
.split-content h2 { margin-bottom: var(--veyb-space-6); }
.split-content p { color: var(--veyb-muted); margin-bottom: var(--veyb-space-4); }

.faq { max-width: 780px; margin-inline: auto; }
.faq-cat-title { font-size: 1.1rem; font-weight: 700; color: var(--veyb-accent); margin-bottom: var(--veyb-space-4); padding-bottom: .5rem; border-bottom: 2px solid var(--veyb-accent); }
.umct { border-bottom: 1px solid var(--veyb-border); }
.ufrc { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: var(--veyb-space-6) 0; background: none; border: 0; cursor: pointer; font-family: var(--veyb-font-display); font-size: 1rem; font-weight: 600; color: var(--veyb-text); text-align: left; transition: color var(--veyb-transition); }
.ufrc:hover { color: var(--veyb-accent); }
.ufrc i { flex-shrink: 0; transition: transform var(--veyb-transition); color: var(--veyb-accent); }
.umct[open] .ufrc i, .umct.is-open .ufrc i { transform: rotate(180deg); }
.uqvd { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq-answer-inner { padding-bottom: var(--veyb-space-6); color: var(--veyb-muted); }

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--veyb-space-6); }
.testimonial { padding: var(--veyb-space-6); }
.testimonial.card { background: #fff; color: var(--veyb-text); }
.testimonial p { font-style: italic; color: var(--veyb-muted); margin: var(--veyb-space-4) 0; }
.testimonial cite { display: block; font-style: normal; font-weight: 600; color: var(--veyb-accent); font-size: .88rem; }
.testimonial-disclaimer { text-align: center; opacity: .7; font-size: .88rem; margin-bottom: var(--veyb-space-8); }
.review-header { display: flex; align-items: center; gap: var(--veyb-space-4); margin-bottom: var(--veyb-space-4); }
.review-header svg { flex-shrink: 0; border-radius: 50%; }
.review-header strong { display: block; font-weight: 700; }
.review-header span { font-size: .82rem; color: var(--veyb-muted); }
.rating-summary { display: flex; align-items: center; gap: var(--veyb-space-4); margin: var(--veyb-space-4) 0; flex-wrap: wrap; font-size: 1.05rem; }

.order-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--veyb-space-12); align-items: start; }
.order-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: var(--veyb-space-4); }
.chip { display: inline-flex; align-items: center; gap: .35rem; padding: .35rem .8rem; border: 1px solid var(--veyb-border); border-radius: var(--veyb-radius-pill); font-size: .82rem; background: var(--veyb-bg-alt); }

.product-pack { max-width: 300px; margin-inline: auto; }
.product-pack svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 14px 28px rgba(0,0,0,.14)); }

.ufmo { background: #fff; color: var(--veyb-text); border: 1px solid var(--veyb-border); border-radius: var(--veyb-radius-lg); box-shadow: var(--veyb-shadow-md); padding: var(--veyb-space-8); }
.ufmo h3 { font-size: 1.15rem; margin-bottom: var(--veyb-space-4); }
.utwa .ufmo, .uzmf .ufmo { background: #fff; color: var(--veyb-text); }
.order-note { font-size: .82rem; color: var(--veyb-muted); text-align: center; margin-top: var(--veyb-space-4); display: flex; align-items: center; justify-content: center; gap: .4rem; }
.urmg { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.phone-row { display: grid; grid-template-columns: minmax(80px, auto) 1fr; gap: .5rem; }
.phone-row select { padding: .75rem .6rem; border: 1px solid var(--veyb-border); border-radius: var(--veyb-radius-sm); font: inherit; background: #fff; color: var(--veyb-text); }

.form-group { margin-bottom: var(--veyb-space-4); }
.form-group label { display: block; margin-bottom: .4rem; font-weight: 600; font-size: .92rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .75rem 1rem; border: 1px solid var(--veyb-border); border-radius: var(--veyb-radius-sm); font: inherit; color: var(--veyb-text); background: #fff; transition: border-color var(--veyb-transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--veyb-accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox { display: flex; align-items: flex-start; gap: .6rem; }
.form-checkbox input { width: auto; flex-shrink: 0; margin-top: .3rem; accent-color: var(--veyb-accent); }
.form-checkbox label { font-weight: 400; font-size: .88rem; color: var(--veyb-muted); }
.form-checkbox label a { color: var(--veyb-accent); text-decoration: underline; }
.uqmr { display: none; color: #c0392b; font-size: .82rem; margin-top: .25rem; }
.uqmr.is-visible { display: block; }

.ubxo { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90; background: #fff; border: 1px solid var(--veyb-border); border-radius: var(--veyb-radius-lg); box-shadow: var(--veyb-shadow-lg); padding: var(--veyb-space-6); transform: translateY(150%); transition: transform var(--veyb-transition); }
.ubxo.is-visible { transform: none; }
.cookie-banner-inner { display: flex; flex-wrap: wrap; align-items: center; gap: var(--veyb-space-4); justify-content: space-between; }
.cookie-banner-text { font-size: .9rem; color: var(--veyb-muted); flex: 1; min-width: 200px; }
.cookie-banner-text a { color: var(--veyb-accent); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.utyy { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.5); }
.utyy.is-visible { display: flex; }
.ucha { background: #fff; color: var(--veyb-text); border-radius: var(--veyb-radius-lg); padding: var(--veyb-space-8); max-width: 480px; width: 92%; max-height: 90vh; overflow-y: auto; }
.ucha h2 { font-size: 1.2rem; margin-bottom: var(--veyb-space-4); }
.cookie-toggle { display: flex; align-items: center; justify-content: space-between; gap: var(--veyb-space-4); padding: var(--veyb-space-4) 0; border-bottom: 1px solid var(--veyb-border); }
.cookie-toggle h4 { font-size: .92rem; margin-bottom: .2rem; }
.cookie-toggle p { font-size: .82rem; color: var(--veyb-muted); }
.cookie-modal-actions { display: flex; gap: .5rem; margin-top: var(--veyb-space-6); 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(--veyb-transition); cursor: pointer; }
.slider::before { content: ""; position: absolute; height: 18px; width: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: var(--veyb-transition); }
.switch input:checked + .slider { background: var(--veyb-accent); }
.switch input:checked + .slider::before { transform: translateX(20px); }
.switch input:disabled + .slider { opacity: .6; cursor: not-allowed; }

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

.uzoh, .uumu, .ufbg, .uhos { background: var(--veyb-bg); color: var(--veyb-text); border: 1px solid var(--veyb-border); border-radius: var(--veyb-radius-lg); padding: var(--veyb-space-8); }
.uzoh *, .uumu *, .ufbg .uasd, .uumu label, .uzoh .urxj { color: var(--veyb-text); }
.utwa .uumu, .uzmf .uumu { background: #fff; color: var(--veyb-text); }
.uumu label { display: block; font-weight: 600; margin-bottom: var(--veyb-space-4); font-size: .95rem; }
.uumu input[type=range] { width: 100%; accent-color: var(--veyb-accent); margin-top: .5rem; display: block; }
.uutr { margin-top: var(--veyb-space-6); padding: var(--veyb-space-6); background: var(--veyb-bg-alt); border-radius: var(--veyb-radius); border-left: 4px solid var(--veyb-accent); font-weight: 600; color: var(--veyb-text); }
.calc-note { font-size: .82rem; color: var(--veyb-muted); margin-top: var(--veyb-space-4); }
.uuga { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-btn { padding: .45rem 1rem; border: 1px solid var(--veyb-border); border-radius: var(--veyb-radius-pill); background: #fff; color: var(--veyb-muted); font: inherit; font-size: .85rem; cursor: pointer; transition: var(--veyb-transition); }
.filter-btn.is-active, .filter-btn:hover { background: var(--veyb-accent); color: #fff; border-color: var(--veyb-accent); }
.uhos { position: relative; overflow: hidden; }
.ucdq { display: flex; overflow: hidden; }
.ugyi { min-width: 100%; flex: 0 0 100%; }
.uqgr { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--veyb-border); background: #fff; color: var(--veyb-text); cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: var(--veyb-transition); z-index: 2; }
.uqgr:hover { background: var(--veyb-accent); color: #fff; border-color: var(--veyb-accent); }
.umhi { left: .5rem; }
.ucjs { right: .5rem; }

.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--veyb-muted); margin-bottom: var(--veyb-space-6); }
.breadcrumb a { color: var(--veyb-accent); }
.breadcrumb span { color: var(--veyb-muted); }
.page-hero { padding-top: var(--veyb-space-12); padding-bottom: var(--veyb-space-12); }
.page-hero h1 { margin-bottom: var(--veyb-space-6); }
.page-lead { font-size: 1.1rem; color: var(--veyb-muted); max-width: 680px; }
.badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: var(--veyb-space-6); }
.badge { display: inline-flex; padding: .3rem .8rem; border: 1px solid var(--veyb-border); border-radius: var(--veyb-radius-pill); font-size: .8rem; font-weight: 600; color: var(--veyb-muted); background: var(--veyb-bg-alt); }

.ingredient-spotlight { display: grid; gap: var(--veyb-space-12); }
.ingr-note { font-size: .82rem; color: var(--veyb-muted); margin-top: var(--veyb-space-4); font-style: italic; }

.specs-grid, .company-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--veyb-space-6); }
.spec-item, .company-info-grid .card { display: flex; flex-direction: column; gap: .4rem; }
.spec-item i, .company-info-grid .card i { font-size: 1.4rem; color: var(--veyb-accent); }
.spec-item strong, .company-info-grid .card strong { font-weight: 700; font-size: .92rem; }
.spec-item span, .company-info-grid .card span { font-size: .88rem; color: var(--veyb-muted); }

.use-steps { display: grid; gap: var(--veyb-space-6); margin: var(--veyb-space-6) 0; }
.use-step { display: flex; align-items: flex-start; gap: var(--veyb-space-4); }
.use-num { width: 2.2rem; height: 2.2rem; background: var(--veyb-accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.use-step strong { display: block; margin-bottom: .3rem; font-weight: 700; }
.use-step p { color: var(--veyb-muted); font-size: .92rem; }

.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--veyb-space-6); }
.tip-card { display: flex; flex-direction: column; gap: .6rem; }
.tip-card i { font-size: 1.5rem; color: var(--veyb-accent); }
.pack-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--veyb-space-4); }
.pack-detail-grid .card { display: flex; flex-direction: column; gap: .4rem; text-align: center; }
.pack-detail-grid .card i { font-size: 1.4rem; color: var(--veyb-accent); }
.pack-detail-grid .card strong { font-weight: 700; font-size: .88rem; }
.pack-detail-grid .card span { font-size: .84rem; color: var(--veyb-muted); }

.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--veyb-space-12); align-items: start; }
.contact-info-panel h2 { margin-bottom: var(--veyb-space-6); }
.contact-info-item { display: flex; gap: var(--veyb-space-4); padding: var(--veyb-space-4) 0; border-bottom: 1px solid var(--veyb-border); }
.contact-info-item i { font-size: 1.2rem; color: var(--veyb-accent); flex-shrink: 0; margin-top: .2rem; }
.contact-info-item strong { display: block; font-weight: 700; font-size: .92rem; margin-bottom: .2rem; }
.map-container { border-radius: var(--veyb-radius); overflow: hidden; border: 1px solid var(--veyb-border); }
.map-container iframe { display: block; width: 100%; height: 450px; border: 0; }

.ty-icon { font-size: 4rem; color: var(--veyb-accent); margin-bottom: var(--veyb-space-6); }
.error-code { font-family: var(--veyb-font-display); font-size: 5rem; font-weight: 700; color: var(--veyb-accent); line-height: 1; margin-bottom: var(--veyb-space-4); }

.legal-content { max-width: 820px; }
.legal-content h1 { margin-bottom: var(--veyb-space-4); }
.legal-content h2 { font-size: 1.2rem; margin: var(--veyb-space-8) 0 var(--veyb-space-4); color: var(--veyb-text); }
.legal-content h3 { font-size: 1rem; margin: var(--veyb-space-6) 0 var(--veyb-space-2); }
.legal-content p { color: var(--veyb-muted); margin-bottom: var(--veyb-space-4); }
.legal-content a { color: var(--veyb-accent); text-decoration: underline; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; color: var(--veyb-muted); }
.legal-content ul li { margin-bottom: .4rem; }
.legal-updated { font-size: .85rem; color: var(--veyb-muted); margin-bottom: var(--veyb-space-8); }
code { background: var(--veyb-bg-alt); padding: .1rem .4rem; border-radius: var(--veyb-radius-sm); font-size: .88em; }

.site-footer { background: var(--veyb-text); color: #fff; padding: var(--veyb-space-20) 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: var(--veyb-space-8); margin-bottom: var(--veyb-space-12); }
.footer-brand .logo-text { font-family: var(--veyb-font-display); font-size: 1.2rem; font-weight: 700; color: #fff; display: block; margin-bottom: var(--veyb-space-4); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.footer-col h4 { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: var(--veyb-space-4); }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.75); transition: color var(--veyb-transition); }
.footer-col ul a:hover { color: var(--veyb-accent); }
.footer-col p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.7; }
.footer-col a { color: rgba(255,255,255,.75); transition: color var(--veyb-transition); }
.footer-col a:hover { color: var(--veyb-accent); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: var(--veyb-space-4); padding: var(--veyb-space-6) 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); margin: 0 auto; width: 92%; max-width: var(--veyb-max-width); }
.footer-legal-links a { font-size: .82rem; color: rgba(255,255,255,.55); transition: color var(--veyb-transition); }
.footer-legal-links a:hover { color: var(--veyb-accent); }
.footer-disclaimer { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.6; padding: var(--veyb-space-6) 0; width: 92%; max-width: var(--veyb-max-width); margin: 0 auto; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding: var(--veyb-space-6) 0; border-top: 1px solid rgba(255,255,255,.10); font-size: .82rem; color: rgba(255,255,255,.4); width: 92%; max-width: var(--veyb-max-width); margin: 0 auto; }

.back-to-top { position: fixed; bottom: 5rem; right: 1.5rem; width: 42px; height: 42px; background: var(--veyb-accent); color: #fff; border: 0; border-radius: var(--veyb-radius-sm); cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 1.1rem; z-index: 40; transition: var(--veyb-transition); }
.back-to-top:hover { background: var(--veyb-accent-dark); }
.back-to-top.is-visible { display: flex; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .urzh { display: flex; }
  .ummf { position: fixed; top: var(--veyb-header-height); left: 0; right: 0; flex-direction: column; align-items: flex-start; background: #fff; padding: var(--veyb-space-6); box-shadow: var(--veyb-shadow-md); transform: translateY(-120%); transition: transform var(--veyb-transition); z-index: 49; gap: var(--veyb-space-4); border-bottom: 1px solid var(--veyb-border); }
  .ummf.is-open { transform: none; }
  .ummf a { font-size: 1rem; }
  .container { width: 92%; }
  .hero-plus-form { grid-template-columns: 1fr; }
  .split-block { grid-template-columns: 1fr; }
  .split-reverse .media { order: 0; }
  .order-layout { grid-template-columns: 1fr; }
  .order-steps { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .bigstat-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredient-spotlight .split-block { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .bigstat-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.ubxo{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}
.ubxo.is-visible,.cookie-banner--visible,.ubxo.show,.ubxo.active{transform:none !important}
.ubxo a{color:inherit;text-decoration:underline}
.ubxo button{cursor:pointer}
.utyy{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}
.utyy.is-visible,.cookie-modal--visible,.utyy.show,.utyy.active{display:flex !important}
.ucha,.utyy>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.utwa .uzoh,.utwa .uumu,.utwa .ufbg,.utwa .uhos,.uzmf .uzoh,.uzmf .uumu,.uzmf .ufbg,.uzmf .uhos{background:#fff !important;color:#1a1a1a !important}
.uzoh,.uumu{color:#1a1a1a !important}
.uzoh label,.uumu label,.uzoh p,.uumu p,.uzoh .urxj,.uzoh span,.uumu span,.uutr,.uriq,.ufbg .uasd,.ufbg .uasd *{color:#1a1a1a !important}
.uutr,.uriq{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uzoh .uijp{color:#1a1a1a !important}
.uzoh .uijp.is-sel{color:#fff !important}
.ufmo .uqmr{display:none}
.ufmo .uqmr.is-visible{display:block !important;color:#c0392b}
.ufmo .urmg,.ufmo [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ufmo{color:#1a1a1a}
.utwa .ufmo,.uzmf .ufmo{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ugxc{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ugxc img{width:100%;height:100%;object-fit:cover}
.ufuu,.uevs{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ufuu img,.uevs img{width:100%;height:100%;object-fit:cover;display:block}
.ufuu img{opacity:.28}
.uevs img{opacity:.07}
*:has(> .ufuu),*:has(> .uevs){position:relative}
.ukwx{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)}
.ukwx .urim{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ukwx .ujmi{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uorr{margin:1.4rem auto;max-width:920px}
.uorr img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uwpa{padding:3rem 0}
.uamz{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uamz img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uhos{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ucdq{display:flex;overflow:hidden;gap:0 !important}
.ugyi{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uqgr{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}
.umhi{left:.5rem}.ucjs{right:.5rem}
.ufbg .uasd{display:none}.ufbg .uasd.is-active{display:block}
.uzoh .uhri{display:block !important}
.uzoh .uqup{display:flex;flex-wrap:wrap;gap:.5rem}
.uzoh .uijp{cursor:pointer}
