:root {
  --vsmx-primary: #1f4e3d;
  --vsmx-accent: #c9a876;
  --vsmx-accent-light: #e8d5b7;
  --vsmx-bg-light: #f9f6f1;
  --vsmx-text: #2b2b2b;
  --vsmx-text-light: #666;
  --vsmx-border: #d9cfc0;
  --vsmx-success: #22c55e;
  --vsmx-error: #ef4444;
  --vsmx-warning: #f59e0b;
}

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

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--vsmx-text);
  background: #fff;
  overflow-x: hidden;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--vsmx-primary);
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover { opacity: 0.8; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

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

.disclosure-bar {
  background: var(--vsmx-primary);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem;
  text-align: center;
}

/* ===== HEADER ===== */
.unhh {
  background: #fff;
  border-bottom: 1px solid var(--vsmx-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.unhh .container {
  position: relative;
}

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

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vsmx-primary);
}

.uarm {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
}

.uarm span {
  width: 24px;
  height: 2px;
  background: var(--vsmx-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.ucrv {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ucrv a {
  font-size: 0.95rem;
  color: var(--vsmx-text);
  transition: color 0.2s;
}

.ucrv a:hover { color: var(--vsmx-primary); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.umxg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.12;
}

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

.hero h1,
.hero .hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--vsmx-primary);
  line-height: 1.2;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--vsmx-text-light);
  margin-bottom: 1.5rem;
}

/* ===== GRID LAYOUTS ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { }

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

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

.media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

/* ===== HERO ELEMENTS ===== */
.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vsmx-accent);
  margin-bottom: 0.5rem;
}

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

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

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.check-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--vsmx-accent-light);
  border-radius: 50%;
  color: var(--vsmx-primary);
  flex-shrink: 0;
}

.hero-rating {
  font-size: 0.95rem;
  color: var(--vsmx-text-light);
  margin-bottom: 1.5rem;
}

.stars {
  color: var(--vsmx-accent);
  font-size: 0.9em;
}

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

.price-old {
  font-size: 1.1rem;
  color: var(--vsmx-text-light);
  text-decoration: line-through;
}

.price-new {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--vsmx-primary);
}

.price-badge {
  background: var(--vsmx-error);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

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

.hero-note {
  font-size: 0.9rem;
  color: var(--vsmx-text-light);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: var(--vsmx-bg-light);
}

.unip .btn-outline,
.site-footer .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
}

.unip .btn-outline:hover,
.site-footer .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

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

.btn-block {
  width: 100%;
}

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

.section-alt { background: var(--vsmx-bg-light); }
.unip { background: var(--vsmx-primary); color: #fff; }

.unip a { color: var(--vsmx-accent-light); }

.unip a:hover {
  color: #fff;
  opacity: 1;
}

.unip .container > p,
.unip .return-details,
.unip .return-details li,
.unip .shelf-info,
.unip .contact-details,
.unip .contact-details p {
  color: rgba(255, 255, 255, 0.92);
}

.unip h3,
.unip .benefit-item h3,
.unip .step-card h3,
.unip .return-details h3,
.unip .ingredient-card h3 {
  color: #fff;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--vsmx-primary);
}

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

.section-lead {
  font-size: 1.1rem;
  color: var(--vsmx-text-light);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* ===== GRIDS ===== */
.benefit-grid,
.testimonial-grid,
.quality-grid,
.payment-grid,
.storage-grid,
.usage-grid,
.ingredient-details,
.info-grid,
.values-grid,
.benefits-summary,
.usage-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.trust-item {
  text-align: center;
  padding: 1.5rem;
}

.trust-item i {
  font-size: 2rem;
  color: var(--vsmx-accent);
  margin-bottom: 0.5rem;
}

.benefit-card {
  padding: 1.5rem;
  background: rgba(31, 78, 61, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--vsmx-accent);
}

.benefit-card i {
  font-size: 1.8rem;
  color: var(--vsmx-accent);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--vsmx-text-light);
}

/* ===== SHARED CARDS & BLOCKS ===== */
.value-card,
.usage-card,
.storage-card,
.ingredient-card,
.quality-item,
.payment-card,
.info-card,
.benefit-item {
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--vsmx-border);
}

