:root {
  --vvzt-c-navy: #0d2a5c;
  --vvzt-c-accent: #34d67e;
  --vvzt-c-accent-dark: #22b562;
  --vvzt-c-danger: #e05a57;
  --vvzt-c-bg: #f2f3f5;
  --vvzt-c-bg-white: #ffffff;
  --vvzt-c-text: #1a1a2e;
  --vvzt-c-text-muted: #5a5a72;
  --vvzt-c-border: #d4d6de;
  --vvzt-c-dark-band: #0a1833;
  --vvzt-c-dark-band-2: #0f2347;
  --vvzt-font-main: 'Outfit', sans-serif;
  --vvzt-radius: 0px;
  --vvzt-container: 1080px;
  --vvzt-space-xs: 8px;
  --vvzt-space-sm: 16px;
  --vvzt-space-md: 24px;
  --vvzt-space-lg: 48px;
  --vvzt-space-xl: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--vvzt-font-main);
  background: var(--vvzt-c-bg);
  color: var(--vvzt-c-text);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.container {
  max-width: var(--vvzt-container);
  margin: 0 auto;
  padding: 0 var(--vvzt-space-md);
}

.section {
  padding: var(--vvzt-space-xl) 0;
}

.utmu {
  background: var(--vvzt-c-dark-band);
  color: #f0f4ff;
}

.utmu a { color: var(--vvzt-c-accent); }

.ufnc {
  background: var(--vvzt-c-navy);
  color: #f0f4ff;
}

.ufnc a { color: var(--vvzt-c-accent); }

.section-header {
  text-align: center;
  margin-bottom: var(--vvzt-space-lg);
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: var(--vvzt-space-sm);
  color: var(--vvzt-c-navy);
}

.utmu .section-header h2,
.ufnc .section-header h2 { color: #f0f4ff; }

.section-intro {
  font-size: 1.05rem;
  color: var(--vvzt-c-text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.utmu .section-intro,
.ufnc .section-intro { color: #b8c8e8; }

h1, h2, h3 { line-height: 1.2; }

.card--outlined {
  border: 1.5px solid var(--vvzt-c-border);
  background: var(--vvzt-c-bg-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vvzt-font-main);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 24px;
}

.btn--pill { border-radius: 9999px; }

.btn--primary {
  background: var(--vvzt-c-accent);
  color: #0a1833;
  border-color: var(--vvzt-c-accent);
}

.btn--primary:hover {
  background: var(--vvzt-c-accent-dark);
  border-color: var(--vvzt-c-accent-dark);
  text-decoration: none;
  color: #0a1833;
}

.btn--ghost {
  background: transparent;
  color: var(--vvzt-c-accent);
  border-color: var(--vvzt-c-accent);
}

.btn--ghost:hover {
  background: var(--vvzt-c-accent);
  color: #0a1833;
  text-decoration: none;
}

.utmu .btn--ghost,
.ufnc .btn--ghost {
  color: var(--vvzt-c-accent);
  border-color: var(--vvzt-c-accent);
}

.btn--lg { padding: 14px 36px; font-size: 1.05rem; }
.btn--sm { padding: 7px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; }

.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--vvzt-c-text-muted);
  margin-bottom: var(--vvzt-space-md);
}

.breadcrumb ol li + li::before { content: "›"; margin-right: 6px; }
.breadcrumb a { color: var(--vvzt-c-text-muted); }
.breadcrumb--light ol { color: #b8c8e8; }
.breadcrumb--light a { color: #b8c8e8; }

.uncn {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--vvzt-c-bg-white);
  border-bottom: 1.5px solid var(--vvzt-c-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--vvzt-space-md);
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--vvzt-c-navy);
  text-decoration: none;
}

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--vvzt-space-md);
}

.site-nav__list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--vvzt-c-text);
}

.site-nav__list a:hover { color: var(--vvzt-c-accent-dark); text-decoration: none; }
.site-nav__list a[aria-current="page"] { color: var(--vvzt-c-accent-dark); font-weight: 600; }

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vvzt-c-navy);
}

.mobile-menu {
  background: var(--vvzt-c-bg-white);
  border-top: 1.5px solid var(--vvzt-c-border);
  padding: var(--vvzt-space-md);
}

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: var(--vvzt-space-sm); }
.mobile-menu a { font-weight: 500; color: var(--vvzt-c-text); font-size: 1rem; }

.section-hero {
  background: var(--vvzt-c-bg);
  padding: var(--vvzt-space-xl) 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vvzt-space-lg);
  align-items: center;
}

