@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@400;500;600&display=swap');

:root{
  --vcxd-teal:#149ca3;
  --vcxd-navy:#151824;
  --vcxd-lime:#deeb52;
  --vcxd-dark:#22252f;
  --vcxd-deep:#102c3d;
  --vcxd-white:#ffffff;
  --vcxd-muted:#576265;
  --vcxd-light:#dfe1e3;
  --vcxd-bg:#f5f6f7;
  --vcxd-radius:4px;
  --vcxd-pill:999px;
  --vcxd-container:1200px;
  --vcxd-gap:2rem;
}

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

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

body{
  font-family:'DM Sans',sans-serif;
  background:var(--vcxd-bg);
  color:var(--vcxd-dark);
  line-height:1.7;
  overflow-x:hidden;
}

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

a{color:var(--vcxd-teal);text-decoration:none;}
a:hover{text-decoration:underline;}

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

h1,h2,h3,h4{
  font-family:'DM Serif Display',serif;
  line-height:1.2;
  color:var(--vcxd-navy);
}

h1{font-size:clamp(2rem,5vw,3.2rem);}
h2{font-size:clamp(1.5rem,3.5vw,2.2rem);}
h3{font-size:1.25rem;}
h4{font-size:1.05rem;}

p{margin-bottom:1rem;}
p:last-child{margin-bottom:0;}

.italic-word{font-style:italic;}

.btn-pill{
  display:inline-block;
  padding:.85rem 2.2rem;
  border-radius:var(--vcxd-pill);
  background:var(--vcxd-navy);
  color:var(--vcxd-white);
  font-family:'DM Sans',sans-serif;
  font-weight:600;
  font-size:1rem;
  border:none;
  cursor:pointer;
  transition:background .2s,transform .15s;
  text-align:center;
}
.btn-pill:hover{background:var(--vcxd-deep);text-decoration:none;transform:translateY(-1px);}
.btn-pill:active{transform:translateY(0);}

.btn-pill-outline{
  display:inline-block;
  padding:.75rem 2rem;
  border-radius:var(--vcxd-pill);
  background:transparent;
  color:var(--vcxd-navy);
  border:2px solid var(--vcxd-navy);
  font-weight:600;
  font-size:.95rem;
  cursor:pointer;
  transition:all .2s;
}
.btn-pill-outline:hover{background:var(--vcxd-navy);color:var(--vcxd-white);text-decoration:none;}

.section{padding:5rem 0;}
.section-tight{padding:3.5rem 0;}

.ugle{
  background:var(--vcxd-navy);
}
.ubnb{
  background:var(--vcxd-teal);
}

/* Светлый текст на тёмных секциях — включая вложенный контент (Alex, CTA) */
.ugle > .container,
.ubnb > .container{
  color:rgba(255,255,255,.9);
}
.ugle .container :is(h2,h3,h4),
.ubnb .container :is(h2,h3){
  color:var(--vcxd-white);
}
.ugle .container .section-label,
.ubnb .container .section-label,
.ugle .order-info .section-label{
  color:var(--vcxd-lime) !important;
}
.ugle .container :is(p,li):not(.section-label),
.ugle .order-info :is(p,li),
.ubnb .container :is(p,li):not(.section-label){
  color:rgba(255,255,255,.88);
}
.ugle .container a:not(.btn-pill),
.ugle .order-info a:not(.btn-pill),
.ubnb .container a:not(.btn-pill){
  color:var(--vcxd-lime);
}

/* Карточки и формы: всегда тёмный текст на светлом фоне */
:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card){
  color:var(--vcxd-dark);
}
:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) :is(h1,h2,h3,h4,.myth-title,.step-title,.ingredient-name,.calc-title){
  color:var(--vcxd-navy);
}
:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) :is(p,span,label,li,.myth-body,.step-body,.ingredient-claim,.review-author,.bento-label,.calc-result-label){
  color:var(--vcxd-muted);
}
:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) .review-body{
  color:var(--vcxd-dark);
}
:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) :is(.bento-num,.calc-val,.calc-result-val){
  color:var(--vcxd-teal);
}
:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) .section-label{
  color:var(--vcxd-teal);
}
:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) .ingredient-legal,
:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) .review-stars{
  color:var(--vcxd-teal);
}
:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) a{
  color:var(--vcxd-teal);
}
.step-card .step-num{
  color:var(--vcxd-white);
}
.order-form-card .btn-pill,
.contact-form-card .btn-pill{
  color:var(--vcxd-white);
}

.section-light{background:var(--vcxd-white);}

