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

:root {
  --vkkt-color-primary: #d4866b;
  --vkkt-color-primary-dark: #b8745c;
  --vkkt-color-primary-light: #e8a887;
  --vkkt-color-secondary: #8b6f47;
  --vkkt-color-text: #2a2a2a;
  --vkkt-color-text-light: #666;
  --vkkt-color-text-lighter: #999;
  --vkkt-color-bg: #f9f7f3;
  --vkkt-color-border: #e8e5e0;
  --vkkt-color-success: #4caf50;
  --vkkt-color-error: #f44336;
  --vkkt-color-warning: #ff9800;
  --vkkt-color-white: #ffffff;
  --vkkt-color-dark-bg: #1a1a1a;
  --vkkt-color-dark-secondary: #e8d5c4;
  --vkkt-space-sm: 0.5rem;
  --vkkt-space-md: 1rem;
  --vkkt-space-lg: 1.5rem;
  --vkkt-space-xl: 2rem;
  --vkkt-space-xxl: 3rem;
  --vkkt-font-family: 'Archivo', 'Inter', sans-serif;
  --vkkt-font-display: 'Archivo', sans-serif;
  --vkkt-radius-sm: 0.375rem;
  --vkkt-radius-md: 0.5rem;
  --vkkt-radius-lg: 1rem;
  --vkkt-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --vkkt-shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --vkkt-shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
  --vkkt-transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--vkkt-font-family);
  color: var(--vkkt-color-text);
  background-color: var(--vkkt-color-white);
  line-height: 1.6;
  font-size: 1rem;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--vkkt-space-lg); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vkkt-font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--vkkt-space-md);
  color: var(--vkkt-color-text);
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; margin-top: var(--vkkt-space-xxl); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: var(--vkkt-space-md); }

a { color: var(--vkkt-color-primary); text-decoration: none; transition: var(--vkkt-transition); }
a:hover { color: var(--vkkt-color-primary-dark); text-decoration: underline; }

.disclosure-bar {
  background: var(--vkkt-color-dark-bg);
  color: var(--vkkt-color-dark-secondary);
  padding: var(--vkkt-space-sm) var(--vkkt-space-md);
  text-align: center;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(232, 213, 196, 0.2);
}

.uxeb {
  background: var(--vkkt-color-white);
  border-bottom: 1px solid var(--vkkt-color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--vkkt-shadow-sm);
}

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

.logo {
  font-family: var(--vkkt-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vkkt-color-secondary);
}

.uxvs { display: none; flex-direction: column; gap: 0.25rem; background: none; border: none; cursor: pointer; }
.uxvs span { width: 24px; height: 3px; background: var(--vkkt-color-text); border-radius: 2px; transition: var(--vkkt-transition); }

.upmv {
  display: flex;
  gap: var(--vkkt-space-lg);
  align-items: center;
  margin-left: auto;
}

.upmv a {
  font-size: 0.95rem;
  color: var(--vkkt-color-text-light);
  font-weight: 500;
}

.upmv a:hover { color: var(--vkkt-color-primary); }

.btn {
  display: inline-block;
  padding: var(--vkkt-space-md) var(--vkkt-space-lg);
  border-radius: var(--vkkt-radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--vkkt-transition);
  text-align: center;
  white-space: nowrap;
  font-family: var(--vkkt-font-family);
}

.btn-primary {
  background: var(--vkkt-color-primary);
  color: var(--vkkt-color-white);
  box-shadow: var(--vkkt-shadow-sm);
}

.btn-primary:hover { background: var(--vkkt-color-primary-dark); box-shadow: var(--vkkt-shadow-md); }

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

.btn-outline:hover { background: var(--vkkt-color-primary); color: var(--vkkt-color-white); }

.btn-sm { padding: var(--vkkt-space-sm) var(--vkkt-space-md); font-size: 0.875rem; }
.btn-block { width: 100%; }
.btn-lg { padding: var(--vkkt-space-lg) var(--vkkt-space-xxl); font-size: 1.1rem; }