.hero__heading {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--vvzt-c-navy);
  margin-bottom: var(--vvzt-space-md);
}

.hero__heading-number {
  font-size: 1.15em;
  color: var(--vvzt-c-accent-dark);
  font-weight: 900;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--vvzt-c-text-muted);
  margin-bottom: var(--vvzt-space-md);
  max-width: 500px;
}

.hero__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--vvzt-space-md);
}

.chip {
  font-size: 0.8rem;
  font-weight: 600;
  background: #e8faf0;
  color: var(--vvzt-c-accent-dark);
  border: 1.5px solid var(--vvzt-c-accent);
  padding: 4px 12px;
  border-radius: 9999px;
}

.hero__cta {
  display: flex;
  gap: var(--vvzt-space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--vvzt-space-sm);
}

.hero__micro {
  font-size: 0.78rem;
  color: var(--vvzt-c-text-muted);
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ujhr {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  pointer-events: none;
}

.hero__pack {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.trust-strip {
  padding: 18px 0;
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--vvzt-space-lg);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-icon { flex-shrink: 0; }

.routine-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vvzt-space-md);
  margin-bottom: var(--vvzt-space-lg);
}

.routine-step {
  display: flex;
  flex-direction: column;
  padding: var(--vvzt-space-md);
  gap: var(--vvzt-space-sm);
}

.routine-step__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--vvzt-c-accent);
  line-height: 1;
}

.routine-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vvzt-c-navy);
}

.routine-step p { font-size: 0.92rem; color: var(--vvzt-c-text-muted); }

.routine-visual {
  max-width: 640px;
  margin: 0 auto;
}

.routine-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vvzt-space-md);
  margin-bottom: var(--vvzt-space-md);
}

.mechanism-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mechanism-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.mechanism-card__body {
  padding: var(--vvzt-space-md);
  flex: 1;
}

.step-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vvzt-c-accent-dark);
  border: 1.5px solid var(--vvzt-c-accent);
  padding: 2px 10px;
  margin-bottom: var(--vvzt-space-xs);
}

.mechanism-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--vvzt-c-navy);
  margin-bottom: 8px;
}

.mechanism-card p { font-size: 0.88rem; color: var(--vvzt-c-text-muted); }

.mechanism-note {
  font-size: 0.8rem;
  color: var(--vvzt-c-text-muted);
  border-left: 3px solid var(--vvzt-c-accent);
  padding-left: var(--vvzt-space-sm);
  margin-top: var(--vvzt-space-md);
}

.stat-band {
  padding: var(--vvzt-space-lg) 0;
}

.stat-band__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: var(--vvzt-space-lg);
  text-align: center;
}

.stat-band__number {
  display: block;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--vvzt-c-accent);
  line-height: 1;
}

.stat-band__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #b8c8e8;
  margin-top: 6px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vvzt-space-md);
  margin-bottom: var(--vvzt-space-md);
}

.reviews-grid--large {
  grid-template-columns: repeat(3, 1fr);
}

.review-card { padding: var(--vvzt-space-md); }

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--vvzt-space-sm);
}

.review-stars { color: #f0a500; font-size: 1.1rem; }
.review-stars.large { font-size: 1.4rem; }
.review-author { font-size: 0.88rem; color: var(--vvzt-c-text-muted); }

.review-card blockquote p {
  font-size: 0.92rem;
  color: var(--vvzt-c-text);
  font-style: italic;
}

.review-card__footer {
  margin-top: var(--vvzt-space-sm);
  font-size: 0.75rem;
  color: var(--vvzt-c-text-muted);
}

.reviews-disclaimer {
  font-size: 0.78rem;
  color: var(--vvzt-c-text-muted);
  border-left: 3px solid var(--vvzt-c-border);
  padding-left: var(--vvzt-space-sm);
  margin-bottom: var(--vvzt-space-md);
}

.reviews-cta { text-align: center; }

.reviews-summary {
  display: flex;
  gap: var(--vvzt-space-lg);
  align-items: center;
  padding: var(--vvzt-space-md);
  margin-bottom: var(--vvzt-space-lg);
  flex-wrap: wrap;
}

.reviews-summary__score { text-align: center; min-width: 120px; }
.reviews-summary__number { display: block; font-size: 3rem; font-weight: 900; color: var(--vvzt-c-navy); line-height: 1; }
.reviews-summary__count { font-size: 0.8rem; color: var(--vvzt-c-text-muted); }
.reviews-summary__bars { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 6px; }

.rating-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--vvzt-c-text-muted);
}

.rating-bar__track {
  flex: 1;
  height: 8px;
  background: var(--vvzt-c-border);
}

