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

:root {
  --vxcx-color-primary: #4E7035;
  --vxcx-color-primary-dark: #2d4620;
  --vxcx-color-primary-light: #6b9548;
  --vxcx-color-accent: #8b6914;
  --vxcx-color-neutral-dark: #1a1a1a;
  --vxcx-color-neutral-light: #f5f5f5;
  --vxcx-color-border: #e0e0e0;
  --vxcx-color-error: #d32f2f;
  --vxcx-font-display: 'Fraunces', serif;
  --vxcx-font-body: 'DM Sans', sans-serif;
  --vxcx-spacing-xs: 0.5rem;
  --vxcx-spacing-sm: 1rem;
  --vxcx-spacing-md: 1.5rem;
  --vxcx-spacing-lg: 2rem;
  --vxcx-spacing-xl: 3rem;
}

html, body {
  font-family: var(--vxcx-font-body);
  color: var(--vxcx-color-neutral-dark);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--vxcx-color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--vxcx-spacing-md);
}

/* Disclosure Bar */
.disclosure-bar {
  background: #f0f5f0;
  border-bottom: 1px solid var(--vxcx-color-border);
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: #666;
}

/* Header */
.uaoi {
  background: #fff;
  border-bottom: 1px solid var(--vxcx-color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--vxcx-spacing-md) 0;
  gap: var(--vxcx-spacing-md);
}

.logo {
  font-family: var(--vxcx-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--vxcx-color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  white-space: nowrap;
}

.ucft {
  display: flex;
  align-items: center;
  gap: var(--vxcx-spacing-md);
}

.utto {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 0.4rem;
}

.utto span {
  width: 24px;
  height: 2px;
  background: var(--vxcx-color-neutral-dark);
  border-radius: 1px;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f9faf7 0%, #f0f5f0 100%);
  padding: var(--vxcx-spacing-xl) 0;
  position: relative;
}

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

.upfi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.hero-split2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vxcx-spacing-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--vxcx-spacing-md);
}

.hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--vxcx-color-accent);
}

.hero-title {
  font-family: var(--vxcx-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--vxcx-color-neutral-dark);
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--vxcx-spacing-sm);
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #333;
}

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

.hero-rating {
  font-size: 0.95rem;
  color: #666;
}

.stars {
  color: #f39c12;
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.price-block {
  display: flex;
  align-items: center;
  gap: var(--vxcx-spacing-sm);
}

.price-old {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
}

.price-new {
  font-family: var(--vxcx-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--vxcx-color-primary);
}

.price-badge {
  display: inline-block;
  background: var(--vxcx-color-accent);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vxcx-spacing-sm);
  margin-top: var(--vxcx-spacing-sm);
}

.hero-note {
  font-size: 0.85rem;
  color: #666;
}

.hero-visual {
  text-align: center;
}

.media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f9f9f9;
}

.media img {
  width: 100%;
  height: auto;
  display: block;
}

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

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

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

.media-21x9 {
  aspect-ratio: 21/9;
}

/* Sections */
.section {
  padding: var(--vxcx-spacing-xl) 0;
}

.section-alt {
  background: var(--vxcx-color-neutral-light);
}

.uare {
  background: #1a2a1a;
  color: #fff;
}

.section-title {
  font-family: var(--vxcx-font-display);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--vxcx-spacing-md);
  color: var(--vxcx-color-neutral-dark);
}

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

.section-lead {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: var(--vxcx-spacing-lg);
}

.uare .section-lead {
  color: #ccc;
}

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

.benefit-card {
  padding: var(--vxcx-spacing-lg);
  background: #fff;
  border: 1px solid var(--vxcx-color-border);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: var(--vxcx-color-primary);
  box-shadow: 0 4px 12px rgba(78, 112, 53, 0.1);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--vxcx-color-primary);
  margin-bottom: var(--vxcx-spacing-sm);
  display: block;
}

.benefit-card h3 {
  font-family: var(--vxcx-font-display);
  font-size: 1.3rem;
  margin-bottom: var(--vxcx-spacing-sm);
  color: var(--vxcx-color-neutral-dark);
}