.tag{
  display:inline-block;
  padding:.3rem .85rem;
  border-radius:var(--vcxd-pill);
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.tag-teal{background:rgba(20,156,163,.12);color:var(--vcxd-teal);}
.tag-lime{background:var(--vcxd-lime);color:var(--vcxd-navy);}
.tag-navy{background:var(--vcxd-navy);color:var(--vcxd-white);}

.usll{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--vcxd-white);
  border-bottom:1px solid var(--vcxd-light);
  padding:.9rem 0;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.site-logo{
  font-family:'DM Serif Display',serif;
  font-size:1.35rem;
  color:var(--vcxd-navy);
  font-weight:400;
  letter-spacing:-.01em;
}
.site-logo span{color:var(--vcxd-teal);}

.nav-menu{display:flex;align-items:center;gap:2rem;list-style:none;}
.nav-menu a{
  font-size:.9rem;
  font-weight:500;
  color:var(--vcxd-dark);
  transition:color .2s;
}
.nav-menu a:hover{color:var(--vcxd-teal);text-decoration:none;}

.ufbm{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:.3rem;
}
.ufbm span{
  display:block;
  width:24px;
  height:2px;
  background:var(--vcxd-navy);
  margin:5px 0;
  transition:all .2s;
}

.hero{
  position:relative;
  background:var(--vcxd-teal);
  padding:5rem 0;
  overflow:hidden;
  isolation:isolate;
}
.hero > .container{
  position:relative;
  z-index:2;
}
.hero .uodx{
  z-index:0;
}
.hero::after{
  content:'';
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(135deg,rgba(20,156,163,.92) 0%,rgba(16,44,61,.78) 100%);
  pointer-events:none;
}
.hero-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
}
.hero-text .byline{
  display:flex;
  align-items:center;
  gap:.75rem;
  margin-bottom:1.5rem;
}
.byline-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'DM Serif Display',serif;
  font-size:1.1rem;
  color:var(--vcxd-white);
  flex-shrink:0;
}
.byline-meta{
  font-size:.82rem;
  color:rgba(255,255,255,.85);
  line-height:1.4;
}
.byline-meta strong{
  display:block;
  color:var(--vcxd-white);
  font-size:.9rem;
}
.hero h1{color:var(--vcxd-white);margin-bottom:1.25rem;}
.hero-intro{
  color:rgba(255,255,255,.9);
  font-size:1.1rem;
  margin-bottom:2rem;
}
.hero-chips{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin-bottom:2rem;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  background:rgba(255,255,255,.15);
  color:var(--vcxd-white);
  padding:.4rem .9rem;
  border-radius:var(--vcxd-pill);
  font-size:.82rem;
  font-weight:500;
  backdrop-filter:blur(4px);
}
.chip svg{width:14px;height:14px;flex-shrink:0;}

.hero-visual{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}
.hero-pack{
  width:100%;
  max-width:360px;
  border-radius:12px;
  box-shadow:0 24px 64px rgba(21,24,36,.35);
  aspect-ratio:1/1;
  object-fit:cover;
}
.hero-bg-overlay{
  position:absolute;
  inset:0;
  opacity:.08;
  object-fit:cover;
  border-radius:12px;
  pointer-events:none;
}

.breadcrumb{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-size:.8rem;
  color:rgba(255,255,255,.7);
  margin-bottom:1rem;
  flex-wrap:wrap;
}
.breadcrumb a{color:rgba(255,255,255,.85);}
.breadcrumb-sep{opacity:.5;}

.glass-card,
.myth-card,
.step-card,
.review-card,
.ingredient-card,
.bento-card,
.uekm{
  background:var(--vcxd-white);
  border:1px solid var(--vcxd-light);
  border-radius:var(--vcxd-radius);
  box-shadow:0 2px 12px rgba(21,24,36,.06);
  color:var(--vcxd-dark);
}

.glass-card{
  padding:1.75rem;
  transition:transform .2s,box-shadow .2s;
}
.glass-card:hover{transform:translateY(-3px);box-shadow:0 8px 32px rgba(20,156,163,.12);}

.glass-card h2,.glass-card h3,.glass-card h4,
.myth-card h2,.myth-card h3,.myth-card h4,
.step-card h2,.step-card h3,.step-card h4,
.review-card h2,.review-card h3,.review-card h4,
.ingredient-card h2,.ingredient-card h3,.ingredient-card h4,
.bento-card h2,.bento-card h3,.bento-card h4,
.uekm h2,.uekm h3,.uekm h4{
  color:var(--vcxd-navy);
}

.myth-title,.step-title,.ingredient-name,.calc-title{
  color:var(--vcxd-navy);
}

.myth-body,.step-body,.ingredient-claim,.bento-label,.calc-result-label{
  color:var(--vcxd-muted);
}

.ubnb .step-card,
.ubnb .myth-card,
.ugle .step-card,
.ugle .myth-card,
.ugle .review-card,
.ugle .ingredient-card,
.ugle .bento-card,
.ugle .uekm,
.ubnb .uekm{
  background:var(--vcxd-white);
  border-color:var(--vcxd-light);
}

.section-label{
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--vcxd-teal);
  margin-bottom:.75rem;
}