.rating-bar__fill {
  height: 100%;
  background: var(--vvzt-c-accent);
}

.faq-list { max-width: 720px; margin: 0 auto; }

.ugtz {
  border-bottom: 1.5px solid var(--vvzt-c-border);
}

.uvwe {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--vvzt-space-md) 0;
  font-family: var(--vvzt-font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vvzt-c-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--vvzt-space-sm);
}

.uvwe::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--vvzt-c-accent-dark);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.uvwe[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.ubqi {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.ubqi.is-open {
  max-height: 400px;
}

.ubqi div {
  padding: 0 0 var(--vvzt-space-md) 0;
  font-size: 0.95rem;
  color: var(--vvzt-c-text-muted);
}

.section-order {
  padding: var(--vvzt-space-xl) 0;
}

.section-order__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vvzt-space-lg);
  align-items: start;
}

.section-order__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #f0f4ff;
  margin-bottom: var(--vvzt-space-sm);
}

.section-order__text p { color: #b8c8e8; margin-bottom: var(--vvzt-space-md); }

.order-product-info {
  display: flex;
  gap: var(--vvzt-space-md);
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: var(--vvzt-space-md);
}

.order-product-info img {
  width: 160px;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: rgba(255,255,255,0.05);
}

.order-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-features li {
  font-size: 0.9rem;
  color: #d0e4ff;
  padding-left: 16px;
  position: relative;
}

.order-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vvzt-c-accent);
  font-weight: 700;
}

.order-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: var(--vvzt-space-md);
}

.order-price__current {
  font-size: 2rem;
  font-weight: 900;
  color: var(--vvzt-c-accent);
}

.order-price__note {
  font-size: 0.85rem;
  color: #b8c8e8;
}

.section-order__form {
  background: var(--vvzt-c-bg-white);
  padding: var(--vvzt-space-lg);
}

.uwmw,
.uwir {
  display: flex;
  flex-direction: column;
  gap: var(--vvzt-space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--vvzt-c-navy);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  font-family: var(--vvzt-font-main);
  font-size: 0.95rem;
  padding: 10px 14px;
  border: 1.5px solid var(--vvzt-c-border);
  background: var(--vvzt-c-bg);
  color: var(--vvzt-c-text);
  width: 100%;
  border-radius: var(--vvzt-radius);
  transition: border-color 0.18s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--vvzt-c-accent-dark);
}

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.form-group--checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--vvzt-c-accent-dark);
  width: 16px;
  height: 16px;
}

.form-group--checkbox label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--vvzt-c-text-muted);
}

.form-note {
  font-size: 0.78rem;
  color: var(--vvzt-c-text-muted);
  text-align: center;
}

.section-cta-band { padding: var(--vvzt-space-lg) 0; }

.section-cta-band__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vvzt-space-md);
}

.section-cta-band__inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #f0f4ff;
}

.section-cta-band__inner p { color: #b8c8e8; max-width: 540px; }

.section-lifestyle__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vvzt-space-lg);
  align-items: center;
}

.section-lifestyle__image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.section-lifestyle__text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--vvzt-c-navy);
  margin-bottom: var(--vvzt-space-sm);
}

.section-lifestyle__text p {
  color: var(--vvzt-c-text-muted);
  margin-bottom: var(--vvzt-space-sm);
}

.uczf {
  max-width: 640px;
  margin: 0 auto;
  background: var(--vvzt-c-bg-white);
  border: 1.5px solid var(--vvzt-c-border);
  padding: var(--vvzt-space-lg);
}

.lf-quiz__question {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vvzt-c-navy);
  margin-bottom: var(--vvzt-space-md);
}

.lf-quiz__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lf-quiz__option {
  padding: 14px 20px;
  text-align: left;
  background: var(--vvzt-c-bg);
  cursor: pointer;
  font-family: var(--vvzt-font-main);
  font-size: 0.95rem;
  color: var(--vvzt-c-text);
  transition: border-color 0.18s, background 0.18s;
  border: 1.5px solid var(--vvzt-c-border);
}

.lf-quiz__option:hover {
  border-color: var(--vvzt-c-accent-dark);
  background: #e8faf0;
}

.lf-quiz__result {
  text-align: center;
  padding: var(--vvzt-space-md) 0;
}

.lf-quiz__result-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vvzt-c-navy);
  margin-bottom: var(--vvzt-space-sm);
}

.lf-quiz__result-text {
  color: var(--vvzt-c-text-muted);
  margin-bottom: var(--vvzt-space-md);
}

