:root {
  --vqyy-color-primary: #1e3a5f;
  --vqyy-color-primary-light: #3b82f6;
  --vqyy-color-primary-dark: #0f172a;
  --vqyy-color-secondary: #64748b;
  --vqyy-color-accent: #06b6d4;
  --vqyy-color-success: #10b981;
  --vqyy-color-warning: #f59e0b;
  --vqyy-color-error: #ef4444;
  --vqyy-color-bg: #ffffff;
  --vqyy-color-bg-alt: #f8fafc;
  --vqyy-color-border: #e2e8f0;
  --vqyy-color-text: #1e293b;
  --vqyy-color-text-light: #64748b;
  --vqyy-font-display: "Plus Jakarta Sans", sans-serif;
  --vqyy-font-body: "Sora", sans-serif;
  --vqyy-spacing-xs: 0.5rem;
  --vqyy-spacing-sm: 1rem;
  --vqyy-spacing-md: 1.5rem;
  --vqyy-spacing-lg: 2rem;
  --vqyy-spacing-xl: 3rem;
  --vqyy-spacing-2xl: 4rem;
  --vqyy-radius-sm: 0.375rem;
  --vqyy-radius-md: 0.5rem;
  --vqyy-radius-lg: 1rem;
  --vqyy-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --vqyy-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --vqyy-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--vqyy-font-body);
  background-color: var(--vqyy-color-bg);
  color: var(--vqyy-color-text);
  line-height: 1.6;
}

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

/* HEADER */
.disclosure-bar {
  background: #fef3c7;
  color: #92400e;
  padding: var(--vqyy-spacing-xs) 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
}

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

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

.logo {
  font-family: var(--vqyy-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vqyy-color-primary);
  text-decoration: none;
}

.ukpv {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 0.4rem;
  padding: var(--vqyy-spacing-xs);
}

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

.ukpv[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.ukpv[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.ukpv[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.uvpc {
  display: flex;
  gap: var(--vqyy-spacing-lg);
  align-items: center;
}

.uvpc a {
  color: var(--vqyy-color-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.uvpc a:hover {
  color: var(--vqyy-color-primary);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: var(--vqyy-radius-lg);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--vqyy-font-display);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--vqyy-color-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--vqyy-color-primary-dark);
  transform: translateY(-2px);
}

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

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

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

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

.btn-block {
  width: 100%;
}

/* SECTIONS */
.section {
  padding: var(--vqyy-spacing-2xl) 0;
  background: var(--vqyy-color-bg);
}

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

.uukm {
  background: var(--vqyy-color-primary);
  color: white;
}

.uukm .section-title,
.uukm h2,
.uukm h3,
.uukm h4 {
  color: white;
}

.section-title {
  font-family: var(--vqyy-font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--vqyy-spacing-lg);
  color: var(--vqyy-color-primary);
}

.section-eyebrow {
  display: inline-block;
  color: var(--vqyy-color-primary-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--vqyy-spacing-sm);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--vqyy-color-text-light);
  margin-bottom: var(--vqyy-spacing-lg);
}

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

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

.uvoi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.hero-visual {
  order: -1;
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--vqyy-radius-lg);
}

.media {
  position: relative;
  width: 100%;
  padding-bottom: 133.33%;
  overflow: hidden;
  border-radius: var(--vqyy-radius-lg);
}

.media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-3x4 {
  padding-bottom: 133.33%;
}

.media-1x1 {
  padding-bottom: 100%;
}

.media-21x9 {
  padding-bottom: 42.86%;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--vqyy-spacing-2xl);
  border-radius: var(--vqyy-radius-lg);
  color: var(--vqyy-color-text);
}

.hero-eyebrow {
  display: inline-block;
  color: var(--vqyy-color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--vqyy-spacing-md);
}

.hero-title {
  font-family: var(--vqyy-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: var(--vqyy-spacing-lg);
  color: var(--vqyy-color-primary);
}

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

.stars {
  color: #fbbf24;
  letter-spacing: 0.1em;
}

.checklist {
  list-style: none;
  margin-bottom: var(--vqyy-spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--vqyy-spacing-md);
}

.checklist li {
  display: flex;
  gap: var(--vqyy-spacing-md);
  align-items: flex-start;
}

.check-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--vqyy-color-success);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.check-ic i {
  font-size: 1.2rem;
}

.price-block {
  margin-bottom: var(--vqyy-spacing-lg);
  display: flex;
  gap: var(--vqyy-spacing-md);
  align-items: baseline;
}