.hero {
  position: relative;
  padding: 4rem var(--vkkt-space-lg);
  background: linear-gradient(135deg, #f9f7f3 0%, #f5f0e8 100%);
  overflow: hidden;
}

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

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vkkt-space-xxl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {}

.hero-eyebrow {
  display: inline-block;
  color: var(--vkkt-color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--vkkt-space-md);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--vkkt-space-lg);
  color: var(--vkkt-color-text);
}

.hero-title .hl { color: var(--vkkt-color-primary); }

.checklist {
  list-style: none;
  margin-bottom: var(--vkkt-space-lg);
}

.checklist li {
  display: flex;
  align-items: center;
  gap: var(--vkkt-space-md);
  margin-bottom: var(--vkkt-space-md);
}

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

.hero-rating {
  margin-bottom: var(--vkkt-space-lg);
  font-weight: 600;
}

.stars { color: #ffc107; margin-right: 0.5rem; }

.price-block {
  margin-bottom: var(--vkkt-space-lg);
  display: flex;
  align-items: center;
  gap: var(--vkkt-space-md);
}

.price-old { text-decoration: line-through; color: var(--vkkt-color-text-lighter); font-size: 1.1rem; }
.price-new { font-size: 2rem; font-weight: 700; color: var(--vkkt-color-primary); }
.price-badge { background: var(--vkkt-color-primary-light); color: var(--vkkt-color-white); padding: 0.25rem 0.75rem; border-radius: var(--vkkt-radius-md); font-size: 0.85rem; font-weight: 600; }

.hero-actions {
  display: flex;
  gap: var(--vkkt-space-md);
  margin-bottom: var(--vkkt-space-lg);
}

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

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

.media { display: flex; align-items: center; justify-content: center; }
.media img { max-width: 100%; height: auto; border-radius: var(--vkkt-radius-lg); }
.media-1x1 { aspect-ratio: 1; }
.media-3x4 { aspect-ratio: 3/4; }
.media-4x3 { aspect-ratio: 4/3; }

.section {
  padding: var(--vkkt-space-xxl) var(--vkkt-space-lg);
}

.section-alt { background: var(--vkkt-color-bg); }
.uwqf { background: #faf8f4; }
.unfx { background: var(--vkkt-color-dark-bg); color: var(--vkkt-color-white); }

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

.section-lead {
  text-align: center;
  color: var(--vkkt-color-text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto var(--vkkt-space-xxl);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--vkkt-space-lg);
  margin-bottom: var(--vkkt-space-xl);
}

.benefit-card {
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-lg);
  border-radius: var(--vkkt-radius-lg);
  text-align: center;
  box-shadow: var(--vkkt-shadow-sm);
  transition: var(--vkkt-transition);
}

.benefit-card:hover { box-shadow: var(--vkkt-shadow-md); transform: translateY(-4px); }
.benefit-card i { font-size: 2.5rem; color: var(--vkkt-color-primary); margin-bottom: var(--vkkt-space-md); }

.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--vkkt-space-lg);
  margin-bottom: var(--vkkt-space-xl);
}

.step-card {
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-lg);
  border-radius: var(--vkkt-radius-lg);
  box-shadow: var(--vkkt-shadow-sm);
  border-left: 4px solid var(--vkkt-color-primary);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--vkkt-color-primary);
  color: var(--vkkt-color-white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: var(--vkkt-space-md);
}

.order-summary { text-align: center; color: var(--vkkt-color-text-light); font-size: 0.95rem; }

.trust-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--vkkt-space-lg);
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-xxl);
  border-radius: var(--vkkt-radius-lg);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--vkkt-space-md);
}

.trust-item i { font-size: 2.5rem; color: var(--vkkt-color-primary); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--vkkt-space-lg);
}

.testimonial {
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-lg);
  border-radius: var(--vkkt-radius-lg);
  border: 1px solid var(--vkkt-color-border);
  box-shadow: var(--vkkt-shadow-sm);
}

.testimonial-disclaimer { text-align: center; color: var(--vkkt-color-text-light); font-size: 0.9rem; margin-bottom: var(--vkkt-space-lg); }

