:root {
  --vfte-primary: #2a5c7f;
  --vfte-primary-dark: #1a3a52;
  --vfte-primary-light: #4a7c9f;
  --vfte-accent: #4a9eff;
  --vfte-accent-dark: #2a7edf;
  --vfte-success: #10b981;
  --vfte-warning: #f59e0b;
  --vfte-danger: #ef4444;
  --vfte-text: #1f2937;
  --vfte-text-light: #6b7280;
  --vfte-muted: #9ca3af;
  --vfte-border: #e5e7eb;
  --vfte-bg: #ffffff;
  --vfte-bg-alt: #f9fafb;
  --vfte-bg-dark: #1a3a52;
  --vfte-radius: 8px;
  --vfte-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --vfte-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--vfte-text);
  background: var(--vfte-bg);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.disclosure-bar {
  background: var(--vfte-primary-dark);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* HEADER */
.udmn {
  background: var(--vfte-bg);
  border-bottom: 1px solid var(--vfte-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vfte-primary-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.uqpw {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.uqpw span {
  width: 24px;
  height: 2px;
  background: var(--vfte-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.uedd {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.uedd a {
  color: var(--vfte-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.uedd a:hover {
  color: var(--vfte-accent);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--vfte-radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn-primary {
  background: var(--vfte-accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--vfte-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--vfte-shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--vfte-accent);
  border: 2px solid var(--vfte-accent);
}

.btn-outline:hover {
  background: var(--vfte-accent);
  color: #fff;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #f0f4f8 100%);
}

.uhbm {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.08;
  z-index: 0;
}

.uhbm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--vfte-primary-dark);
}

.hero-content h1 .hl {
  color: var(--vfte-accent);
}

.hero-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vfte-accent);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 2.2rem;
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.checklist li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--vfte-accent);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.hero-rating {
  font-size: 0.9rem;
  color: var(--vfte-text-light);
  margin: 1rem 0;
}

.stars {
  color: #f59e0b;
  letter-spacing: 2px;
}

.price-block {
  margin: 1.5rem 0;
}

.price-old {
  display: inline-block;
  font-size: 1rem;
  color: var(--vfte-muted);
  text-decoration: line-through;
  margin-right: 1rem;
}

.price-new {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vfte-primary-dark);
}

.price-badge {
  display: inline-block;
  background: var(--vfte-danger);
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 0.75rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--vfte-muted);
  margin-top: 1.5rem;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media {
  position: relative;
  overflow: hidden;
  background: var(--vfte-bg-alt);
  border-radius: var(--vfte-radius);
  box-shadow: var(--vfte-shadow-lg);
}

.media-1x1 {
  aspect-ratio: 1;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTIONS */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--vfte-bg-alt);
}

.utdv {
  background: var(--vfte-primary-dark);
  color: #fff;
}

.utdv h2 {
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--vfte-accent);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--vfte-primary-dark);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--vfte-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* GRIDS */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.benefit-card {
  background: var(--vfte-bg);
  padding: 2rem;
  border-radius: var(--vfte-radius);
  border: 1px solid var(--vfte-border);
  transition: all 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vfte-shadow-lg);
  border-color: var(--vfte-accent);
}

.benefit-card i {
  font-size: 2rem;
  color: var(--vfte-accent);
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--vfte-primary-dark);
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--vfte-text-light);
  line-height: 1.6;
}

/* TRUST BAND */
.trust-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--vfte-accent);
  flex-shrink: 0;
}

.trust-item > div {
  flex: 1;
}

.trust-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.trust-item span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.trust-checklist {
  margin: 2rem 0;
}

.trust-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--vfte-text);
}

.trust-check i {
  color: var(--vfte-success);
  font-size: 1.25rem;
}

/* TIMELINE */
.timeline-v {
  max-width: 600px;
  margin: 2rem auto;
}

.tl-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 2rem;
  border-left: 2px solid var(--vfte-border);
  padding-left: 2rem;
  margin-left: 0.5rem;
}

.tl-step:last-child {
  border-left: none;
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -12px;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--vfte-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.tl-step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--vfte-primary-dark);
}

.timeline-h {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.tl-node {
  text-align: center;
  padding: 2rem;
  background: var(--vfte-bg-alt);
  border-radius: var(--vfte-radius);
  border-left: 4px solid var(--vfte-accent);
}

.tl-node h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vfte-accent);
  margin-bottom: 0.5rem;
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: var(--vfte-bg-alt);
  padding: 1.5rem;
  border-radius: var(--vfte-radius);
  border: 1px solid var(--vfte-border);
}

.testimonial .stars {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial p {
  font-style: italic;
  color: var(--vfte-text);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--vfte-text-light);
  font-size: 0.9rem;
}

.testimonial-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--vfte-muted);
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--vfte-bg-alt);
  border-radius: var(--vfte-radius);
}