.price-old {
  color: #9ca3af;
  font-size: 0.95rem;
  text-decoration: line-through;
}

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

.price-badge {
  background: var(--vqyy-color-error);
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: var(--vqyy-radius-md);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: var(--vqyy-spacing-md);
  margin-bottom: var(--vqyy-spacing-lg);
  flex-wrap: wrap;
}

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

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

.benefit-card {
  padding: var(--vqyy-spacing-lg);
  border-radius: var(--vqyy-radius-lg);
  background: var(--vqyy-color-bg-alt);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: var(--vqyy-color-border);
  transform: translateY(-4px);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--vqyy-color-primary);
  margin-bottom: var(--vqyy-spacing-md);
}

.benefit-card h3 {
  font-family: var(--vqyy-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--vqyy-spacing-sm);
  color: var(--vqyy-color-primary);
}

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

/* STATS */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--vqyy-spacing-lg);
  text-align: center;
  margin-bottom: var(--vqyy-spacing-lg);
}

.stat-item {
  padding: var(--vqyy-spacing-lg) 0;
}

.stat-value {
  font-family: var(--vqyy-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vqyy-color-accent);
  margin-bottom: var(--vqyy-spacing-sm);
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.stat-disclaimer {
  font-size: 0.85rem;
  opacity: 0.8;
  text-align: center;
}

/* TABLES */
.dose-table-wrap {
  overflow-x: auto;
  border-radius: var(--vqyy-radius-lg);
  box-shadow: var(--vqyy-shadow-md);
  margin-bottom: var(--vqyy-spacing-lg);
}

.dose-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--vqyy-color-bg);
}

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

.dose-table th {
  padding: var(--vqyy-spacing-md);
  text-align: left;
  font-weight: 700;
  font-family: var(--vqyy-font-display);
}

.dose-table td {
  padding: var(--vqyy-spacing-md);
  border-bottom: 1px solid var(--vqyy-color-border);
}

.dose-table tbody tr:nth-child(even) {
  background: var(--vqyy-color-bg-alt);
}

.dose-table tbody tr:hover {
  background: #e0e7ff;
}

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

/* STEPS */
.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--vqyy-spacing-lg);
  margin-bottom: var(--vqyy-spacing-lg);
}

.step-card {
  text-align: center;
  padding: var(--vqyy-spacing-lg);
}

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

.step-card h3 {
  font-family: var(--vqyy-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--vqyy-spacing-sm);
  color: var(--vqyy-color-primary);
}

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

.order-detail-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--vqyy-color-text-light);
  margin-top: var(--vqyy-spacing-md);
}

/* TRUST BAND */
.trust-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--vqyy-spacing-lg);
  text-align: center;
}

.trust-item {
  padding: var(--vqyy-spacing-lg) var(--vqyy-spacing-md);
}

.trust-item i {
  font-size: 2rem;
  margin-bottom: var(--vqyy-spacing-md);
}

.trust-item h4 {
  font-family: var(--vqyy-font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--vqyy-spacing-sm);
}

.trust-item p {
  font-size: 0.85rem;
  opacity: 0.9;
}

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

.testimonial {
  background: var(--vqyy-color-bg-alt);
  padding: var(--vqyy-spacing-lg);
  border-radius: var(--vqyy-radius-lg);
  border-left: 4px solid var(--vqyy-color-primary);
}

.testimonial-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--vqyy-color-text-light);
  margin-bottom: var(--vqyy-spacing-lg);
  padding: var(--vqyy-spacing-lg);
  background: #fef3c7;
  border-radius: var(--vqyy-radius-lg);
}

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

.testimonial p {
  margin-bottom: var(--vqyy-spacing-md);
  font-size: 0.95rem;
  color: var(--vqyy-color-text);
}

.testimonial cite {
  font-size: 0.85rem;
  color: var(--vqyy-color-text-light);
  font-style: italic;
}

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

.ulwc {
  border: 1px solid var(--vqyy-color-border);
  border-radius: var(--vqyy-radius-lg);
  overflow: hidden;
}

.uvna {
  width: 100%;
  padding: var(--vqyy-spacing-lg);
  background: var(--vqyy-color-bg-alt);
  border: none;
  font-family: var(--vqyy-font-display);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--vqyy-color-primary);
  transition: all 0.3s ease;
}

.uvna:hover {
  background: var(--vqyy-color-border);
}

.uvna[aria-expanded="true"] {
  background: var(--vqyy-color-primary);
  color: white;
}

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

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

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