.benefit-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Trust Band */
.trust-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--vxcx-spacing-lg);
  padding: var(--vxcx-spacing-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--vxcx-spacing-sm);
  color: #fff;
}

.trust-item i {
  font-size: 1.8rem;
  color: var(--vxcx-color-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

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

.step-card {
  padding: var(--vxcx-spacing-lg);
  background: #fff;
  border: 1px solid var(--vxcx-color-border);
  border-radius: 8px;
  position: relative;
  padding-top: var(--vxcx-spacing-xl);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--vxcx-color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vxcx-font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--vxcx-spacing-sm);
  text-align: center;
}

.step-card p {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
}

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

.testimonial {
  padding: var(--vxcx-spacing-lg);
  background: #fff;
  border: 1px solid var(--vxcx-color-border);
  border-radius: 8px;
  border-left: 4px solid var(--vxcx-color-primary);
}

.testimonial .stars {
  display: block;
  margin-bottom: var(--vxcx-spacing-sm);
}

.testimonial p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: var(--vxcx-spacing-sm);
  font-style: italic;
}

.testimonial cite {
  display: block;
  font-size: 0.9rem;
  color: #666;
  font-style: normal;
}

.testimonial-disclaimer {
  background: #f9f9f9;
  padding: var(--vxcx-spacing-md);
  border-radius: 8px;
  border-left: 4px solid var(--vxcx-color-accent);
  font-size: 0.9rem;
  color: #666;
  margin-bottom: var(--vxcx-spacing-lg);
}

/* Order Form */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vxcx-spacing-xl);
  align-items: start;
}

.order-info {
  display: flex;
  flex-direction: column;
  gap: var(--vxcx-spacing-lg);
}

.order-info h2 {
  font-family: var(--vxcx-font-display);
  font-size: 1.8rem;
  color: var(--vxcx-color-neutral-dark);
}

.order-guarantees {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--vxcx-spacing-sm);
}

.order-guarantees li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #333;
}

.order-guarantees i {
  color: var(--vxcx-color-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ufmo {
  background: #f9f9f9;
  padding: var(--vxcx-spacing-lg);
  border-radius: 8px;
  border: 1px solid var(--vxcx-color-border);
}

.ufmo h3 {
  font-family: var(--vxcx-font-display);
  font-size: 1.4rem;
  margin-bottom: var(--vxcx-spacing-lg);
  color: var(--vxcx-color-neutral-dark);
}

.form-group {
  margin-bottom: var(--vxcx-spacing-md);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--vxcx-color-neutral-dark);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--vxcx-color-border);
  border-radius: 4px;
  font-family: var(--vxcx-font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--vxcx-color-primary);
  box-shadow: 0 0 0 2px rgba(78, 112, 53, 0.1);
}

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

.phone-row select {
  padding: 0.75rem;
}

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

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-checkbox label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: normal;
}

.form-checkbox a {
  color: var(--vxcx-color-primary);
  text-decoration: underline;
}

.ukgt {
  display: none;
  font-size: 0.85rem;
  color: var(--vxcx-color-error);
  margin-top: 0.25rem;
}

.form-group.error .ukgt {
  display: block;
}

.ufhf {
  display: none;
}

.order-note {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  margin-top: var(--vxcx-spacing-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--vxcx-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--vxcx-color-primary-dark);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--vxcx-color-primary);
  border: 1px solid var(--vxcx-color-primary);
}

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

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

.btn-block {
  width: 100%;
}

/* Product Pack SVG */
.product-pack {
  display: block;
  max-width: 300px;
  margin: 0 auto var(--vxcx-spacing-lg);
  aspect-ratio: 1;
}

/* Buttons */
.btn-ic {
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--vxcx-spacing-md);
}