/* CAROUSEL */
.ulry {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.uiep {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s ease;
  margin: 0 3rem;
}

.uvgt {
  flex: 0 0 100%;
  min-width: 0;
}

.uwkv {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--vfte-accent);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}

.uwkv:hover {
  background: var(--vfte-accent-dark);
  transform: translateY(-50%) scale(1.1);
}

.unda {
  left: 0;
}

.ulgz {
  right: 0;
}

/* QUIZ */
.uhtg {
  max-width: 600px;
  margin: 2rem auto;
  background: var(--vfte-bg-alt);
  padding: 2rem;
  border-radius: var(--vfte-radius);
}

.ubwm {
  margin-bottom: 2rem;
}

.ubwm:last-of-type {
  margin-bottom: 0;
}

.uljo {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--vfte-primary-dark);
}

.ukau {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.uknx {
  padding: 0.75rem 1rem;
  border: 2px solid var(--vfte-border);
  background: var(--vfte-bg);
  border-radius: var(--vfte-radius);
  cursor: pointer;
  text-align: left;
  font-weight: 500;
  transition: all 0.2s ease;
}

.uknx:hover {
  border-color: var(--vfte-accent);
  background: rgba(74, 158, 255, 0.05);
}

.uknx.active {
  border-color: var(--vfte-accent);
  background: var(--vfte-accent);
  color: #fff;
}

.ujvh {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--vfte-accent);
  color: #fff;
  border-radius: var(--vfte-radius);
  text-align: center;
}

/* ORDER LAYOUT */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.order-summary {
  background: var(--vfte-bg-alt);
  padding: 2rem;
  border-radius: var(--vfte-radius);
  text-align: center;
}

.product-pack {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 2rem;
}

.product-pack svg {
  width: 100%;
  height: auto;
}

.umlu {
  background: var(--vfte-bg);
  border: 2px solid var(--vfte-border);
  padding: 2rem;
  border-radius: var(--vfte-radius);
}

.umlu h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--vfte-primary-dark);
}

/* FORMS */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--vfte-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--vfte-border);
  border-radius: var(--vfte-radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--vfte-accent);
  background: rgba(74, 158, 255, 0.02);
}

.phone-row {
  display: flex;
  gap: 0.75rem;
}

.phone-row select {
  flex: 0 0 auto;
  width: auto;
  min-width: 90px;
}

.phone-row input {
  flex: 1;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  width: auto;
  margin-top: 0.35rem;
  cursor: pointer;
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  flex: 1;
}

.form-checkbox a {
  color: var(--vfte-accent);
  text-decoration: none;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.uehg {
  display: block;
  color: var(--vfte-danger);
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: none;
}

.uehg.show {
  display: block;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--vfte-danger);
  background: rgba(239, 68, 68, 0.02);
}

.uvdn {
  display: none;
}

.order-note {
  font-size: 0.85rem;
  color: var(--vfte-muted);
  margin-top: 1rem;
  text-align: center;
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.step-card {
  text-align: center;
  padding: 2rem;
  background: var(--vfte-bg-alt);
  border-radius: var(--vfte-radius);
  border-top: 4px solid var(--vfte-accent);
}

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vfte-accent);
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--vfte-primary-dark);
}

.step-card p {
  font-size: 0.9rem;
  color: var(--vfte-text-light);
}

.steps-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--vfte-muted);
  margin-top: 2rem;
  padding: 1rem;
  background: var(--vfte-bg-alt);
  border-radius: var(--vfte-radius);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin: 2rem auto;
}

.uzwc {
  border: 1px solid var(--vfte-border);
  border-radius: var(--vfte-radius);
  overflow: hidden;
}

.uuxl {
  width: 100%;
  background: var(--vfte-bg-alt);
  border: none;
  padding: 1.25rem;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.uuxl:hover {
  background: var(--vfte-accent);
  color: #fff;
}

.uuxl.open {
  background: var(--vfte-accent);
  color: #fff;
}

.uuxl i {
  transition: transform 0.3s ease;
}

.uuxl.open i {
  transform: rotate(180deg);
}

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

.uamy.open {
  max-height: 1000px;
}

.faq-answer-inner {
  padding: 1.5rem;
  background: var(--vfte-bg);
  color: var(--vfte-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA BAND */
.cta-band {
  text-align: center;
}

.cta-band h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.cta-band p {
  font-size: 1rem;
  color: var(--vfte-text-light);
  margin-bottom: 1.5rem;
}

/* TABLE */
.table-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}

.dose-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.dose-table thead {
  background: var(--vfte-primary-dark);
  color: #fff;
}

.dose-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.dose-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--vfte-border);
}

.dose-table tbody tr:hover {
  background: var(--vfte-bg-alt);
}

.dose-note {
  font-size: 0.85rem;
  color: var(--vfte-muted);
  margin-top: 0.75rem;
}

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.umjh {
  background: var(--vfte-bg-alt);
  padding: 2rem;
  border-radius: var(--vfte-radius);
}