.uvna[aria-expanded="true"] + .uffc {
  max-height: 1000px;
}

.faq-answer-inner {
  padding: var(--vqyy-spacing-lg);
  background: var(--vqyy-color-bg);
  color: var(--vqyy-color-text);
}

.faq-answer-inner p {
  margin-bottom: var(--vqyy-spacing-md);
}

.faq-answer-inner ul {
  margin-left: var(--vqyy-spacing-lg);
  margin-bottom: var(--vqyy-spacing-md);
}

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

.faq-answer-inner a {
  color: var(--vqyy-color-primary);
  text-decoration: underline;
}

/* CONTACT & ORDER FORM */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vqyy-spacing-2xl);
}

.ulsi,
.utok {
  background: var(--vqyy-color-bg-alt);
  padding: var(--vqyy-spacing-2xl);
  border-radius: var(--vqyy-radius-lg);
  border: 1px solid var(--vqyy-color-border);
}

.utok {
  background: white;
}

.ulsi h2,
.utok h3 {
  font-family: var(--vqyy-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--vqyy-spacing-lg);
  color: var(--vqyy-color-primary);
}

.form-group {
  margin-bottom: var(--vqyy-spacing-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--vqyy-spacing-sm);
  color: var(--vqyy-color-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem var(--vqyy-spacing-md);
  border: 1px solid var(--vqyy-color-border);
  border-radius: var(--vqyy-radius-md);
  font-family: var(--vqyy-font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--vqyy-color-primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

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

.unvs {
  display: none;
  font-size: 0.8rem;
  color: var(--vqyy-color-error);
  margin-top: 0.4rem;
}

.form-group.has-error .unvs {
  display: block;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--vqyy-color-error);
  background: #fff5f5;
}

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

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

.form-checkbox label {
  margin: 0;
  font-size: 0.9rem;
}

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

.uryg {
  display: none;
}

.phone-row {
  display: flex;
  gap: var(--vqyy-spacing-sm);
}

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

.phone-row input {
  flex: 1;
}

.order-note {
  font-size: 0.8rem;
  color: var(--vqyy-color-text-light);
  text-align: center;
  margin-top: var(--vqyy-spacing-md);
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--vqyy-spacing-2xl);
}

.order-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-pack {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto var(--vqyy-spacing-lg);
  display: block;
}

.order-assurances {
  display: flex;
  flex-direction: column;
  gap: var(--vqyy-spacing-md);
  margin-top: var(--vqyy-spacing-lg);
  padding-top: var(--vqyy-spacing-lg);
  border-top: 1px solid var(--vqyy-color-border);
}

.assurance-item {
  display: flex;
  gap: var(--vqyy-spacing-md);
  align-items: center;
  font-size: 0.9rem;
}

.assurance-item i {
  color: var(--vqyy-color-primary);
  font-size: 1.3rem;
}

.contact-info-panel {
  background: var(--vqyy-color-bg-alt);
  padding: var(--vqyy-spacing-2xl);
  border-radius: var(--vqyy-radius-lg);
}

.contact-info-panel h2 {
  font-family: var(--vqyy-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--vqyy-spacing-lg);
  color: var(--vqyy-color-primary);
}

.contact-info-item {
  display: flex;
  gap: var(--vqyy-spacing-lg);
  margin-bottom: var(--vqyy-spacing-lg);
  padding-bottom: var(--vqyy-spacing-lg);
  border-bottom: 1px solid var(--vqyy-color-border);
}

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

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

.contact-info-item div {
  font-size: 0.9rem;
  color: var(--vqyy-color-text-light);
}

.contact-info-item strong {
  color: var(--vqyy-color-text);
  display: block;
  margin-bottom: 0.3rem;
}

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

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

.map-container {
  border-radius: var(--vqyy-radius-lg);
  overflow: hidden;
  box-shadow: var(--vqyy-shadow-lg);
}

/* HERO PAGE */
.hero-page {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  color: white;
  padding: 3rem 0;
}

.hero-page h1 {
  font-family: var(--vqyy-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--vqyy-spacing-lg);
}

.hero-page .lead {
  font-size: 1.2rem;
  opacity: 0.95;
}

.review-header-stats {
  display: flex;
  gap: var(--vqyy-spacing-2xl);
  align-items: center;
  justify-content: center;
  margin-top: var(--vqyy-spacing-2xl);
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
}

.big-number {
  font-family: var(--vqyy-font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--vqyy-color-accent);
}

.big-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* POLICY CONTENT */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-family: var(--vqyy-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--vqyy-color-primary);
}

