:root {
  --vcqv-primary: #1f4788;
  --vcqv-primary-light: #2d5fa8;
  --vcqv-primary-dark: #0f2d5a;
  --vcqv-accent: #e8663d;
  --vcqv-accent-light: #f0885a;
  --vcqv-neutral-50: #f9fafb;
  --vcqv-neutral-100: #f3f4f6;
  --vcqv-neutral-200: #e5e7eb;
  --vcqv-neutral-400: #9ca3af;
  --vcqv-neutral-600: #4b5563;
  --vcqv-neutral-800: #1f2937;
  --vcqv-neutral-900: #111827;
  --vcqv-success: #10b981;
  --vcqv-error: #ef4444;
  --vcqv-muted: #6b7280;
  --vcqv-bg-alt: #f0f4f9;
  --vcqv-border: #d1d5db;
  --vcqv-radius-sm: 6px;
  --vcqv-radius-md: 12px;
  --vcqv-radius-lg: 16px;
  --vcqv-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --vcqv-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --vcqv-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--vcqv-neutral-800);
  background: #fff;
}

/* Typography */
h1 { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 600; }
h4 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 600; }
h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 600; }

p { margin-bottom: 1rem; }

a {
  color: var(--vcqv-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--vcqv-primary-light); text-decoration: underline; }

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

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

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

.section-lead {
  font-size: 1.2rem;
  color: var(--vcqv-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.ukjf {
  background: linear-gradient(135deg, var(--vcqv-primary-dark) 0%, var(--vcqv-primary) 100%);
  color: #fff;
  padding: 4rem 0;
}

.ukjf .section-title { color: #fff; }

/* Header */
.disclosure-bar {
  background: #f0f0f0;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--vcqv-muted);
  border-bottom: 1px solid var(--vcqv-border);
}

.usxr {
  background: #fff;
  border-bottom: 1px solid var(--vcqv-border);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--vcqv-shadow-sm);
}

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

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vcqv-primary);
}

.ugdc {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.ugdc span {
  width: 24px;
  height: 2px;
  background: var(--vcqv-neutral-800);
  margin: 4px 0;
  transition: all 0.3s ease;
}

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

.uovz a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--vcqv-neutral-600);
  transition: color 0.2s ease;
}

.uovz a:hover { color: var(--vcqv-primary); text-decoration: none; }

/* Hero Section */
.hero {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.uube {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.uube img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}

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

.hero-content { }

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

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title .hl {
  color: var(--vcqv-accent);
}

.hero-rating {
  font-size: 0.95rem;
  color: var(--vcqv-muted);
  margin-bottom: 1.5rem;
}

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

.price-block {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
}

.price-old {
  font-size: 1.2rem;
  color: var(--vcqv-muted);
  text-decoration: line-through;
}

.price-new {
  font-size: 2.5rem;
  color: var(--vcqv-accent);
  font-weight: 700;
}

.price-badge {
  display: inline-block;
  background: var(--vcqv-accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--vcqv-radius-md);
  font-size: 0.9rem;
  font-weight: 600;
}

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

.hero-note {
  font-size: 0.9rem;
  color: var(--vcqv-muted);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vcqv-bg-alt);
  border-radius: var(--vcqv-radius-lg);
  padding: 2rem;
  position: relative;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: var(--vcqv-radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  user-select: none;
}

.btn-primary {
  background: var(--vcqv-primary);
  color: #fff;
  border-color: var(--vcqv-primary);
}

.btn-primary:hover {
  background: var(--vcqv-primary-light);
  border-color: var(--vcqv-primary-light);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--vcqv-primary);
  border-color: var(--vcqv-primary);
}

.btn-outline:hover {
  background: var(--vcqv-primary);
  color: #fff;
  text-decoration: none;
}

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

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

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

.benefit-card {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--vcqv-border);
  border-radius: var(--vcqv-radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

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

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

.benefit-card h3 {
  margin-bottom: 0.75rem;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--vcqv-muted);
  font-size: 0.95rem;
}

/* Checklist */
.checklist {
  list-style: none;
  margin-bottom: 2rem;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--vcqv-border);
  border-radius: var(--vcqv-radius-md);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--vcqv-primary);
  box-shadow: 0 0 0 3px rgba(31, 71, 136, 0.1);
}