.myths-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1.5rem;
  margin-top:2.5rem;
}
.myth-card{
  padding:1.75rem;
}
.myth-badge{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.3rem .7rem;
  border-radius:var(--vcxd-pill);
  font-size:.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:1rem;
}
.myth-badge-myth{background:#fee2e2;color:#991b1b;}
.myth-badge-fact{background:#d1fae5;color:#065f46;}
.myth-title{font-family:'DM Serif Display',serif;font-size:1.05rem;color:var(--vcxd-navy);margin-bottom:.5rem;}
.myth-body{font-size:.9rem;color:var(--vcxd-muted);line-height:1.6;}

.faq-list{margin-top:2.5rem;}
.uctu{
  border-bottom:1px solid var(--vcxd-light);
  padding:1.25rem 0;
}
.uyun{
  font-family:'DM Serif Display',serif;
  font-size:1.05rem;
  color:var(--vcxd-navy);
  margin-bottom:.5rem;
  display:flex;
  align-items:flex-start;
  gap:.75rem;
}
.faq-icon{
  flex-shrink:0;
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--vcxd-teal);
  color:var(--vcxd-white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.75rem;
  font-weight:700;
  margin-top:.1rem;
}
.ucrt{font-size:.92rem;color:var(--vcxd-muted);padding-left:2rem;line-height:1.7;}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
  margin-top:2.5rem;
  counter-reset:steps;
}
.step-card{
  position:relative;
  padding:2rem 1.75rem 1.75rem;
}
.step-num{
  position:absolute;
  top:-16px;
  left:1.75rem;
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--vcxd-navy);
  color:var(--vcxd-white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'DM Serif Display',serif;
  font-size:1rem;
  font-weight:700;
}
.step-title{font-family:'DM Serif Display',serif;font-size:1.1rem;color:var(--vcxd-navy);margin-bottom:.6rem;}
.step-body{font-size:.9rem;color:var(--vcxd-muted);}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.5rem;
  margin-top:2.5rem;
}
.review-card{
  padding:1.75rem;
}
.review-stars{
  color:var(--vcxd-teal);
  font-size:1rem;
  margin-bottom:.75rem;
  letter-spacing:.1em;
}
.review-body{font-size:.92rem;color:var(--vcxd-dark);font-style:italic;margin-bottom:1rem;line-height:1.65;}
.review-author{font-size:.82rem;color:var(--vcxd-muted);font-weight:600;}
.review-disclaimer{
  margin-top:2rem;
  font-size:.78rem;
  color:var(--vcxd-muted);
  font-style:italic;
  text-align:center;
  padding:1rem;
  border:1px solid var(--vcxd-light);
  border-radius:var(--vcxd-radius);
}

.ingredients-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem;
  margin-top:2.5rem;
}
.ingredient-card{
  padding:1.75rem;
  text-align:center;
}
.ingredient-icon{
  width:52px;
  height:52px;
  margin:0 auto 1rem;
  border-radius:50%;
  background:rgba(20,156,163,.1);
  display:flex;
  align-items:center;
  justify-content:center;
}
.ingredient-icon svg{width:26px;height:26px;}
.ingredient-name{font-family:'DM Serif Display',serif;color:var(--vcxd-navy);font-size:1.1rem;margin-bottom:.5rem;}
.ingredient-claim{font-size:.85rem;color:var(--vcxd-muted);line-height:1.6;}
.ingredient-legal{font-size:.75rem;color:var(--vcxd-teal);margin-top:.5rem;font-style:italic;}

.bento-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-template-rows:auto auto;
  gap:1.5rem;
  margin-top:2.5rem;
}
.bento-card{
  padding:2rem;
  overflow:hidden;
}
.bento-card-wide{grid-column:span 2;}
.bento-card-tall{grid-row:span 2;}
.bento-num{
  font-family:'DM Serif Display',serif;
  font-size:3.5rem;
  color:var(--vcxd-teal);
  line-height:1;
  margin-bottom:.5rem;
}
.bento-label{font-size:.85rem;color:var(--vcxd-muted);font-weight:500;}
.bento-img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:var(--vcxd-radius);
}

.order-section{
  padding:5rem 0;
}
.order-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:start;
}
.order-info h2{margin-bottom:1rem;}
.price-block{
  display:flex;
  align-items:baseline;
  gap:1rem;
  margin:1.5rem 0;
}
.price-now{
  font-family:'DM Serif Display',serif;
  font-size:clamp(2rem,6vw,2.8rem);
  color:var(--vcxd-lime);
  line-height:1;
}

.ugle .order-info h2,
.ugle .order-info h3{
  color:var(--vcxd-white);
}

.ugle .order-form-card{
  background:var(--vcxd-white);
  border-color:var(--vcxd-light);
}

.ugle .trust-chip{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.25);
  color:var(--vcxd-white);
}

.ugle .price-was{
  color:rgba(255,255,255,.55);
}

