:root {
  --vnsz-color-primary: #2c3e50;
  --vnsz-color-accent: #e74c3c;
  --vnsz-color-light: #f5f5f5;
  --vnsz-color-dark: #1a1a1a;
  --vnsz-color-border: #e0e0e0;
  --vnsz-font-display: 'Plus Jakarta Sans', sans-serif;
  --vnsz-font-body: 'Plus Jakarta Sans', sans-serif;
  --vnsz-spacing-unit: 1rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--vnsz-font-body);
  line-height: 1.6;
  color: var(--vnsz-color-dark);
  background: #fff;
}

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

.disclosure-bar {
  background: var(--vnsz-color-dark);
  color: #fff;
  padding: 0.5rem var(--vnsz-spacing-unit);
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.4;
}

header.utrf {
  background: #fff;
  border-bottom: 1px solid var(--vnsz-color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

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

.logo {
  font-family: var(--vnsz-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vnsz-color-primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.uzmv a {
  text-decoration: none;
  color: var(--vnsz-color-dark);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.uzmv a:hover {
  color: var(--vnsz-color-accent);
}

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

.ufdb span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--vnsz-color-dark);
  transition: 0.3s;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: rgba(231, 76, 60, 0.1);
}

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

.btn-block {
  width: 100%;
}

.section {
  padding: 4rem 0;
}

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

.uxjh {
  background: var(--vnsz-color-dark);
  color: #fff;
}

.section-title {
  font-family: var(--vnsz-font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.section-title .hl {
  color: var(--vnsz-color-accent);
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.uahr {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  overflow: hidden;
}

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

.hero-band {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(231, 76, 60, 0.15);
  color: var(--vnsz-color-accent);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--vnsz-font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

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

.checklist li {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.check-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: rgba(231, 76, 60, 0.15);
  border-radius: 50%;
  color: var(--vnsz-color-accent);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

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

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

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

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

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

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

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

.benefit-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

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

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: #666;
}

.page-title {
  font-family: var(--vnsz-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.page-title .hl {
  color: var(--vnsz-color-accent);
}

.page-lead {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.step {
  text-align: center;
}

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

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

.order-note {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

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

.trust-item i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--vnsz-color-accent);
}

.trust-item p {
  font-size: 0.95rem;
  color: #fff;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.spec-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.spec-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--vnsz-color-primary);
}

.spec-item p {
  font-size: 0.9rem;
  color: #666;
}

.ufyz {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.upvg {
  margin-bottom: 2rem;
}

.uujp {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

.unna {
  padding: 0.75rem 1.25rem;
  background: var(--vnsz-color-light);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.unna:hover {
  border-color: var(--vnsz-color-accent);
  background: #fff;
}

.unna:active {
  background: var(--vnsz-color-light);
  border-color: var(--vnsz-color-accent);
}

.uquv {
  padding: 1.5rem;
  background: rgba(231, 76, 60, 0.1);
  border-left: 4px solid var(--vnsz-color-accent);
  border-radius: 4px;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

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

.testimonial {
  background: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-top: 4px solid var(--vnsz-color-accent);
}

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

.testimonial p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-style: italic;
  color: #555;
}

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

.testimonial-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 2rem;
}

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

.uhjr {
  border-bottom: 1px solid var(--vnsz-color-border);
}

.uhjr:last-child {
  border-bottom: none;
}

.uzhz {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--vnsz-color-dark);
  transition: color 0.2s;
}

.uzhz:hover {
  color: var(--vnsz-color-accent);
}

.uzhz i {
  transition: transform 0.3s;
}

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

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

.uzhz[aria-expanded="true"] + .uqmx {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: 1rem;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

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

.table-wrap {
  overflow-x: auto;
  margin-bottom: 1rem;
}

.dose-table,
.delivery-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

.dose-table th,
.delivery-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.dose-table td,
.delivery-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--vnsz-color-border);
  font-size: 0.95rem;
}

.dose-table tbody tr:last-child td,
.delivery-table tbody tr:last-child td {
  border-bottom: none;
}

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

.dose-note,
.table-note {
  font-size: 0.85rem;
  color: #999;
  margin-top: 1rem;
}

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

.order-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-pack {
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.12));
  max-width: 280px;
}

.order-price {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--vnsz-color-light);
  border-radius: 8px;
  text-align: center;
}

.order-price-small {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--vnsz-color-border);
}

.order-guarantees {
  display: grid;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.order-guarantees p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.order-guarantees i {
  color: var(--vnsz-color-accent);
}

.ujcf {
  background: var(--vnsz-color-light);
  padding: 2rem;
  border-radius: 12px;
}

.ujcf h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--vnsz-color-border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--vnsz-color-accent);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.uidf {
  display: none;
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #e74c3c;
}

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

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

.phone-row select {
  padding: 0.75rem;
  border: 1px solid var(--vnsz-color-border);
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
}

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

.form-checkbox input {
  margin-top: 0.35rem;
  min-width: 18px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

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

.form-checkbox label a {
  color: var(--vnsz-color-accent);
  text-decoration: none;
}

.form-checkbox label a:hover {
  text-decoration: underline;
}

.usir {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.composition-note,
.usage-note {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  margin-top: 1rem;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.usage-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.usage-icon {
  font-size: 2.5rem;
  color: var(--vnsz-color-accent);
  margin-bottom: 1rem;
}

.usage-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.usage-card p {
  font-size: 0.9rem;
  color: #666;
}

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

.tip {
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid var(--vnsz-color-accent);
}

.tip h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tip p {
  font-size: 0.9rem;
  color: #666;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.reason-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.reason-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--vnsz-color-primary);
}

.reason-card p {
  font-size: 0.9rem;
  color: #666;
}

.cta-band {
  text-align: center;
  padding: 3rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cta-band h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-band p {
  font-size: 1.05rem;
  color: #666;
  margin-bottom: 1.5rem;
}

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

.uqqh {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.uqqh h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-info-panel {
  background: var(--vnsz-color-light);
  padding: 2rem;
  border-radius: 12px;
  height: fit-content;
}

.contact-info-panel h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--vnsz-color-accent);
  min-width: 28px;
}

.contact-info-item div {
  font-size: 0.9rem;
  line-height: 1.5;
}

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

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

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

.map-container {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.topic-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.topic-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.topic-card p {
  font-size: 0.9rem;
  color: #666;
}

.topic-card a {
  color: var(--vnsz-color-accent);
  text-decoration: none;
}

.topic-card a:hover {
  text-decoration: underline;
}

.thank-you-section,
.not-found-section {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-card,
.not-found-card {
  background: #fff;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 500px;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--vnsz-color-accent);
  margin-bottom: 1rem;
}

.thank-you-card h1,
.not-found-card h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.thank-you-message {
  font-size: 1.2rem;
  color: var(--vnsz-color-primary);
  margin-bottom: 1rem;
}

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.legal-content h2:first-child,
.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style-position: inside;
  margin-left: 1rem;
}

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

.legal-date {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 2rem;
}

.legal-content a {
  color: var(--vnsz-color-accent);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.guidelines-section {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
}

.clarity-section {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
}

.timeline-v {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.timeline-v::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 1rem;
  bottom: 0;
  width: 2px;
  background: var(--vnsz-color-accent);
}

.tl-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.tl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background: var(--vnsz-color-accent);
  color: #fff;
  border-radius: 50%;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-left: -1.2rem;
  z-index: 1;
  box-shadow: 0 0 0 4px #fff;
}

.tl-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

.payment-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.payment-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.payment-card p {
  font-size: 0.95rem;
  color: #666;
}

.cancellation-info {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
}

.support-contact {
  background: var(--vnsz-color-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.support-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.support-contact strong {
  display: inline-block;
  min-width: 100px;
}

.support-contact a {
  color: var(--vnsz-color-accent);
  text-decoration: none;
}

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

.contact-quick-info {
  text-align: center;
  padding: 2rem;
  background: var(--vnsz-color-light);
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-quick-info p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.contact-quick-info a {
  color: var(--vnsz-color-accent);
  text-decoration: none;
}

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

.uzlq {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--vnsz-color-dark);
  color: #fff;
  padding: 1.5rem;
  border-top: 3px solid var(--vnsz-color-accent);
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.cookie-banner-text a:hover {
  text-decoration: underline;
}

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

.uptj {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 1rem;
}

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

.ulwb {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.ulwb h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.ulwb p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

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

.cookie-toggle div h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

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

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

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  border-radius: 28px;
  transition: 0.3s;
}

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

input:checked + .slider {
  background-color: var(--vnsz-color-accent);
}

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

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

.site-footer {
  background: var(--vnsz-color-dark);
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

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

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

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

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

.footer-col a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--vnsz-color-accent);
}

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

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

.footer-legal-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  margin: 0 0.5rem;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--vnsz-color-accent);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: #999;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  .uzmv {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--vnsz-color-border);
    padding: 1rem;
    gap: 0.5rem;
  }

  .uzmv.active {
    display: flex;
  }

  .ufdb {
    display: flex;
  }

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

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

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

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

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

  .cookie-banner-text {
    margin-bottom: 1rem;
  }

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

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

  .page-title {
    font-size: 1.8rem;
  }

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

  .benefit-grid,
  .trust-band,
  .specs-grid,
  .usage-grid,
  .testimonial-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

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

  .price-block {
    flex-direction: column;
    gap: 0.75rem;
  }

  .section {
    padding: 2rem 0;
  }

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

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.uzlq{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}
.uzlq.is-visible,.cookie-banner--visible,.uzlq.show,.uzlq.active{transform:none !important}
.uzlq a{color:inherit;text-decoration:underline}
.uzlq button{cursor:pointer}
.uptj{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}
.uptj.is-visible,.cookie-modal--visible,.uptj.show,.uptj.active{display:flex !important}
.ulwb,.uptj>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uxjh .ufyz,.uxjh .uuev,.uxjh .uzfm,.uxjh .usxt,.urdp .ufyz,.urdp .uuev,.urdp .uzfm,.urdp .usxt{background:#fff !important;color:#1a1a1a !important}
.ufyz,.uuev{color:#1a1a1a !important}
.ufyz label,.uuev label,.ufyz p,.uuev p,.ufyz .uujp,.ufyz span,.uuev span,.udnp,.uquv,.uzfm .uror,.uzfm .uror *{color:#1a1a1a !important}
.udnp,.uquv{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.ufyz .unna{color:#1a1a1a !important}
.ufyz .unna.is-sel{color:#fff !important}
.ujcf .uidf{display:none}
.ujcf .uidf.is-visible{display:block !important;color:#c0392b}
.ujcf .usir,.ujcf [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.ujcf{color:#1a1a1a}
.uxjh .ujcf,.urdp .ujcf{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uybn{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uybn img{width:100%;height:100%;object-fit:cover}
.uahr,.uqjw{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uahr img,.uqjw img{width:100%;height:100%;object-fit:cover;display:block}
.uahr img{opacity:.28}
.uqjw img{opacity:.07}
*:has(> .uahr),*:has(> .uqjw){position:relative}
.utgy{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)}
.utgy .ulmt{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.utgy .umrl{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.utik{margin:1.4rem auto;max-width:920px}
.utik img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.utwv{padding:3rem 0}
.ubgw{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ubgw img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.usxt{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.uojy{display:flex;overflow:hidden;gap:0 !important}
.uwun{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.urvh{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}
.ufcq{left:.5rem}.upzo{right:.5rem}
.uzfm .uror{display:none}.uzfm .uror.is-active{display:block}
.ufyz .upvg{display:block !important}
.ufyz .ubhk{display:flex;flex-wrap:wrap;gap:.5rem}
.ufyz .unna{cursor:pointer}