.lf-quiz__disclaimer {
  font-size: 0.75rem;
  color: var(--vvzt-c-text-muted);
  margin-top: var(--vvzt-space-sm);
}

.page-hero {
  padding: var(--vvzt-space-xl) 0;
}

.page-hero--slim {
  padding: var(--vvzt-space-lg) 0;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #f0f4ff;
  margin-bottom: var(--vvzt-space-sm);
}

.page-hero p {
  color: #b8c8e8;
  max-width: 640px;
  font-size: 1.05rem;
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vvzt-c-navy);
  margin: var(--vvzt-space-lg) 0 var(--vvzt-space-sm);
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--vvzt-c-text-muted);
  margin-bottom: 8px;
}

.legal-content ul { padding-left: var(--vvzt-space-md); }
.legal-content address { font-style: normal; color: var(--vvzt-c-text-muted); font-size: 0.95rem; }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--vvzt-space-md) 0;
  font-size: 0.88rem;
}

.cookie-table th,
.cookie-table td {
  border: 1.5px solid var(--vvzt-c-border);
  padding: 10px 14px;
  text-align: left;
  color: var(--vvzt-c-text-muted);
}

.cookie-table th {
  background: var(--vvzt-c-bg);
  color: var(--vvzt-c-navy);
  font-weight: 700;
}

.ingredient-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--vvzt-space-md) 0;
  font-size: 0.9rem;
}

.ingredient-table th,
.ingredient-table td {
  border: 1.5px solid var(--vvzt-c-border);
  padding: 10px 14px;
  text-align: left;
}

.ingredient-table th {
  background: var(--vvzt-c-navy);
  color: #f0f4ff;
  font-weight: 600;
}

.ingredient-table td { color: var(--vvzt-c-text-muted); }
.ingredient-table tr:nth-child(even) td { background: #f8f9fb; }

.table-note {
  font-size: 0.78rem;
  color: var(--vvzt-c-text-muted);
  border-left: 3px solid var(--vvzt-c-accent);
  padding-left: var(--vvzt-space-sm);
}

.ingredient-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--vvzt-space-md);
}

.ingredient-detail { overflow: hidden; }

.ingredient-detail img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.ingredient-detail__body { padding: var(--vvzt-space-md); }

.ingredient-detail h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vvzt-c-navy);
  margin: var(--vvzt-space-sm) 0 8px;
}

.ingredient-detail p {
  font-size: 0.88rem;
  color: var(--vvzt-c-text-muted);
  margin-bottom: 8px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: var(--vvzt-space-xl);
}

.how-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: var(--vvzt-space-lg);
  align-items: center;
}

.how-step--reverse {
  grid-template-columns: 80px 1fr 1fr;
}

.how-step--reverse .how-step__image {
  order: -1;
  grid-column: 2;
}

.how-step--reverse .how-step__content { grid-column: 3; }

.how-step__num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--vvzt-c-accent);
  line-height: 1;
  text-align: center;
}

.how-step__content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vvzt-c-navy);
  margin-bottom: var(--vvzt-space-sm);
}

.how-step__content p { font-size: 0.92rem; color: var(--vvzt-c-text-muted); }

.how-step__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vvzt-space-lg);
  align-items: start;
}

.contact-info h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vvzt-c-navy);
  margin-bottom: var(--vvzt-space-md);
}

.contact-address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--vvzt-c-text-muted);
  line-height: 1.8;
  margin-bottom: var(--vvzt-space-md);
}

.contact-map { margin-top: var(--vvzt-space-md); }

.contact-form-wrap h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vvzt-c-navy);
  margin-bottom: var(--vvzt-space-md);
}

.site-footer { padding-top: var(--vvzt-space-xl); }

.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--vvzt-space-lg);
  padding-bottom: var(--vvzt-space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: #f0f4ff;
  text-decoration: none;
  margin-bottom: var(--vvzt-space-sm);
}

.site-footer__tagline {
  font-size: 0.85rem;
  color: #7a9acc;
  margin-bottom: var(--vvzt-space-sm);
}

.site-footer__address {
  font-style: normal;
  font-size: 0.82rem;
  color: #7a9acc;
  line-height: 1.7;
}

.site-footer__nav ul,
.site-footer__legal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__nav a,
.site-footer__legal a {
  font-size: 0.85rem;
  color: #b8c8e8;
}

.site-footer__nav a:hover,
.site-footer__legal a:hover { color: var(--vvzt-c-accent); text-decoration: none; }