.uvhs {
  display: none;
  color: var(--vcqv-error);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.uvhs.show { display: block; }

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

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

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

.upfk {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* Order Form */
.uhhm {
  background: #fff;
  padding: 2.5rem;
  border: 1px solid var(--vcqv-border);
  border-radius: var(--vcqv-radius-lg);
  box-shadow: var(--vcqv-shadow-md);
}

.uhhm h3 {
  margin-bottom: 1.5rem;
}

.phone-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.75rem;
}

.phone-row select {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--vcqv-border);
  border-radius: var(--vcqv-radius-md);
  font-family: 'Outfit', sans-serif;
}

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

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

/* Product Pack SVG */
.product-pack {
  max-width: 300px;
  margin: 0 auto;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
}

.dose-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.dose-table thead {
  background: var(--vcqv-bg-alt);
  border-bottom: 2px solid var(--vcqv-border);
}

.dose-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--vcqv-neutral-800);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.dose-table tbody tr:hover {
  background: var(--vcqv-neutral-50);
}

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

/* Timeline */
.timeline-v {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  padding: 2rem 0;
}

.timeline-v::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--vcqv-border);
}

.tl-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}

.tl-step:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.tl-step:nth-child(even) > * {
  direction: ltr;
}

.tl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--vcqv-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.tl-step h3 { margin-bottom: 0.5rem; }
.tl-step p { margin-bottom: 0; color: var(--vcqv-muted); }