.testimonial p { margin-bottom: var(--vkkt-space-md); }

.testimonial cite { display: block; font-style: italic; color: var(--vkkt-color-text-lighter); margin-top: var(--vkkt-space-md); }

.udrg { background: var(--vkkt-color-white); border-radius: var(--vkkt-radius-lg); padding: var(--vkkt-space-lg); }

.lf-tablist {
  display: flex;
  gap: var(--vkkt-space-sm);
  border-bottom: 2px solid var(--vkkt-color-border);
  margin-bottom: var(--vkkt-space-lg);
}

.uqvc {
  background: none;
  border: none;
  padding: var(--vkkt-space-md) var(--vkkt-space-lg);
  font-weight: 600;
  color: var(--vkkt-color-text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: var(--vkkt-transition);
}

.uqvc.is-active { color: var(--vkkt-color-primary); border-bottom-color: var(--vkkt-color-primary); }

.uurw { display: none; }
.uurw.is-active { display: block; }

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vkkt-space-xxl);
  align-items: start;
}

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

.product-pack {
  max-width: 400px;
  margin: 0 auto var(--vkkt-space-lg);
}

.order-summary-box {
  background: var(--vkkt-color-bg);
  padding: var(--vkkt-space-lg);
  border-radius: var(--vkkt-radius-lg);
}

.order-summary-box p { margin-bottom: var(--vkkt-space-md); }

.ujyi {
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-xl);
  border-radius: var(--vkkt-radius-lg);
  box-shadow: var(--vkkt-shadow-md);
}

.ujyi h3 { margin-bottom: var(--vkkt-space-lg); }

.form-group {
  margin-bottom: var(--vkkt-space-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--vkkt-space-sm);
  color: var(--vkkt-color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--vkkt-space-md);
  border: 1px solid var(--vkkt-color-border);
  border-radius: var(--vkkt-radius-md);
  font-family: var(--vkkt-font-family);
  font-size: 1rem;
  transition: var(--vkkt-transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--vkkt-color-primary);
  box-shadow: 0 0 0 3px rgba(212, 134, 107, 0.1);
}

.phone-row {
  display: flex;
  gap: var(--vkkt-space-sm);
}

.phone-row select { flex: 0 0 100px; }
.phone-row input { flex: 1; }

.form-checkbox {
  display: flex;
  gap: var(--vkkt-space-md);
  align-items: flex-start;
}

.form-checkbox input { margin-top: 0.25rem; flex-shrink: 0; width: auto; }
.form-checkbox label { margin-bottom: 0; }

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

.umcd { display: none; }

.order-note {
  text-align: center;
  color: var(--vkkt-color-text-light);
  font-size: 0.9rem;
  margin-top: var(--vkkt-space-lg);
}

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

.ueko { margin-bottom: var(--vkkt-space-lg); }

.uxou {
  background: var(--vkkt-color-bg);
  width: 100%;
  padding: var(--vkkt-space-lg);
  border: none;
  border-radius: var(--vkkt-radius-md);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: var(--vkkt-transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uxou:hover { background: #f0e8df; }

.uunf { display: none; overflow: hidden; }

.ueko.is-open .uxou {
  background: var(--vkkt-color-primary);
  color: var(--vkkt-color-white);
}

.ueko.is-open .uunf { display: block; }

.faq-answer-inner {
  padding: var(--vkkt-space-lg);
  background: var(--vkkt-color-white);
  border: 1px solid var(--vkkt-color-border);
  border-top: none;
  border-radius: 0 0 var(--vkkt-radius-md) var(--vkkt-radius-md);
}

.faq-answer-inner p { margin-bottom: var(--vkkt-space-md); }
.faq-answer-inner a { color: var(--vkkt-color-primary); }

.table-wrap { overflow-x: auto; margin-bottom: var(--vkkt-space-xl); }

.dose-table, .delivery-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--vkkt-color-white);
  box-shadow: var(--vkkt-shadow-sm);
  border-radius: var(--vkkt-radius-lg);
  overflow: hidden;
}

.dose-table thead, .delivery-table thead {
  background: var(--vkkt-color-primary);
  color: var(--vkkt-color-white);
}

.dose-table th, .delivery-table th {
  padding: var(--vkkt-space-lg);
  text-align: left;
  font-weight: 600;
}

.dose-table td, .delivery-table td {
  padding: var(--vkkt-space-lg);
  border-bottom: 1px solid var(--vkkt-color-border);
}

.dose-table tbody tr:hover, .delivery-table tbody tr:hover { background: var(--vkkt-color-bg); }

.dose-note { text-align: center; color: var(--vkkt-color-text-light); font-size: 0.9rem; }

.ingredient-spotlight {
  display: flex;
  flex-direction: column;
  gap: var(--vkkt-space-xxl);
  margin-bottom: var(--vkkt-space-xl);
}

.spotlight-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vkkt-space-xl);
  align-items: center;
}