.site-footer__disclaimer {
  padding: var(--vvzt-space-md) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.site-footer__disclaimer p {
  font-size: 0.75rem;
  color: #5a7299;
  line-height: 1.6;
  margin-bottom: 4px;
}

.uriq {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--vvzt-c-dark-band);
  border-top: 2px solid var(--vvzt-c-accent);
  padding: var(--vvzt-space-md);
}

.uriq.is-visible { display: block; }

.cookie-banner__inner {
  max-width: var(--vvzt-container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--vvzt-space-md);
  justify-content: space-between;
}

.cookie-banner__text {
  font-size: 0.88rem;
  color: #b8c8e8;
  flex: 1;
  min-width: 240px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thankyou-main {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thankyou-inner {
  text-align: center;
  padding: var(--vvzt-space-xl) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vvzt-space-md);
}

.thankyou-icon { margin-bottom: var(--vvzt-space-sm); }

.thankyou-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--vvzt-c-navy);
}

.thankyou-inner p { color: var(--vvzt-c-text-muted); max-width: 500px; }

.page-404__main {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.page-404__inner {
  text-align: center;
  padding: var(--vvzt-space-xl) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vvzt-space-md);
}

.page-404__code {
  font-size: 7rem;
  font-weight: 900;
  color: var(--vvzt-c-accent);
  line-height: 1;
}

.page-404__inner h1 { font-size: 2rem; font-weight: 700; color: var(--vvzt-c-navy); }
.page-404__inner p { color: var(--vvzt-c-text-muted); max-width: 420px; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .routine-steps { grid-template-columns: 1fr; }
  .mechanism-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .section-order__inner { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .ingredient-detail-grid { grid-template-columns: 1fr; }
  .how-step { grid-template-columns: 1fr; }
  .how-step__num { display: none; }
  .section-lifestyle__inner { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .site-header__burger { display: flex; }
  .trust-strip__inner { flex-direction: column; gap: var(--vvzt-space-sm); align-items: flex-start; }
  .stat-band__inner { gap: var(--vvzt-space-md); }
}

@media (max-width: 600px) {
  .hero__cta { flex-direction: column; }
  .order-product-info { flex-direction: column; }
  .order-product-info img { width: 100%; }
  .section-cta-band__inner .btn { width: 100%; }
  .reviews-summary { flex-direction: column; }
  .uczf { padding: var(--vvzt-space-md); }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uriq{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}
.uriq.is-visible,.cookie-banner--visible,.uriq.show,.uriq.active{transform:none !important}
.uriq a{color:inherit;text-decoration:underline}
.uriq button{cursor:pointer}
.uweg{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}
.uweg.is-visible,.cookie-modal--visible,.uweg.show,.uweg.active{display:flex !important}
.ulrk,.uweg>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.utmu .uczf,.utmu .ugvo,.utmu .ummf,.utmu .ujni,.ufnc .uczf,.ufnc .ugvo,.ufnc .ummf,.ufnc .ujni{background:#fff !important;color:#1a1a1a !important}
.uczf,.ugvo{color:#1a1a1a !important}
.uczf label,.ugvo label,.uczf p,.ugvo p,.uczf .umqa,.uczf span,.ugvo span,.ugdh,.uenl,.ummf .usfi,.ummf .usfi *{color:#1a1a1a !important}
.ugdh,.uenl{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uczf .ugtj{color:#1a1a1a !important}
.uczf .ugtj.is-sel{color:#fff !important}
.uwmw .ukvb{display:none}
.uwmw .ukvb.is-visible{display:block !important;color:#c0392b}
.uwmw .urjo,.uwmw [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uwmw{color:#1a1a1a}
.utmu .uwmw,.ufnc .uwmw{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ucrf{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ucrf img{width:100%;height:100%;object-fit:cover}
.ujhr,.uuly{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ujhr img,.uuly img{width:100%;height:100%;object-fit:cover;display:block}
.ujhr img{opacity:.28}
.uuly img{opacity:.07}
*:has(> .ujhr),*:has(> .uuly){position:relative}
.uflq{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)}
.uflq .uhvs{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uflq .ujyw{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.umlz{margin:1.4rem auto;max-width:920px}
.umlz img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ujkq{padding:3rem 0}
.uzjp{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uzjp img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ujni{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ujqg{display:flex;overflow:hidden;gap:0 !important}
.uwaz{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uszh{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}
.umam{left:.5rem}.uwhc{right:.5rem}
.ummf .usfi{display:none}.ummf .usfi.is-active{display:block}
.uczf .upib{display:block !important}
.uczf .usll{display:flex;flex-wrap:wrap;gap:.5rem}
.uczf .ugtj{cursor:pointer}