.policy-content h3 {
  font-family: var(--vqyy-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  color: var(--vqyy-color-primary);
}

.policy-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--vqyy-color-primary);
  text-decoration: underline;
}

/* INTERACTIVE MODULES */
.udnf {
  background: var(--vqyy-color-bg-alt);
  padding: var(--vqyy-spacing-2xl);
  border-radius: var(--vqyy-radius-lg);
}

.uqdf {
  margin-bottom: var(--vqyy-spacing-lg);
}

.usey {
  font-family: var(--vqyy-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--vqyy-color-primary);
  margin-bottom: var(--vqyy-spacing-md);
  display: block;
}

.umne {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--vqyy-spacing-md);
}

.ufui {
  padding: var(--vqyy-spacing-md);
  border: 2px solid var(--vqyy-color-border);
  border-radius: var(--vqyy-radius-lg);
  background: white;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ufui:hover {
  border-color: var(--vqyy-color-primary);
  background: #f0f9ff;
}

.ufui.active {
  border-color: var(--vqyy-color-primary);
  background: var(--vqyy-color-primary);
  color: white;
}

.umix {
  margin-top: var(--vqyy-spacing-lg);
  padding: var(--vqyy-spacing-lg);
  background: white;
  border-radius: var(--vqyy-radius-lg);
  border-left: 4px solid var(--vqyy-color-success);
}

.umix p {
  margin-bottom: var(--vqyy-spacing-md);
}

.uilk {
  background: var(--vqyy-color-bg-alt);
  border-radius: var(--vqyy-radius-lg);
  overflow: hidden;
}

.lf-tablist {
  display: flex;
  border-bottom: 2px solid var(--vqyy-color-border);
  gap: 0;
  background: white;
}

.uyey {
  flex: 1;
  padding: var(--vqyy-spacing-lg);
  border: none;
  background: white;
  cursor: pointer;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  color: var(--vqyy-color-text-light);
  transition: all 0.3s ease;
}

.uyey:hover {
  color: var(--vqyy-color-primary);
  background: var(--vqyy-color-bg-alt);
}

.uyey.is-active {
  color: var(--vqyy-color-primary);
  border-bottom-color: var(--vqyy-color-primary);
}

.uomc {
  padding: var(--vqyy-spacing-2xl);
  display: none;
  animation: fadeIn 0.3s ease;
}

.uomc.is-active {
  display: block;
}

.uomc h3 {
  font-family: var(--vqyy-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vqyy-color-primary);
  margin-bottom: var(--vqyy-spacing-md);
}

.uomc p {
  color: var(--vqyy-color-text-light);
  margin-bottom: var(--vqyy-spacing-md);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.cta-band-center h2 {
  font-family: var(--vqyy-font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: var(--vqyy-spacing-lg);
}

.cta-band-center p {
  font-size: 1.1rem;
  margin-bottom: var(--vqyy-spacing-lg);
  opacity: 0.95;
}

/* FOOTER */
.site-footer {
  background: var(--vqyy-color-primary);
  color: white;
  padding: var(--vqyy-spacing-2xl) 0 var(--vqyy-spacing-lg);
  margin-top: var(--vqyy-spacing-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--vqyy-spacing-2xl);
  margin-bottom: var(--vqyy-spacing-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: var(--vqyy-spacing-2xl);
}

.footer-brand h3 {
  font-family: var(--vqyy-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--vqyy-spacing-md);
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--vqyy-font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--vqyy-spacing-md);
}

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

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

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

.footer-col a:hover {
  color: white;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-legal-links {
  text-align: center;
  margin-bottom: var(--vqyy-spacing-lg);
  padding-bottom: var(--vqyy-spacing-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.85rem;
  margin: 0 var(--vqyy-spacing-md);
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: white;
}

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

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
  display: flex;
  gap: var(--vqyy-spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* COOKIE BANNER */
.unwk {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vqyy-color-primary);
  color: white;
  padding: var(--vqyy-spacing-lg);
  z-index: 1000;
  box-shadow: var(--vqyy-shadow-lg);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner-text {
  margin-bottom: var(--vqyy-spacing-md);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.cookie-banner-actions {
  display: flex;
  gap: var(--vqyy-spacing-md);
  flex-wrap: wrap;
}

.ufth {
  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;
  padding: var(--vqyy-spacing-lg);
}

.utkz {
  background: white;
  border-radius: var(--vqyy-radius-lg);
  max-width: 500px;
  width: 100%;
  padding: var(--vqyy-spacing-2xl);
  color: var(--vqyy-color-text);
  max-height: 80vh;
  overflow-y: auto;
}

.utkz h2 {
  font-family: var(--vqyy-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: var(--vqyy-spacing-lg);
  color: var(--vqyy-color-primary);
}

.utkz p {
  margin-bottom: var(--vqyy-spacing-lg);
  font-size: 0.95rem;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--vqyy-spacing-md) 0;
  border-bottom: 1px solid var(--vqyy-color-border);
  gap: var(--vqyy-spacing-lg);
}

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

.cookie-toggle h4 {
  font-family: var(--vqyy-font-display);
  font-weight: 700;
  color: var(--vqyy-color-primary);
  margin-bottom: 0.3rem;
}

.cookie-toggle p {
  font-size: 0.85rem;
  color: var(--vqyy-color-text-light);
  margin: 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: var(--vqyy-color-border);
  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(--vqyy-color-success);
}

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

.cookie-modal-actions {
  display: flex;
  gap: var(--vqyy-spacing-md);
  margin-top: var(--vqyy-spacing-lg);
  justify-content: flex-end;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ukpv {
    display: flex;
  }

  .uvpc {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--vqyy-color-bg);
    border-top: 1px solid var(--vqyy-color-border);
    padding: var(--vqyy-spacing-lg);
    gap: var(--vqyy-spacing-md);
    display: none;
    box-shadow: var(--vqyy-shadow-lg);
  }

  .uvpc[data-visible="true"] {
    display: flex;
  }

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

  .hero-visual {
    order: 0;
  }

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

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

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

  .review-header-stats {
    flex-direction: column;
    gap: var(--vqyy-spacing-lg);
  }

  .footer-legal-links a {
    margin: var(--vqyy-spacing-xs);
    display: inline-block;
  }

  .unwk {
    bottom: 0;
  }

  .utkz {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--vqyy-spacing-xl) 0;
  }

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

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

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

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

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

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

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

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

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

  .phone-row select {
    flex: 1;
  }

  .policy-content {
    padding: 0;
  }

  .cta-band-center h2 {
    font-size: 1.5rem;
  }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.unwk{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}
.unwk.is-visible,.cookie-banner--visible,.unwk.show,.unwk.active{transform:none !important}
.unwk a{color:inherit;text-decoration:underline}
.unwk button{cursor:pointer}
.ufth{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}
.ufth.is-visible,.cookie-modal--visible,.ufth.show,.ufth.active{display:flex !important}
.utkz,.ufth>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uukm .udnf,.uukm .ucnf,.uukm .uilk,.uukm .uksv,.uxiw .udnf,.uxiw .ucnf,.uxiw .uilk,.uxiw .uksv{background:#fff !important;color:#1a1a1a !important}
.udnf,.ucnf{color:#1a1a1a !important}
.udnf label,.ucnf label,.udnf p,.ucnf p,.udnf .usey,.udnf span,.ucnf span,.utfs,.ubgw,.uilk .uomc,.uilk .uomc *{color:#1a1a1a !important}
.utfs,.ubgw{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.udnf .ufui{color:#1a1a1a !important}
.udnf .ufui.is-sel{color:#fff !important}
.utok .unvs{display:none}
.utok .unvs.is-visible{display:block !important;color:#c0392b}
.utok .uryg,.utok [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.utok{color:#1a1a1a}
.uukm .utok,.uxiw .utok{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uaia{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uaia img{width:100%;height:100%;object-fit:cover}
.uvoi,.uuci{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uvoi img,.uuci img{width:100%;height:100%;object-fit:cover;display:block}
.uvoi img{opacity:.28}
.uuci img{opacity:.07}
*:has(> .uvoi),*:has(> .uuci){position:relative}
.ujmj{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)}
.ujmj .uhyt{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.ujmj .ubgp{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.ueic{margin:1.4rem auto;max-width:920px}
.ueic img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uswv{padding:3rem 0}
.upmk{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.upmk img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uksv{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ulbs{display:flex;overflow:hidden;gap:0 !important}
.ugwi{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ugpd{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}
.ulnj{left:.5rem}.uxvf{right:.5rem}
.uilk .uomc{display:none}.uilk .uomc.is-active{display:block}
.udnf .uqdf{display:block !important}
.udnf .umne{display:flex;flex-wrap:wrap;gap:.5rem}
.udnf .ufui{cursor:pointer}