.ugle .price-save{
  color:var(--vcxd-navy);
}
.price-was{
  font-size:1.1rem;
  color:var(--vcxd-muted);
  text-decoration:line-through;
}
.price-save{
  background:var(--vcxd-lime);
  color:var(--vcxd-navy);
  padding:.2rem .6rem;
  border-radius:var(--vcxd-pill);
  font-size:.8rem;
  font-weight:700;
}
.trust-chips{
  display:flex;
  flex-wrap:wrap;
  gap:.6rem;
  margin:1.5rem 0;
}
.trust-chip{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  background:var(--vcxd-bg);
  border:1px solid var(--vcxd-light);
  color:var(--vcxd-dark);
  padding:.35rem .85rem;
  border-radius:var(--vcxd-pill);
  font-size:.8rem;
  font-weight:500;
}
.trust-chip svg{width:14px;height:14px;color:var(--vcxd-teal);}

.order-form-card{
  background:var(--vcxd-bg);
  border:1px solid var(--vcxd-light);
  border-radius:var(--vcxd-radius);
  padding:2rem;
}
.order-form-card h3{margin-bottom:1.5rem;font-size:1.25rem;}
.form-group{margin-bottom:1.25rem;}
.form-group label{
  display:block;
  font-size:.85rem;
  font-weight:600;
  color:var(--vcxd-dark);
  margin-bottom:.4rem;
}
.form-group input[type="text"],
.form-group input[type="tel"]{
  width:100%;
  padding:.75rem 1rem;
  border:1px solid var(--vcxd-light);
  border-radius:var(--vcxd-radius);
  font-family:'DM Sans',sans-serif;
  font-size:.95rem;
  background:var(--vcxd-white);
  color:var(--vcxd-dark);
  transition:border-color .2s;
}
.form-group input:focus{outline:none;border-color:var(--vcxd-teal);}
.form-honeypot{display:none !important;visibility:hidden;}
.consent-row{
  display:flex;
  align-items:flex-start;
  gap:.75rem;
  margin-bottom:1.5rem;
}
.consent-row input[type="checkbox"]{
  margin-top:.25rem;
  flex-shrink:0;
  accent-color:var(--vcxd-teal);
  width:16px;
  height:16px;
}
.consent-row label{font-size:.8rem;color:var(--vcxd-muted);line-height:1.5;}
.consent-row a{color:var(--vcxd-teal);}
.form-submit{width:100%;font-size:1.05rem;padding:1rem;}

.calc-section{margin-top:2.5rem;}
.uekm{
  padding:2rem;
  max-width:480px;
}
.calc-title{font-family:'DM Serif Display',serif;font-size:1.15rem;color:var(--vcxd-navy);margin-bottom:1.25rem;}
.calc-row{
  display:flex;
  align-items:center;
  gap:1rem;
  margin-bottom:1rem;
  flex-wrap:wrap;
}
.calc-row label{font-size:.88rem;font-weight:500;color:var(--vcxd-dark);}
.calc-row input[type="range"]{
  flex:1;
  accent-color:var(--vcxd-teal);
  min-width:120px;
}
.calc-val{
  font-family:'DM Serif Display',serif;
  font-size:1.4rem;
  color:var(--vcxd-teal);
  min-width:2.5rem;
  text-align:right;
}
.calc-result-row{
  margin-top:1rem;
  padding-top:1rem;
  border-top:1px solid var(--vcxd-light);
  display:flex;
  align-items:center;
  gap:1rem;
  flex-wrap:wrap;
}
.calc-result-label{font-size:.88rem;color:var(--vcxd-muted);}
.calc-result-val{
  font-family:'DM Serif Display',serif;
  font-size:1.6rem;
  color:var(--vcxd-teal);
  font-weight:700;
}

.pack-detail-img{
  width:100%;
  max-width:320px;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:var(--vcxd-radius);
  margin-bottom:1.5rem;
}

footer.site-footer,
.site-footer{
  background-color:#22252f !important;
  background:#22252f !important;
  color:var(--vcxd-light);
  padding:3rem 0 1.5rem;
}
.site-footer .container{
  background:transparent;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:3rem;
  margin-bottom:2.5rem;
}
.footer-brand-name{
  font-family:'DM Serif Display',serif;
  font-size:1.2rem;
  color:var(--vcxd-white) !important;
  margin-bottom:.75rem;
}
.footer-about{font-size:.85rem;color:rgba(255,255,255,.82) !important;line-height:1.65;margin-bottom:1rem;}
.footer-company{font-size:.78rem;color:rgba(255,255,255,.68) !important;line-height:1.6;}
.footer-col-title{
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.75) !important;
  margin-bottom:1rem;
}
.footer-links{list-style:none;}
.footer-links li{margin-bottom:.5rem;color:rgba(255,255,255,.82);}
.footer-links a{font-size:.85rem;color:rgba(255,255,255,.82) !important;transition:color .2s;}
.footer-links a:hover{color:var(--vcxd-white) !important;text-decoration:none;}
.footer-divider{border:none;border-top:1px solid rgba(255,255,255,.15);margin:1.5rem 0;}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:1.5rem;
  flex-wrap:wrap;
}
.footer-legal-text{font-size:.75rem;color:rgba(255,255,255,.65) !important;line-height:1.6;max-width:700px;}
.footer-copy{font-size:.78rem;color:rgba(255,255,255,.65) !important;white-space:nowrap;}