.spotlight-reverse { direction: rtl; }
.spotlight-reverse > * { direction: ltr; }

.spotlight-text {}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--vkkt-space-lg);
}

.quality-item {
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-lg);
  border-radius: var(--vkkt-radius-lg);
  text-align: center;
  box-shadow: var(--vkkt-shadow-sm);
}

.quality-item i { font-size: 2rem; color: var(--vkkt-color-primary); margin-bottom: var(--vkkt-space-md); }

.choice-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--vkkt-space-lg);
}

.reason-item {
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-lg);
  border-radius: var(--vkkt-radius-lg);
  border-left: 4px solid var(--vkkt-color-primary);
}

.reason-item i { color: var(--vkkt-color-primary); margin-right: 0.5rem; }

.instruction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--vkkt-space-lg);
  margin-bottom: var(--vkkt-space-xl);
}

.instruction-card {
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-lg);
  border-radius: var(--vkkt-radius-lg);
  text-align: center;
  box-shadow: var(--vkkt-shadow-sm);
}

.instruction-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--vkkt-color-primary);
  color: var(--vkkt-color-white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0 auto var(--vkkt-space-lg);
}

.timeline-v {
  position: relative;
  max-width: 600px;
  margin: 0 auto var(--vkkt-space-xl);
  padding-left: var(--vkkt-space-xl);
}

.timeline-v::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--vkkt-color-primary);
}

.tl-step {
  display: flex;
  gap: var(--vkkt-space-lg);
  margin-bottom: var(--vkkt-space-xl);
  position: relative;
}

.tl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--vkkt-color-primary);
  color: var(--vkkt-color-white);
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.85rem;
  position: absolute;
  left: -62px;
  white-space: nowrap;
  flex-shrink: 0;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--vkkt-space-lg);
}

.note-item {
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-lg);
  border-radius: var(--vkkt-radius-lg);
  border: 1px solid var(--vkkt-color-border);
}

.order-options {
  margin-left: var(--vkkt-space-xl);
  list-style: disc;
}

.order-options li { margin-bottom: var(--vkkt-space-sm); }

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

.delivery-item {
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-lg);
  border-radius: var(--vkkt-radius-lg);
  text-align: center;
  box-shadow: var(--vkkt-shadow-sm);
}

.delivery-item i { font-size: 2.5rem; color: var(--vkkt-color-primary); margin-bottom: var(--vkkt-space-md); }

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--vkkt-space-lg);
  margin-bottom: var(--vkkt-space-xl);
}

.method-item {
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-lg);
  border-radius: var(--vkkt-radius-lg);
  text-align: center;
  box-shadow: var(--vkkt-shadow-sm);
}

.method-item i { font-size: 2rem; color: var(--vkkt-color-primary); margin-bottom: var(--vkkt-space-md); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--vkkt-space-lg);
  margin-bottom: var(--vkkt-space-xl);
}

.value-card {
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-lg);
  border-radius: var(--vkkt-radius-lg);
  text-align: center;
  box-shadow: var(--vkkt-shadow-sm);
}

.value-card i { font-size: 2.5rem; color: var(--vkkt-color-primary); margin-bottom: var(--vkkt-space-md); }