.uuuw {
  border: 1px solid var(--vxcx-color-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.uvvm {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--vxcx-spacing-md);
  background: #f9f9f9;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.uvvm:hover {
  background: #f0f5f0;
}

.uvvm[aria-expanded="true"] {
  background: var(--vxcx-color-primary);
  color: #fff;
}

.uvvm i {
  transition: transform 0.3s;
}

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

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

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

.faq-answer-inner {
  padding: var(--vxcx-spacing-md);
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

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

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: var(--vxcx-spacing-lg) 0;
}

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

.dose-table thead,
.data-table thead {
  background: var(--vxcx-color-primary);
  color: #fff;
}

.dose-table th,
.data-table th {
  padding: var(--vxcx-spacing-sm);
  text-align: left;
  font-weight: 600;
}

.dose-table td,
.data-table td {
  padding: var(--vxcx-spacing-sm);
  border-bottom: 1px solid var(--vxcx-color-border);
}

.dose-table tbody tr:hover,
.data-table tbody tr:hover {
  background: var(--vxcx-color-neutral-light);
}

.dose-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Timeline */
.timeline-v {
  position: relative;
  padding-left: var(--vxcx-spacing-xl);
}

.timeline-v::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--vxcx-color-border);
}

.tl-step {
  position: relative;
  margin-bottom: var(--vxcx-spacing-lg);
  padding-bottom: var(--vxcx-spacing-lg);
}

.tl-dot {
  position: absolute;
  left: -40px;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--vxcx-color-primary);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 0 3px var(--vxcx-color-neutral-light);
}

.tl-step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--vxcx-color-neutral-dark);
}

.tl-step p {
  font-size: 0.95rem;
  color: #666;
}

/* Split Block */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vxcx-spacing-xl);
  align-items: center;
  margin: var(--vxcx-spacing-lg) 0;
}

.split-reverse {
  direction: rtl;
}

.split-reverse > * {
  direction: ltr;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vxcx-spacing-xl);
  align-items: start;
}

.ucro {
  background: #fff;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--vxcx-spacing-lg);
}

.contact-info-item {
  display: flex;
  gap: var(--vxcx-spacing-md);
}

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

.contact-info-item div {
  font-size: 0.95rem;
  line-height: 1.7;
}

.map-container {
  margin: var(--vxcx-spacing-lg) 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* CTA Band */
.cta-band {
  text-align: center;
  padding: var(--vxcx-spacing-xl);
  background: linear-gradient(135deg, #f9faf7, #f0f5f0);
  border-radius: 8px;
  border: 1px solid var(--vxcx-color-border);
}

.cta-band h2 {
  font-family: var(--vxcx-font-display);
  font-size: 1.8rem;
  margin-bottom: var(--vxcx-spacing-sm);
}

.cta-band p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: var(--vxcx-spacing-lg);
}

/* Footer */
.site-footer {
  background: var(--vxcx-color-neutral-dark);
  color: #fff;
  padding: var(--vxcx-spacing-xl) 0 var(--vxcx-spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--vxcx-spacing-xl);
  margin-bottom: var(--vxcx-spacing-lg);
}

.footer-brand h3,
.footer-col h4 {
  font-family: var(--vxcx-font-display);
  margin-bottom: var(--vxcx-spacing-sm);
  font-size: 1.2rem;
}

.footer-brand p,
.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

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

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #ccc;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--vxcx-color-accent);
  text-decoration: underline;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--vxcx-spacing-lg);
  padding-bottom: var(--vxcx-spacing-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: #ccc;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  margin-bottom: var(--vxcx-spacing-md);
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Cookies */
.uelt {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: var(--vxcx-spacing-lg);
  z-index: 1000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--vxcx-spacing-lg);
  align-items: center;
}

.cookie-banner-text {
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--vxcx-color-accent);
  text-decoration: underline;
}

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

.uppb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.uviu {
  background: #fff;
  padding: var(--vxcx-spacing-lg);
  border-radius: 8px;
  max-width: 500px;
  color: var(--vxcx-color-neutral-dark);
  max-height: 90vh;
  overflow-y: auto;
}

.uviu h2 {
  font-family: var(--vxcx-font-display);
  font-size: 1.5rem;
  margin-bottom: var(--vxcx-spacing-md);
}

.uviu p {
  font-size: 0.95rem;
  margin-bottom: var(--vxcx-spacing-md);
  color: #666;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--vxcx-spacing-md);
  padding: var(--vxcx-spacing-md) 0;
  border-bottom: 1px solid var(--vxcx-color-border);
}

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