.footer-disclaimer{
  font-size:.75rem;
  color:rgba(255,255,255,.72) !important;
  line-height:1.6;
  padding:1rem 1.25rem;
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--vcxd-radius);
  margin-bottom:1.5rem;
  background:rgba(255,255,255,.04);
}
.footer-disclaimer strong{color:var(--vcxd-white) !important;}

.uxow{
  position:fixed;
  bottom:1rem;
  left:1rem;
  right:1rem;
  z-index:9999;
  max-width:760px;
  margin:0 auto;
  background:var(--vcxd-white);
  color:var(--vcxd-dark);
  padding:1rem 1.25rem;
  border:1px solid var(--vcxd-light);
  border-radius:12px;
  box-shadow:0 10px 40px rgba(0,0,0,.18);
  display:none;
  transform:translateY(220%);
  transition:transform .32s ease;
}
.uxow.is-visible{
  display:block;
  transform:none;
}
.cookie-inner{
  max-width:var(--vcxd-container);
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:1.5rem;
  flex-wrap:wrap;
}
.uhdz{font-size:.85rem;color:var(--vcxd-dark);flex:1;min-width:220px;}
.uhdz a{color:var(--vcxd-teal);}
.urwu{display:flex;gap:.75rem;flex-wrap:wrap;flex-shrink:0;}
.cookie-btn{
  padding:.5rem 1.2rem;
  border-radius:var(--vcxd-pill);
  font-family:'DM Sans',sans-serif;
  font-size:.85rem;
  font-weight:600;
  cursor:pointer;
  border:none;
  transition:opacity .2s,background .2s;
}
.cookie-btn:hover{opacity:.85;}
.cookie-btn-accept{background:var(--vcxd-teal);color:var(--vcxd-white);}
.cookie-btn-reject{background:transparent;color:var(--vcxd-dark);border:1px solid var(--vcxd-light);}
.cookie-btn-settings{background:transparent;color:var(--vcxd-muted);border:1px solid var(--vcxd-light);font-size:.8rem;}

.cookie-settings-panel{
  display:none;
  padding:1rem 0 0;
  margin-top:.85rem;
  border-top:1px solid var(--vcxd-light);
}
.cookie-settings-panel.is-open{display:block;}
.cookie-setting-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:.6rem 0;
  border-bottom:1px solid var(--vcxd-light);
  font-size:.83rem;
  color:var(--vcxd-dark);
  gap:1rem;
}
.cookie-setting-row:last-child{border-bottom:none;}

.inner-hero{
  position:relative;
  background:var(--vcxd-teal);
  padding:3rem 0 2.5rem;
  color:var(--vcxd-white);
  overflow:hidden;
}
.inner-hero > .container{
  position:relative;
  z-index:2;
}
.inner-hero h1{color:var(--vcxd-white);font-size:clamp(1.6rem,4vw,2.5rem);}
.inner-hero p{color:rgba(255,255,255,.9);}
.inner-hero .breadcrumb{margin-bottom:.75rem;}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  margin-top:2.5rem;
}
.contact-info h3{margin-bottom:1rem;}
.contact-detail{
  display:flex;
  align-items:flex-start;
  gap:.75rem;
  margin-bottom:1.25rem;
  font-size:.92rem;
  color:var(--vcxd-dark);
}
.contact-detail-icon{
  width:20px;
  height:20px;
  flex-shrink:0;
  color:var(--vcxd-teal);
  margin-top:.1rem;
}
.map-container{border-radius:var(--vcxd-radius);overflow:hidden;border:1px solid var(--vcxd-light);}
.map-container iframe{display:block;}

.contact-form-card{
  background:var(--vcxd-white);
  border:1px solid var(--vcxd-light);
  border-radius:var(--vcxd-radius);
  padding:2rem;
}

.form-group textarea{
  width:100%;
  padding:.75rem 1rem;
  border:1px solid var(--vcxd-light);
  border-radius:var(--vcxd-radius);
  font-family:'DM Sans',sans-serif;
  font-size:.95rem;
  background:var(--vcxd-white);
  color:var(--vcxd-dark);
  resize:vertical;
  min-height:120px;
  transition:border-color .2s;
}
.form-group textarea:focus{outline:none;border-color:var(--vcxd-teal);}

.map-container iframe{
  display:block;
  width:100%;
  min-height:220px;
  height:clamp(220px,45vw,350px);
}

.thankyou-hero{
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:var(--vcxd-teal);
  padding:4rem 1.5rem;
}
.thankyou-box{max-width:560px;}
.thankyou-box h1{color:var(--vcxd-white);margin-bottom:1rem;}
.thankyou-box p{color:rgba(255,255,255,.9);font-size:1.05rem;margin-bottom:2rem;}