/* Split Block */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.media {
  background: var(--vcqv-bg-alt);
  border-radius: var(--vcqv-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.media-4x3 {
  aspect-ratio: 4 / 3;
}

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

/* Order Steps */
.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--vcqv-border);
  border-radius: var(--vcqv-radius-lg);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--vcqv-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { margin-bottom: 0; color: var(--vcqv-muted); font-size: 0.95rem; }

.section-note {
  text-align: center;
  color: var(--vcqv-muted);
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

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

.trust-item {
  text-align: center;
}

.trust-item i {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.trust-item p { margin-bottom: 0; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--vcqv-border);
  border-radius: var(--vcqv-radius-lg);
  display: flex;
  flex-direction: column;
}

.testimonial .stars {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial p {
  font-style: italic;
  color: var(--vcqv-neutral-700);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.testimonial cite {
  font-size: 0.9rem;
  color: var(--vcqv-muted);
  font-style: normal;
}

.testimonial-disclaimer {
  text-align: center;
  color: var(--vcqv-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.ufba {
  border: 1px solid var(--vcqv-border);
  border-radius: var(--vcqv-radius-md);
  overflow: hidden;
}

.urdb {
  width: 100%;
  padding: 1.5rem;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.urdb:hover {
  background: var(--vcqv-bg-alt);
}

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

.urdb[aria-expanded="true"] i {
  transform: rotate(180deg);
}

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

.urdb[aria-expanded="true"] ~ .uwws {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 1.5rem;
  background: var(--vcqv-bg-alt);
  color: var(--vcqv-neutral-700);
}

.faq-answer-inner p { margin-bottom: 0; }

/* CTA Band */
.cta-band {
  text-align: center;
  padding: 2rem;
  background: var(--vcqv-accent);
  color: #fff;
  border-radius: var(--vcqv-radius-lg);
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-band p { margin-bottom: 1.5rem; color: rgba(255, 255, 255, 0.9); }

.cta-band .btn { margin-top: 1rem; }

/* Badges */
.badge {
  display: inline-block;
  background: var(--vcqv-neutral-200);
  color: var(--vcqv-neutral-800);
  padding: 0.5rem 1rem;
  border-radius: var(--vcqv-radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Footer */
.site-footer {
  background: var(--vcqv-neutral-900);
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-brand h4 { color: #fff; margin-bottom: 0.5rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }

.footer-col h4 { color: #fff; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }
.footer-col a:hover { color: #fff; }

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

.footer-legal-links a { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; }
.footer-legal-links a:hover { color: #fff; }

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cookie Banner */
.unko {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vcqv-neutral-900);
  color: #fff;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

.unko.show { display: block; }

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

.cookie-banner-text {
  font-size: 0.9rem;
  flex: 1;
  margin-bottom: 0;
}

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

/* Cookie Modal */
.ulvp {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ulvp.show {
  opacity: 1;
  visibility: visible;
}

.uewn {
  background: #fff;
  padding: 2rem;
  border-radius: var(--vcqv-radius-lg);
  max-width: 500px;
  width: 90%;
  box-shadow: var(--vcqv-shadow-lg);
}

.uewn h2 { margin-bottom: 1rem; }
.uewn p { margin-bottom: 1.5rem; }

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--vcqv-bg-alt);
  border-radius: var(--vcqv-radius-md);
}

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

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

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--vcqv-neutral-300);
  transition: 0.3s;
  border-radius: 26px;
}

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

input:checked + .slider {
  background-color: var(--vcqv-primary);
}

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

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: flex-end;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.umab { }

.contact-info-panel {
  background: var(--vcqv-bg-alt);
  padding: 2rem;
  border-radius: var(--vcqv-radius-lg);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--vcqv-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-info-item strong { display: block; margin-bottom: 0.25rem; }

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

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .hero-grid { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; }
  .split-block { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  
  .uovz {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--vcqv-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .ugdc {
    display: flex;
  }

  .ugdc[aria-expanded="true"] ~ .uovz {
    max-height: 400px;
  }

  .uovz a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--vcqv-border);
  }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .timeline-v::before { display: none; }
  .tl-step { grid-template-columns: 1fr !important; }
  .tl-dot { position: relative; left: auto; transform: none; margin-bottom: 1rem; }

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

  .umab { }
  
  .table-wrap table {
    font-size: 0.85rem;
  }
  
  .table-wrap th,
  .table-wrap td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .section { padding: 2rem 0; }
  
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  
  .benefit-grid { grid-template-columns: 1fr; }
  .order-steps { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  
  .hero-actions { gap: 0.5rem; }
  
  .price-block { flex-direction: column; }
  
  .footer-grid { grid-template-columns: 1fr; }
  
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions button { width: 100%; }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.unko{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}
.unko.is-visible,.cookie-banner--visible,.unko.show,.unko.active{transform:none !important}
.unko a{color:inherit;text-decoration:underline}
.unko button{cursor:pointer}
.ulvp{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}
.ulvp.is-visible,.cookie-modal--visible,.ulvp.show,.ulvp.active{display:flex !important}
.uewn,.ulvp>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uwyu .ufie,.uwyu .ugxc,.uwyu .usil,.uwyu .ukwb,.ukjf .ufie,.ukjf .ugxc,.ukjf .usil,.ukjf .ukwb{background:#fff !important;color:#1a1a1a !important}
.ufie,.ugxc{color:#1a1a1a !important}
.ufie label,.ugxc label,.ufie p,.ugxc p,.ufie .ufcc,.ufie span,.ugxc span,.ubtx,.uslq,.usil .ulce,.usil .ulce *{color:#1a1a1a !important}
.ubtx,.uslq{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ufie .umsi{color:#1a1a1a !important}
.ufie .umsi.is-sel{color:#fff !important}
.uhhm .uvhs{display:none}
.uhhm .uvhs.is-visible{display:block !important;color:#c0392b}
.uhhm .upfk,.uhhm [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uhhm{color:#1a1a1a}
.uwyu .uhhm,.ukjf .uhhm{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.upys{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.upys img{width:100%;height:100%;object-fit:cover}
.uube,.uxde{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uube img,.uxde img{width:100%;height:100%;object-fit:cover;display:block}
.uube img{opacity:.28}
.uxde img{opacity:.07}
*:has(> .uube),*:has(> .uxde){position:relative}
.unag{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)}
.unag .uthd{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.unag .upcf{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.unvc{margin:1.4rem auto;max-width:920px}
.unvc img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.umlj{padding:3rem 0}
.uppf{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uppf img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ukwb{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uipr{display:flex;overflow:hidden;gap:0 !important}
.uveq{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.useh{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}
.uvlm{left:.5rem}.urun{right:.5rem}
.usil .ulce{display:none}.usil .ulce.is-active{display:block}
.ufie .uhuc{display:block !important}
.ufie .uopn{display:flex;flex-wrap:wrap;gap:.5rem}
.ufie .umsi{cursor:pointer}