.cookie-toggle h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--vxcx-color-neutral-dark);
}

.cookie-toggle p {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

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

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

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

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: var(--vxcx-spacing-lg);
  padding-top: var(--vxcx-spacing-lg);
  border-top: 1px solid var(--vxcx-color-border);
}

/* Utility */
.notice {
  background: #f0f5f0;
  border-left: 4px solid var(--vxcx-color-primary);
  padding: var(--vxcx-spacing-md);
  border-radius: 4px;
  font-size: 0.95rem;
  color: #333;
  margin: var(--vxcx-spacing-lg) 0;
}

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: var(--vxcx-spacing-md) 0;
}

.spec-list li {
  font-size: 0.95rem;
  color: #666;
  padding-left: 1.5rem;
  position: relative;
}

.spec-list li:before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--vxcx-color-primary);
  font-weight: bold;
}

.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vxcx-spacing-sm);
  margin-top: var(--vxcx-spacing-lg);
}

.rating-large {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--vxcx-color-neutral-dark);
}

.rating-count {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: var(--vxcx-spacing-sm);
  }

  .ucft {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: var(--vxcx-spacing-sm);
  }

  .ucft.active {
    display: flex;
  }

  .utto {
    display: flex;
  }

  .hero-split2 {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .split-block {
    grid-template-columns: 1fr;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .btn {
    flex: 1;
  }

  .price-block {
    flex-wrap: wrap;
  }

  .section {
    padding: var(--vxcx-spacing-lg) 0;
  }

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

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

  .footer-legal-links {
    gap: 0.5rem;
  }

  .phone-row {
    grid-template-columns: 70px 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

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

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

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

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

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

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

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uelt{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}
.uelt.is-visible,.cookie-banner--visible,.uelt.show,.uelt.active{transform:none !important}
.uelt a{color:inherit;text-decoration:underline}
.uelt button{cursor:pointer}
.uppb{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}
.uppb.is-visible,.cookie-modal--visible,.uppb.show,.uppb.active{display:flex !important}
.uviu,.uppb>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uare .ujoz,.uare .ucsd,.uare .ugkc,.uare .uiwp,.ufcs .ujoz,.ufcs .ucsd,.ufcs .ugkc,.ufcs .uiwp{background:#fff !important;color:#1a1a1a !important}
.ujoz,.ucsd{color:#1a1a1a !important}
.ujoz label,.ucsd label,.ujoz p,.ucsd p,.ujoz .uidi,.ujoz span,.ucsd span,.unul,.ufvt,.ugkc .ubas,.ugkc .ubas *{color:#1a1a1a !important}
.unul,.ufvt{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ujoz .uotw{color:#1a1a1a !important}
.ujoz .uotw.is-sel{color:#fff !important}
.ufmo .ukgt{display:none}
.ufmo .ukgt.is-visible{display:block !important;color:#c0392b}
.ufmo .ufhf,.ufmo [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ufmo{color:#1a1a1a}
.uare .ufmo,.ufcs .ufmo{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uaqt{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uaqt img{width:100%;height:100%;object-fit:cover}
.upfi,.uqqo{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.upfi img,.uqqo img{width:100%;height:100%;object-fit:cover;display:block}
.upfi img{opacity:.28}
.uqqo img{opacity:.07}
*:has(> .upfi),*:has(> .uqqo){position:relative}
.uifl{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)}
.uifl .ugzd{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.uifl .umwh{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.ugqb{margin:1.4rem auto;max-width:920px}
.ugqb img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.umum{padding:3rem 0}
.uprh{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uprh img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uiwp{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.upot{display:flex;overflow:hidden;gap:0 !important}
.urdv{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uhgx{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}
.uklf{left:.5rem}.uexu{right:.5rem}
.ugkc .ubas{display:none}.ugkc .ubas.is-active{display:block}
.ujoz .uore{display:block !important}
.ujoz .unod{display:flex;flex-wrap:wrap;gap:.5rem}
.ujoz .uotw{cursor:pointer}