.notfound-hero{
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:var(--vcxd-navy);
  padding:4rem 1.5rem;
}
.notfound-box{max-width:520px;}
.notfound-num{
  font-family:'DM Serif Display',serif;
  font-size:7rem;
  color:var(--vcxd-teal);
  line-height:1;
  margin-bottom:.5rem;
}
.notfound-box h2{color:var(--vcxd-white);margin-bottom:1rem;}
.notfound-box p{color:rgba(255,255,255,.7);margin-bottom:2rem;}

.legal-article{max-width:760px;margin:0 auto;padding:3rem 1.5rem;}
.legal-article h1{font-size:2rem;margin-bottom:.5rem;}
.legal-article .legal-date{font-size:.82rem;color:var(--vcxd-muted);margin-bottom:2rem;}
.legal-article h2{font-size:1.3rem;margin:2rem 0 .75rem;}
.legal-article h3{font-size:1.05rem;margin:1.5rem 0 .5rem;}
.legal-article p,.legal-article li{font-size:.93rem;color:var(--vcxd-dark);line-height:1.75;}
.legal-article ul,.legal-article ol{padding-left:1.5rem;margin-bottom:1rem;}
.legal-article table{width:100%;border-collapse:collapse;margin:1.5rem 0;font-size:.88rem;}
.legal-article th,.legal-article td{padding:.6rem .85rem;border:1px solid var(--vcxd-light);text-align:left;}
.legal-article th{background:var(--vcxd-bg);font-weight:600;}

.duotone-icon{color:var(--vcxd-teal);}
.duotone-icon-secondary{color:var(--vcxd-navy);opacity:.6;}