.unip .value-card,
.unip .usage-card,
.unip .storage-card,
.unip .ingredient-card,
.unip .quality-item,
.unip .payment-card,
.unip .benefit-item {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.value-card i,
.storage-card i,
.quality-item i,
.payment-card i,
.benefit-item i {
  font-size: 1.8rem;
  color: var(--vsmx-accent);
  margin-bottom: 0.75rem;
}

.unip .value-card i,
.unip .storage-card i,
.unip .quality-item i,
.unip .payment-card i,
.unip .benefit-item i {
  color: var(--vsmx-accent-light);
}

.value-card h3,
.usage-card h3,
.storage-card h3,
.ingredient-card h3,
.quality-item h3,
.payment-card h3,
.info-card h3,
.benefit-item h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-card p,
.usage-card p,
.storage-card p,
.ingredient-card p,
.quality-item p,
.payment-card p,
.info-card p,
.benefit-item p {
  font-size: 0.95rem;
  color: var(--vsmx-text-light);
}

.unip .value-card p,
.unip .usage-card p,
.unip .storage-card p,
.unip .ingredient-card p,
.unip .quality-item p,
.unip .payment-card p,
.unip .benefit-item p {
  color: rgba(255, 255, 255, 0.9);
}

.ingredient-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.unip .ingredient-card h3 {
  color: #fff;
}

.ingredient-card h3 i {
  margin-bottom: 0;
}

.unip .ingredient-card p {
  color: rgba(255, 255, 255, 0.9);
}

.info-card {
  background: var(--vsmx-bg-light);
  border-left: 4px solid var(--vsmx-accent);
}

.unip .usage-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.unip .usage-card h3,
.unip .usage-card p {
  color: #fff;
}

.flow-step {
  padding: 1.5rem;
  background: var(--vsmx-bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--vsmx-primary);
}

.flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--vsmx-primary);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.flow-step h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-col {
  padding: 1.5rem;
  background: var(--vsmx-bg-light);
  border-radius: 8px;
}

.about-col h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--vsmx-primary);
}

.check-list,
.cross-list,
.source-list,
.instruction-list,
.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li,
.cross-list li,
.source-list li,
.instruction-list li,
.benefit-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--vsmx-text-light);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vsmx-success);
  font-weight: 700;
}

.cross-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--vsmx-error);
  font-weight: 700;
}

.source-list li::before {
  content: '•';
  position: absolute;
  left: 0.35rem;
  color: var(--vsmx-accent);
}

.instruction-list li,
.benefit-list li {
  padding-left: 0;
}

.info-callout,
.return-details,
.shelf-info,
.package-details,
.contact-details {
  padding: 1.5rem;
  background: var(--vsmx-bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--vsmx-accent);
}

.unip .contact-details,
.unip .return-details,
.unip .shelf-info {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--vsmx-accent-light);
}

.contact-details p,
.return-details p,
.shelf-info p,
.package-details p {
  margin-bottom: 0.75rem;
}

.contact-details p:last-child,
.return-details p:last-child,
.shelf-info p:last-child,
.package-details p:last-child {
  margin-bottom: 0;
}

.unip .contact-details,
.unip .return-details,
.unip .shelf-info {
  color: #fff;
}

.unip .contact-details a {
  color: var(--vsmx-accent-light);
}

.unip .return-details a {
  color: var(--vsmx-accent-light);
}