.not-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto var(--vkkt-space-xl);
}

.not-list li {
  padding: var(--vkkt-space-md);
  margin-bottom: var(--vkkt-space-md);
  background: var(--vkkt-color-bg);
  border-radius: var(--vkkt-radius-md);
}

.commitment-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto var(--vkkt-space-xl);
}

.commitment-list li {
  padding: var(--vkkt-space-md) 0;
  border-bottom: 1px solid var(--vkkt-color-border);
}

.commitment-list li:last-child { border-bottom: none; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vkkt-space-xxl);
}

.usfl {
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-xl);
  border-radius: var(--vkkt-radius-lg);
  box-shadow: var(--vkkt-shadow-md);
}

.usfl h2 { margin-top: 0; }

.contact-info-panel {
  background: var(--vkkt-color-bg);
  padding: var(--vkkt-space-xl);
  border-radius: var(--vkkt-radius-lg);
}

.contact-info-item {
  display: flex;
  gap: var(--vkkt-space-lg);
  margin-bottom: var(--vkkt-space-xl);
}

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

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

.map-container {
  width: 100%;
  height: 450px;
  border-radius: var(--vkkt-radius-lg);
  overflow: hidden;
  box-shadow: var(--vkkt-shadow-md);
}

.map-container iframe { display: block; width: 100%; height: 100%; }

.cta-section { text-align: center; padding: var(--vkkt-space-xxl) 0; }

.error-section, .thank-you-section {
  text-align: center;
  padding: 4rem var(--vkkt-space-lg);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.error-section h1, .thank-you-section h1 { font-size: 2.5rem; margin-bottom: var(--vkkt-space-lg); }

.error-message, .thank-you-message {
  font-size: 1.1rem;
  color: var(--vkkt-color-text-light);
  margin-bottom: var(--vkkt-space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-detail { color: var(--vkkt-color-text-light); margin-bottom: var(--vkkt-space-md); }

.legal-content {
  padding: 3rem var(--vkkt-space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 { font-size: 2.5rem; margin-bottom: var(--vkkt-space-lg); }

.legal-content h2 { margin-top: var(--vkkt-space-xl); margin-bottom: var(--vkkt-space-md); }

.legal-content ul, .legal-content ol {
  margin-left: var(--vkkt-space-lg);
  margin-bottom: var(--vkkt-space-lg);
}

.legal-content li { margin-bottom: var(--vkkt-space-sm); }

.last-updated {
  color: var(--vkkt-color-text-light);
  font-size: 0.9rem;
  margin-bottom: var(--vkkt-space-lg);
}

.site-footer {
  background: var(--vkkt-color-dark-bg);
  color: var(--vkkt-color-dark-secondary);
  padding: var(--vkkt-space-xxl) var(--vkkt-space-lg);
  margin-top: var(--vkkt-space-xxl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--vkkt-space-xl);
  margin-bottom: var(--vkkt-space-xl);
}

.footer-brand h4, .footer-col h4 {
  color: var(--vkkt-color-white);
  margin-bottom: var(--vkkt-space-md);
}

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

.footer-col a {
  color: var(--vkkt-color-dark-secondary);
  text-decoration: none;
  transition: var(--vkkt-transition);
}

.footer-col a:hover { color: var(--vkkt-color-primary); }

.footer-col li { margin-bottom: var(--vkkt-space-sm); }

.footer-legal-links {
  display: flex;
  gap: var(--vkkt-space-lg);
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: var(--vkkt-space-xl);
  border-bottom: 1px solid rgba(232, 213, 196, 0.2);
  margin-bottom: var(--vkkt-space-xl);
}

.footer-legal-links a { color: var(--vkkt-color-dark-secondary); }
.footer-legal-links a:hover { color: var(--vkkt-color-primary); }

.footer-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(232, 213, 196, 0.7);
  margin-bottom: var(--vkkt-space-lg);
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(232, 213, 196, 0.6);
}

.footer-bottom span { display: inline-block; margin: 0 var(--vkkt-space-md); }

.umkt {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vkkt-color-dark-bg);
  color: var(--vkkt-color-dark-secondary);
  padding: var(--vkkt-space-lg);
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-banner-text {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner-text a { color: var(--vkkt-color-primary); }

.cookie-banner-actions {
  display: flex;
  gap: var(--vkkt-space-md);
}

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

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

.umap {
  background: var(--vkkt-color-white);
  padding: var(--vkkt-space-xl);
  border-radius: var(--vkkt-radius-lg);
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--vkkt-shadow-lg);
}

.umap h2 { margin-top: 0; margin-bottom: var(--vkkt-space-lg); }

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--vkkt-space-lg);
  padding-bottom: var(--vkkt-space-lg);
  border-bottom: 1px solid var(--vkkt-color-border);
}

.cookie-toggle h4 { margin: 0 0 var(--vkkt-space-sm); }

.cookie-toggle p { margin: 0; font-size: 0.9rem; color: var(--vkkt-color-text-light); }

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

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--vkkt-color-border);
  transition: var(--vkkt-transition);
  border-radius: 24px;
}

.slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: var(--vkkt-transition);
  border-radius: 50%;
}

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

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

.cookie-modal-actions {
  display: flex;
  gap: var(--vkkt-space-md);
  margin-top: var(--vkkt-space-lg);
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .uxvs { display: flex; }
  .upmv { display: none; }

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

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

  .hero-visual { order: -1; }

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

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

  .spotlight-item {
    grid-template-columns: 1fr;
  }

  .spotlight-reverse { direction: ltr; }

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

  .cookie-banner-actions {
    flex-wrap: wrap;
  }

  .tl-dot {
    position: static;
    margin-bottom: var(--vkkt-space-md);
  }

  .timeline-v {
    padding-left: var(--vkkt-space-md);
  }

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

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

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.umkt{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}
.umkt.is-visible,.cookie-banner--visible,.umkt.show,.umkt.active{transform:none !important}
.umkt a{color:inherit;text-decoration:underline}
.umkt button{cursor:pointer}
.urfl{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}
.urfl.is-visible,.cookie-modal--visible,.urfl.show,.urfl.active{display:flex !important}
.umap,.urfl>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.unfx .utwy,.unfx .uhfe,.unfx .udrg,.unfx .ucjz,.uwqf .utwy,.uwqf .uhfe,.uwqf .udrg,.uwqf .ucjz{background:#fff !important;color:#1a1a1a !important}
.utwy,.uhfe{color:#1a1a1a !important}
.utwy label,.uhfe label,.utwy p,.uhfe p,.utwy .ujit,.utwy span,.uhfe span,.uzwv,.urdg,.udrg .uurw,.udrg .uurw *{color:#1a1a1a !important}
.uzwv,.urdg{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.utwy .uzwg{color:#1a1a1a !important}
.utwy .uzwg.is-sel{color:#fff !important}
.ujyi .udnh{display:none}
.ujyi .udnh.is-visible{display:block !important;color:#c0392b}
.ujyi .umcd,.ujyi [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ujyi{color:#1a1a1a}
.unfx .ujyi,.uwqf .ujyi{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uaoq{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uaoq img{width:100%;height:100%;object-fit:cover}
.ukon,.urva{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.ukon img,.urva img{width:100%;height:100%;object-fit:cover;display:block}
.ukon img{opacity:.28}
.urva img{opacity:.07}
*:has(> .ukon),*:has(> .urva){position:relative}
.umaw{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)}
.umaw .uxsk{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.umaw .uncn{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.ulse{margin:1.4rem auto;max-width:920px}
.ulse img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.ueio{padding:3rem 0}
.uvcc{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.uvcc img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.ucjz{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uslw{display:flex;overflow:hidden;gap:0 !important}
.ucxr{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ukym{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}
.ufqx{left:.5rem}.uqaz{right:.5rem}
.udrg .uurw{display:none}.udrg .uurw.is-active{display:block}
.utwy .utmy{display:block !important}
.utwy .uxpm{display:flex;flex-wrap:wrap;gap:.5rem}
.utwy .uzwg{cursor:pointer}