@media(max-width:900px){
  .hero{padding:4rem 0;}
  .hero-inner{grid-template-columns:1fr;gap:2.5rem;}
  .hero-visual{order:-1;}
  .order-inner{grid-template-columns:1fr;gap:2.5rem;}
  .steps-grid{grid-template-columns:1fr;}
  .bento-grid{grid-template-columns:1fr 1fr;}
  .bento-card-wide{grid-column:span 2;}
  .bento-card-tall{grid-row:auto;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .contact-grid{grid-template-columns:1fr;gap:2rem;}
  .myths-grid{grid-template-columns:1fr;}
  .reviews-grid{grid-template-columns:1fr;}
  .ingredients-grid{grid-template-columns:repeat(auto-fit,minmax(200px,1fr));}
  .price-block{flex-wrap:wrap;}
  .cookie-inner{flex-direction:column;align-items:stretch;}
  .urwu{width:100%;justify-content:flex-start;}
}

@media(max-width:600px){
  .section{padding:3rem 0;}
  .section-tight{padding:2.5rem 0;}
  .hero{padding:3rem 0;}
  .inner-hero{padding:2.5rem 0 2rem;}
  h1{font-size:1.9rem;}
  h2{font-size:1.5rem;}
  .container{padding:0 1rem;}
  .nav-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:var(--vcxd-white);
    flex-direction:column;
    padding:1rem 1.5rem;
    border-top:1px solid var(--vcxd-light);
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    gap:0;
  }
  .nav-menu.is-open{display:flex;}
  .nav-menu li{width:100%;border-bottom:1px solid var(--vcxd-bg);}
  .nav-menu a{display:block;padding:.65rem 0;font-size:.95rem;}
  .nav-menu .btn-pill{
    display:block;
    width:100%;
    margin:.75rem 0;
    text-align:center;
  }
  .ufbm{display:block;}
  .usll{position:relative;}
  .header-inner{position:relative;}
  .bento-grid{grid-template-columns:1fr;}
  .bento-card-wide{grid-column:span 1;}
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;}
  .footer-copy{white-space:normal;}
  .hero-chips{gap:.45rem;}
  .chip{font-size:.78rem;padding:.35rem .75rem;}
  .hero-pack{max-width:280px;}
  .order-form-card,.contact-form-card{padding:1.25rem;}
  .step-card{padding:1.75rem 1.25rem 1.25rem;}
  .step-num{left:1.25rem;}
  .ucrt{padding-left:0;margin-top:.35rem;}
  .uyun{font-size:1rem;}
  .calc-row{gap:.65rem;}
  .calc-row label{width:100%;}
  .calc-val{text-align:left;min-width:auto;}
  .utex{padding:1rem 2.75rem !important;}
  .ufvs{width:34px;height:34px;font-size:1rem;}
  .uxow{left:.75rem !important;right:.75rem !important;bottom:.75rem !important;padding:.85rem 1rem !important;}
  .cookie-btn{padding:.45rem .9rem;font-size:.8rem;}
  .btn-pill,.btn-pill-outline{
    display:block;
    width:100%;
    max-width:100%;
  }
  [style*="text-align:center"] .btn-pill,
  .hero-text .btn-pill,
  .notfound-hero .btn-pill,
  .thankyou-hero .btn-pill{
    display:inline-block;
    width:auto;
    max-width:100%;
  }
  .legal-article{padding:2rem 1rem;}
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uxow{
  position:fixed !important;
  left:1rem;
  right:1rem;
  bottom:1rem;
  z-index:9000 !important;
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
  background:#fff !important;
  color:#1a1a1a !important;
  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;
}
.uxow.is-visible,.cookie-banner--visible,.uxow.show,.uxow.active{transform:none !important}
.uxow a{color:var(--vcxd-teal) !important;text-decoration:underline}
.uxow button{cursor:pointer}
.uhdz{font-size:.85rem;color:#1a1a1a !important;flex:1;min-width:220px}
.uhdz a{color:var(--vcxd-teal) !important}
.cookie-btn-reject{background:transparent !important;color:#444 !important;border:1px solid rgba(0,0,0,.2) !important}
.cookie-btn-settings{background:transparent !important;color:#555 !important;border:1px solid rgba(0,0,0,.15) !important}
.cookie-settings-panel{
  display:none;
  padding:1rem 0 0;
  background:transparent !important;
  max-width:100%;
  margin:0;
  border-top:1px solid rgba(0,0,0,.08);
  margin-top:.85rem;
}
.cookie-settings-panel.is-open{display:block !important}
.cookie-setting-row{
  color:#333 !important;
  border-bottom-color:rgba(0,0,0,.08) !important;
}
.uztg{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}
.uztg.is-visible,.cookie-modal--visible,.uztg.show,.uztg.active{display:flex !important}
.ufzb,.uztg>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.ugle .uvil,.ugle .uekm,.ugle .ukse,.ugle .uykf,.ubnb .uvil,.ubnb .uekm,.ubnb .ukse,.ubnb .uykf{background:#fff !important;color:#1a1a1a !important;border-color:rgba(0,0,0,.1) !important}
.uvil,.uekm{color:#1a1a1a !important}
.uvil label,.uekm label,.uvil p,.uekm p,.uvil .uuqf,.uvil span,.uekm span,.ujho,.umlg,.ukse .uzio,.ukse .uzio *{color:#1a1a1a !important}
.ujho,.umlg{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uvil .uvve{color:#1a1a1a !important}
.uvil .uvve.is-sel{color:#fff !important}
.ugkj .uglm{display:none}
.ugkj .uglm.is-visible{display:block !important;color:#c0392b}
.ugkj .umau,.ugkj [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ugkj{color:#1a1a1a}
.ugle .ugkj,.ubnb .ugkj{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ukee{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ukee img{width:100%;height:100%;object-fit:cover}
.uodx,.ubpa{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uodx img,.ubpa img{width:100%;height:100%;object-fit:cover;display:block}
.uodx img{opacity:.35}
.ubpa img{opacity:.07}
*:has(> .uodx),*:has(> .ubpa){position:relative}
.uahe{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,.96);border-radius:10px;padding:1rem .8rem;box-shadow:0 2px 14px rgba(0,0,0,.16)}
.uahe .uhaj{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uahe .uils{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uzug{margin:1.4rem auto;max-width:920px}
.uzug img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.usqx{padding:3rem 0}
.uqum{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uqum img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uykf{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ucxn{display:flex;overflow:hidden;gap:0 !important}
.utex{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ufvs{position:absolute;top:50%;transform:translateY(-50%);width:40px;height:40px;border-radius:50%;border:1px solid rgba(0,0,0,.18);background:#fff;color:#1a1a1a;cursor:pointer;z-index:2;font-size:1.1rem;line-height:1}
.ubgp{left:.5rem}.uhhe{right:.5rem}
.ukse .uzio{display:none}.ukse .uzio.is-active{display:block}
.uvil .ugcz{display:block !important}
.uvil .uybd{display:flex;flex-wrap:wrap;gap:.5rem}
.uvil .uvve{cursor:pointer}

.section img,.hero img,.bento-img,.pack-detail-img{max-width:100%;height:auto}

.supplement-disclaimer{
  font-size:.75rem;
  color:rgba(255,255,255,.72) !important;
  line-height:1.6;
  padding:1rem 1.5rem;
  max-width:var(--vcxd-container);
  margin:0 auto;
}

.site-footer .footer-policies{
  padding:0 1.5rem 1rem;
  max-width:var(--vcxd-container);
  margin:0 auto;
}
.site-footer .footer-policies h4{
  font-size:.78rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:rgba(255,255,255,.75) !important;
  margin-bottom:.75rem;
}
.site-footer .footer-policies ul{list-style:none;}
.site-footer .footer-policies a{
  font-size:.85rem;
  color:rgba(255,255,255,.82) !important;
}

.ugle .price-was{color:rgba(255,255,255,.55)}

.notfound-hero .btn-pill,
.thankyou-hero .btn-pill{
  display:inline-block;
  width:auto;
  max-width:none;
}

.section img,.hero img,.bento-img,.pack-detail-img{max-width:100%;height:auto}

@media(max-width:600px){
  .uqum{grid-template-columns:1fr;width:100%}
  .uahe{width:68%;padding:.75rem .6rem}
}

/* Конtrast guard: светлые секции vs белые карточки */
.ugle{background:var(--vcxd-navy) !important}
.ubnb{background:var(--vcxd-teal) !important}
.ugle :is(h2,h3,h4):not(:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) *){
  color:var(--vcxd-white);
}
.ubnb :is(h2,h3):not(:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) *){
  color:var(--vcxd-white);
}
.ugle :is(p:not(.section-label),li):not(:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) *),
.ubnb :is(p:not(.section-label),li):not(:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) *){
  color:rgba(255,255,255,.88);
}
.ugle a:not(.btn-pill):not(:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) a),
.ubnb a:not(.btn-pill):not(:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) a){
  color:var(--vcxd-lime);
}
.ugle .section-label:not(:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) .section-label),
.ubnb .section-label:not(:is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) .section-label){
  color:var(--vcxd-lime) !important;
}

footer.site-footer,
.site-footer{
  background-color:#22252f !important;
  background:#22252f !important;
}
.site-footer .footer-brand-name{color:var(--vcxd-white) !important}
.site-footer .footer-about{color:rgba(255,255,255,.82) !important}
.site-footer .footer-company{color:rgba(255,255,255,.68) !important}
.site-footer .footer-col-title{color:rgba(255,255,255,.75) !important}
.site-footer .footer-links a{color:rgba(255,255,255,.82) !important}
.site-footer .footer-legal-text,
.site-footer .footer-copy{color:rgba(255,255,255,.65) !important}
.site-footer .footer-disclaimer{color:rgba(255,255,255,.72) !important}
.site-footer .footer-disclaimer strong{color:var(--vcxd-white) !important}
.site-footer .supplement-disclaimer{color:rgba(255,255,255,.72) !important}
.site-footer .footer-policies h4{color:rgba(255,255,255,.75) !important}
.site-footer .footer-policies a{color:rgba(255,255,255,.82) !important}

.ugle :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card),
.ubnb :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card){
  color:var(--vcxd-dark) !important;
}
.ugle :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) :is(h1,h2,h3,h4,.myth-title,.step-title,.ingredient-name,.calc-title),
.ubnb :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) :is(h1,h2,h3,h4,.myth-title,.step-title,.ingredient-name,.calc-title){
  color:var(--vcxd-navy) !important;
}
.ugle :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) :is(p,span,label,li,.myth-body,.step-body,.ingredient-claim,.review-author,.bento-label,.calc-result-label),
.ubnb :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) :is(p,span,label,li,.myth-body,.step-body,.ingredient-claim,.review-author,.bento-label,.calc-result-label){
  color:var(--vcxd-muted) !important;
}
.ugle :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) .review-body,
.ubnb :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) .review-body{
  color:var(--vcxd-dark) !important;
}
.ugle :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) :is(.bento-num,.calc-val,.calc-result-val),
.ubnb :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) :is(.bento-num,.calc-val,.calc-result-val){
  color:var(--vcxd-teal) !important;
}
.ugle :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) .section-label,
.ubnb :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) .section-label{
  color:var(--vcxd-teal) !important;
}
.ugle :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) :is(.ingredient-legal,.review-stars),
.ubnb :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) :is(.ingredient-legal,.review-stars){
  color:var(--vcxd-teal) !important;
}
.ugle :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) a,
.ubnb :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) a{
  color:var(--vcxd-teal) !important;
}
.ugle :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) .step-num,
.ubnb :is(.myth-card,.step-card,.review-card,.ingredient-card,.bento-card,.glass-card,.uekm,.order-form-card,.contact-form-card) .step-num{
  color:var(--vcxd-white) !important;
}
.ugle :is(.order-form-card,.contact-form-card) .btn-pill,
.ubnb :is(.order-form-card,.contact-form-card) .btn-pill{
  color:var(--vcxd-white) !important;
}
.ugle .order-form-card input,
.ugle .order-form-card textarea,
.ugle .contact-form-card input,
.ugle .contact-form-card textarea,
.ubnb .order-form-card input,
.ubnb .order-form-card textarea{
  color:var(--vcxd-dark) !important;
}
.ugle .ugkj,
.ubnb .ugkj,
.ugle .ugkj *,
.ubnb .ugkj *{
  color:var(--vcxd-dark);
}
.ugle .ugkj label,
.ubnb .ugkj label,
.ugle .ugkj .consent-row label,
.ubnb .ugkj .consent-row label{
  color:var(--vcxd-muted) !important;
}
.ugle .ugkj h3,
.ubnb .ugkj h3{
  color:var(--vcxd-navy) !important;
}
.ugle .ugkj a,
.ubnb .ugkj a{
  color:var(--vcxd-teal) !important;
}
.ugle .ugkj .btn-pill,
.ubnb .ugkj .btn-pill{
  color:var(--vcxd-white) !important;
}