.cta-section {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-section h2 {
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: var(--vsmx-text-light);
  margin-bottom: 1.5rem;
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.order-trust {
  padding: 1.5rem;
  background: var(--vsmx-bg-light);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.order-trust p {
  margin-bottom: 0.5rem;
}

.order-trust p:last-child {
  margin-bottom: 0;
}

.rating-summary {
  font-size: 1.05rem;
  color: var(--vsmx-text-light);
  margin-top: 0.5rem;
}

.step-note,
.order-note,
.dose-note {
  font-size: 0.9rem;
  color: var(--vsmx-text-light);
  margin-top: 1rem;
}

.unip .step-note {
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--vsmx-primary);
}

.unip h2,
.unip .section h2 {
  color: #fff;
}

.section > .container > p {
  color: var(--vsmx-text-light);
  max-width: 72ch;
}

.unip > .container > p {
  color: rgba(255, 255, 255, 0.92);
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.5rem;
}

.section .container:has(> .dose-table) {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.error-hero {
  text-align: center;
  padding: 5rem 0;
}

.error-hero h1 {
  font-size: clamp(3rem, 12vw, 6rem);
  margin: 0;
}

.error-hero p:not(.hero-lead) {
  color: var(--vsmx-text-light);
  margin-bottom: 0.5rem;
}

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

.btn-ghost:hover {
  background: var(--vsmx-bg-light);
}

.ukrw {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  margin: 0;
}

.udba {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.uxbj {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

/* ===== TESTIMONIALS ===== */
.testimonial {
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--vsmx-border);
}

.testimonial-disclaimer {
  font-size: 0.85rem;
  color: var(--vsmx-text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial .stars {
  display: block;
  margin-bottom: 0.75rem;
}

.testimonial p {
  font-style: italic;
  margin: 1rem 0;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--vsmx-primary);
  font-size: 0.9rem;
}

/* ===== TABLES ===== */
.dose-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  min-width: 520px;
}

.dose-table th {
  background: var(--vsmx-bg-light);
  padding: 0.75rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--vsmx-border);
}

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

.return-details ul,
.info-callout ul {
  margin: 0.75rem 0 0 1.25rem;
}

.return-details li,
.info-callout li {
  margin-bottom: 0.5rem;
}

.form-group.form-checkbox .ubpy {
  flex-basis: 100%;
  padding-left: 2rem;
}

.dose-table th,
.dose-table td {
  word-break: break-word;
}

/* ===== FAQ ===== */
.ugls {
  margin-bottom: 1rem;
}

.upzk {
  width: 100%;
  padding: 1rem;
  background: var(--vsmx-bg-light);
  border-radius: 6px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--vsmx-primary);
}

.upzk:hover {
  background: var(--vsmx-accent-light);
}

.upzk i {
  font-size: 0.9rem;
  transition: transform 0.3s;
}

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

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

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

.faq-answer-inner {
  padding: 1rem;
  background: #fff;
  border-left: 4px solid var(--vsmx-accent);
}

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

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

.uzkv {
  background: var(--vsmx-bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.uzkv h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--vsmx-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.ueex {
  position: absolute;
  left: -9999px;
}

.ubpy {
  display: none;
  font-size: 0.85rem;
  color: var(--vsmx-error);
  margin-top: 0.3rem;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--vsmx-error);
}

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

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

.phone-row select {
  flex: 0 0 120px;
}

.phone-row input {
  flex: 1;
}

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

.form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.form-checkbox label {
  margin: 0;
  font-weight: 400;
  font-size: 0.95rem;
  cursor: pointer;
}

/* ===== COOKIE BANNER ===== */
.uhiv {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 1.5rem;
  z-index: 200;
  display: flex;
  justify-content: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

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

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

.uwep[aria-hidden="true"] {
  display: none;
}

.ucaw {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.ucaw h2 {
  margin-bottom: 1rem;
}

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

.cookie-toggle h4 {
  margin-bottom: 0.25rem;
}

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

.switch input {
  display: none;
}

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

.slider::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.3s;
}

.switch input:checked + .slider {
  background: var(--vsmx-success);
}

.switch input:checked + .slider::before {
  left: 24px;
}

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

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

.site-footer a {
  color: var(--vsmx-accent-light);
}

.site-footer a:hover {
  color: #fff;
  opacity: 1;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.footer-col h4 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-col a,
.footer-col p {
  font-size: 0.9rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.92);
}

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

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

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

.footer-legal-links {
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.footer-legal-links a {
  color: var(--vsmx-accent-light);
  margin: 0 0.5rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.85;
  text-align: center;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.8;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.step-card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
}

.section:not(.unip) .step-card {
  background: var(--vsmx-bg-light);
  border-color: var(--vsmx-border);
}

.section-alt:not(.unip) .step-card {
  background: #fff;
}

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

.step-card h3 {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step-card p {
  font-size: 0.95rem;
  opacity: 0.95;
}

.section:not(.unip) .step-card p {
  color: var(--vsmx-text-light);
  opacity: 1;
}

/* ===== LEGAL TEXT ===== */
.legal-text h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--vsmx-primary);
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-text ul, .legal-text ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
  color: var(--vsmx-text-light);
}

/* ===== PRODUCT PACK SVG ===== */
.product-pack {
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

/* ===== INTERACTIVE MODULES ===== */
.uddy, .uohd {
  background: var(--vsmx-bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.uamg {
  margin-bottom: 2rem;
}

.uekq {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--vsmx-primary);
}

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

.ufmd {
  padding: 0.75rem;
  background: #fff;
  border: 1px solid var(--vsmx-border);
  border-radius: 4px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.ufmd:hover {
  border-color: var(--vsmx-primary);
  background: rgba(31, 78, 61, 0.05);
}

.ufmd.active {
  background: var(--vsmx-primary);
  color: #fff;
  border-color: var(--vsmx-primary);
}

.uafu {
  padding: 1.5rem;
  background: rgba(34, 197, 94, 0.1);
  border-left: 4px solid var(--vsmx-success);
  border-radius: 4px;
  margin-top: 1.5rem;
}

.uafu[hidden] {
  display: none;
}

.uafu p {
  margin-bottom: 1rem;
}

/* ===== CONTACT ===== */
.uwgj {
  background: var(--vsmx-bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.uwgj .ubpy {
  display: none;
}

.uwgj .form-group.error .ubpy {
  display: block;
  color: var(--vsmx-error);
}

.contact-info-panel {
  padding: 2rem;
  background: var(--vsmx-primary);
  color: #fff;
  border-radius: 8px;
}

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

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

.contact-info-panel a {
  color: var(--vsmx-accent-light);
}

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

.map-container iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  height: clamp(280px, 50vw, 450px);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

.notice {
  background: var(--vsmx-warning);
  background: rgba(245, 158, 11, 0.1);
  padding: 1rem;
  border-left: 4px solid var(--vsmx-warning);
  border-radius: 4px;
  color: #1f4e3d;
}

.caution-box {
  background: var(--vsmx-warning);
  background: rgba(245, 158, 11, 0.15);
  padding: 1.5rem;
  border-radius: 6px;
  border-left: 4px solid var(--vsmx-warning);
}

.thank-you-card {
  text-align: center;
  padding: 2rem;
  background: var(--vsmx-bg-light);
  border-radius: 8px;
}

.thank-you-steps {
  text-align: left;
  list-style: none;
  counter-reset: step-counter;
  margin-top: 1.5rem;
}

.thank-you-steps li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  counter-increment: step-counter;
}

.thank-you-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--vsmx-accent);
  color: var(--vsmx-primary);
  font-weight: 700;
  border-radius: 50%;
}

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

  .trust-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout,
  .about-split,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .ucrv {
    gap: 1rem;
  }

  .ucrv a {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
    max-width: 320px;
    margin-inline: auto;
  }

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

  .hero-actions .btn,
  .cta-section .btn,
  .cta-links .btn,
  .cookie-banner-actions .btn,
  .cookie-modal-actions .btn,
  .udba .btn {
    width: 100%;
  }

  .uarm {
    display: flex;
  }

  .ucrv {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--vsmx-border);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    z-index: 10;
  }

  .ucrv.active {
    display: flex;
  }

  .ucrv .btn-sm {
    width: 100%;
    margin-top: 0.5rem;
  }

  .trust-band {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

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

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

  .section {
    padding: 2.5rem 0;
  }

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

  .step-card {
    text-align: center;
  }

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

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

  .upzk {
    font-size: 0.95rem;
    gap: 0.75rem;
  }

  .uddy,
  .uohd,
  .uwgj,
  .contact-info-panel,
  .uzkv {
    padding: 1.25rem;
  }

  .uddy .ufmd {
    width: 100%;
    text-align: left;
  }

  .cta-links {
    flex-direction: column;
  }

  .legal-text h2 {
    font-size: 1.15rem;
  }

  .map-container {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .disclosure-bar {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    line-height: 1.4;
  }

  .price-block {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .container {
    padding: 0 1rem;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 1rem;
  }

  .uhiv {
    padding: 1rem;
    left: 0.75rem;
    right: 0.75rem;
  }

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

  .footer-legal-links a {
    display: inline-block;
    margin: 0.25rem 0.35rem;
  }

  .cookie-toggle {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .cookie-modal-actions {
    flex-direction: column;
  }

  .thank-you-card {
    padding: 1.25rem;
  }

  .error-hero {
    padding: 3rem 0;
  }

  .ulue {
    padding: 1rem 2.5rem !important;
  }

  .uanh {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uhiv{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}
.uhiv.is-visible,.cookie-banner--visible,.uhiv.show,.uhiv.active{transform:none !important}
.uhiv a{color:inherit;text-decoration:underline}
.uhiv button{cursor:pointer}
.uwep{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}
.uwep.is-visible,.cookie-modal--visible,.uwep.show,.uwep.active{display:flex !important}
.ucaw,.uwep>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.unip .uddy,.unip .uirs,.unip .udce,.unip .umua,.udfm .uddy,.udfm .uirs,.udfm .udce,.udfm .umua{background:#fff !important;color:#1a1a1a !important}
.uddy,.uirs{color:#1a1a1a !important}
.uddy label,.uirs label,.uddy p,.uirs p,.uddy .uekq,.uddy span,.uirs span,.uhxh,.uuvm,.udce .uwry,.udce .uwry *{color:#1a1a1a !important}
.uhxh,.uuvm{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uddy .ufmd{color:#1a1a1a !important}
.uddy .ufmd.is-sel{color:#fff !important}
.uzkv .ubpy{display:none}
.uzkv .ubpy.is-visible{display:block !important;color:#c0392b}
.uzkv .ueex,.uzkv [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.uzkv{color:#1a1a1a}
.unip .uzkv,.udfm .uzkv{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.ucvn{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.ucvn img{width:100%;height:100%;object-fit:cover}
.umxg,.uwxm{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.umxg img,.uwxm img{width:100%;height:100%;object-fit:cover;display:block}
.umxg img{opacity:.28}
.uwxm img{opacity:.07}
*:has(> .umxg),*:has(> .uwxm){position:relative}
.ukgh{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)}
.ukgh .ujcp{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ukgh .umgl{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.ulze {
  margin: 0 0 1.5rem;
  max-width: 100%;
}
.ulze img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ulie{padding:3rem 0}
.uunc{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uunc img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.umua{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uxxl{display:flex;overflow:hidden;gap:0 !important}
.ulue{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.uanh{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}
.ursl{left:.5rem}.ukbw{right:.5rem}
.udce .uwry{display:none}.udce .uwry.is-active{display:block}
.uddy .uamg{display:block !important}
.uddy .uhvo{display:flex;flex-wrap:wrap;gap:.5rem}
.uddy .ufmd{cursor:pointer}