.umjh h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--vfte-primary-dark);
}

.contact-info-panel {
  background: var(--vfte-bg);
  border: 2px solid var(--vfte-border);
  padding: 2rem;
  border-radius: var(--vfte-radius);
}

.contact-info-panel h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--vfte-primary-dark);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--vfte-border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item i {
  font-size: 1.3rem;
  color: var(--vfte-accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--vfte-primary-dark);
}

.contact-info-item a {
  color: var(--vfte-accent);
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.map-container {
  margin: 2rem 0;
  border-radius: var(--vfte-radius);
  overflow: hidden;
  box-shadow: var(--vfte-shadow-lg);
}

/* FOOTER */
.site-footer {
  background: var(--vfte-primary-dark);
  color: #fff;
  padding: 3rem 0 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2rem;
}

.footer-brand h4,
.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-brand p,
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 1.5rem auto;
  padding: 0 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* COOKIES */
.uiqo {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vfte-primary-dark);
  color: #fff;
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  display: none;
}

.uiqo.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.urvx {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.urvx.show {
  display: flex;
}

.ubug {
  background: #fff;
  padding: 2rem;
  border-radius: var(--vfte-radius);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.ubug h2 {
  margin-bottom: 1rem;
  color: var(--vfte-primary-dark);
}

.ubug p {
  margin-bottom: 1.5rem;
  color: var(--vfte-text-light);
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--vfte-border);
}

.cookie-toggle:last-of-type {
  border-bottom: none;
}

.cookie-toggle h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--vfte-primary-dark);
}

.cookie-toggle p {
  font-size: 0.85rem;
  color: var(--vfte-muted);
  margin-bottom: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--vfte-border);
  cursor: pointer;
  border-radius: 14px;
  transition: 0.3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--vfte-accent);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

.cookie-modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .uedd {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    background: var(--vfte-bg);
    padding: 1.5rem;
    border-top: 1px solid var(--vfte-border);
  }

  .uedd.open {
    display: flex;
  }

  .uqpw {
    display: flex;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .dose-table {
    font-size: 0.85rem;
  }

  .dose-table th,
  .dose-table td {
    padding: 0.6rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .price-new {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    display: block;
    text-align: center;
  }

  .phone-row {
    flex-direction: column;
  }

  .phone-row select {
    width: 100%;
    min-width: auto;
  }

  .uuxl {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .uedd {
    gap: 0.75rem;
    padding: 1rem;
  }

  .uedd a {
    padding: 0.5rem;
  }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uiqo{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}
.uiqo.is-visible,.cookie-banner--visible,.uiqo.show,.uiqo.active{transform:none !important}
.uiqo a{color:inherit;text-decoration:underline}
.uiqo button{cursor:pointer}
.urvx{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}
.urvx.is-visible,.cookie-modal--visible,.urvx.show,.urvx.active{display:flex !important}
.ubug,.urvx>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.utdv .uhtg,.utdv .ualk,.utdv .uknz,.utdv .ulry,.ucfj .uhtg,.ucfj .ualk,.ucfj .uknz,.ucfj .ulry{background:#fff !important;color:#1a1a1a !important}
.uhtg,.ualk{color:#1a1a1a !important}
.uhtg label,.ualk label,.uhtg p,.ualk p,.uhtg .uljo,.uhtg span,.ualk span,.uwxz,.uqvt,.uknz .uyru,.uknz .uyru *{color:#1a1a1a !important}
.uwxz,.uqvt{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uhtg .uknx{color:#1a1a1a !important}
.uhtg .uknx.is-sel{color:#fff !important}
.umlu .uehg{display:none}
.umlu .uehg.is-visible{display:block !important;color:#c0392b}
.umlu .uvdn,.umlu [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.umlu{color:#1a1a1a}
.utdv .umlu,.ucfj .umlu{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ugch{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ugch img{width:100%;height:100%;object-fit:cover}
.uhbm,.upzz{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uhbm img,.upzz img{width:100%;height:100%;object-fit:cover;display:block}
.uhbm img{opacity:.28}
.upzz img{opacity:.07}
*:has(> .uhbm),*:has(> .upzz){position:relative}
.uuco{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)}
.uuco .ubjo{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uuco .uemg{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uuvm{margin:1.4rem auto;max-width:920px}
.uuvm img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.udrd{padding:3rem 0}
.ugdi{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ugdi img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ulry{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uiep{display:flex;overflow:hidden;gap:0 !important}
.uvgt{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uwkv{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}
.unda{left:.5rem}.ulgz{right:.5rem}
.uknz .uyru{display:none}.uknz .uyru.is-active{display:block}
.uhtg .ubwm{display:block !important}
.uhtg .ukau{display:flex;flex-wrap:wrap;gap:.5rem}
.uhtg .uknx{cursor:pointer}
