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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #3a4a42;
  background: #fafbf9;
}

a {
  color: #4a6b60;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #2d4a40;
}

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

/* Header & Navigation */
.umlt {
  background: #fff;
  border-bottom: 1px solid #e8ebe8;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

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

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d4a40;
  letter-spacing: 1px;
}

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

.ufcn a {
  font-size: 0.95rem;
  color: #3a4a42;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25rem;
  transition: all 0.3s;
}

.ufcn a:hover {
  border-bottom-color: #7d8d86;
}

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

.upoh span {
  width: 24px;
  height: 2px;
  background: #3a4a42;
  transition: all 0.3s;
}

.disclosure-bar {
  background: #2d4a40;
  color: #fff;
  text-align: center;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border: 2px solid #4a6b60;
  background: #4a6b60;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.btn:hover {
  background: #2d4a40;
  border-color: #2d4a40;
}

.btn-primary {
  background: #4a6b60;
  border-color: #4a6b60;
  color: #fff;
}

.btn-primary:hover {
  background: #2d4a40;
  border-color: #2d4a40;
}

.btn-outline {
  background: transparent;
  color: #4a6b60;
  border-color: #4a6b60;
}

.btn-outline:hover {
  background: #f0f5f3;
  border-color: #2d4a40;
  color: #2d4a40;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f8f6 0%, #e8ece9 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

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

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

.hero-center {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.hero-eyebrow {
  display: inline-block;
  background: #e8ece9;
  color: #2d4a40;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #2d4a40;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.checklist {
  list-style: none;
  max-width: 500px;
  margin: 2rem auto;
  text-align: left;
}

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

.check-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #d4e0dc;
  border-radius: 50%;
  color: #2d4a40;
  flex-shrink: 0;
}

.hero-rating {
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: #5a6b5e;
}

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

/* Price Block */
.price-block {
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

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

.price-new {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2d4a40;
}

.price-badge {
  background: #c4a84f;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #5a6b5e;
}

.hero-simple {
  background: linear-gradient(135deg, #f5f8f6 0%, #e8ece9 100%);
  padding: 3rem 0;
}

.hero-simple .container {
  text-align: center;
}

.hero-simple h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #2d4a40;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.2rem;
  color: #5a6b5e;
  margin-bottom: 1rem;
}

/* Media & Images */
.media {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  background: #e8ece9;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

.uryi {
  max-width: 400px;
  margin: 2rem auto 0;
}

.product-pack {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

/* Sections */
.section {
  padding: 4rem 1.5rem;
}

.section-alt {
  background: #f5f8f6;
}

.uihr {
  background: #2d4a40;
  color: #fff;
}

.uihr a {
  color: #a8d5ba;
}

.uihr a:hover {
  color: #e8ece9;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2d4a40;
  margin-bottom: 1rem;
  text-align: center;
}

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

.section-lead {
  font-size: 1.05rem;
  color: #5a6b5e;
  text-align: center;
  margin-bottom: 2rem;
}

.uihr .section-lead {
  color: #d4e0dc;
}

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

.benefit-card {
  background: #fff;
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #e0e5e2;
}

.section-alt .benefit-card {
  background: #fff;
}

.uihr .benefit-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}

.benefit-card i {
  font-size: 2rem;
  color: #4a6b60;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

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

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

.spec-item {
  text-align: center;
}

.spec-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.spec-item p {
  font-size: 0.95rem;
}

/* Split Block */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.split-block > div {
  padding: 0 1rem;
}

.split-block h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2d4a40;
}

.split-block ol, .split-block ul {
  margin-left: 1.5rem;
}

.split-block li {
  margin-bottom: 0.8rem;
}

/* Timeline */
.timeline-v {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

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

.tl-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #4a6b60;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.tl-step h3 {
  font-size: 1.15rem;
  color: #2d4a40;
  margin-bottom: 0.5rem;
}

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

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

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

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #4a6b60;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.step-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.9rem;
  color: #5a6b5e;
}

/* Trust Band */
.trust-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.trust-item i {
  font-size: 2rem;
  color: #a8d5ba;
}

.trust-item span {
  font-weight: 600;
  font-size: 1rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  background: #fff;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid #e0e5e2;
}

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

.testimonial p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial cite {
  font-size: 0.85rem;
  color: #7d8d86;
  font-style: normal;
}

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

/* Rating Summary */
.rating-summary {
  text-align: center;
  margin: 2rem 0;
}

.rating-main {
  display: inline-block;
}

.rating-score {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #2d4a40;
}

.rating-stars {
  margin: 0.5rem 0;
}

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

/* FAQ */
.faq {
  margin-top: 2rem;
}

.uzvs {
  border-bottom: 1px solid #e0e5e2;
  padding: 1.5rem 0;
}

.uiru {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2d4a40;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.uiru:hover {
  color: #4a6b60;
}

.uiru i {
  transition: transform 0.3s;
  color: #7d8d86;
}

.uzvs[open] .uiru i {
  transform: rotate(180deg);
}

.uuur {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}

.uzvs[open] .uuur {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.uuur p {
  font-size: 0.95rem;
  color: #5a6b5e;
  padding-top: 1rem;
  line-height: 1.7;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
}

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

.dose-table th {
  background: #e8ece9;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #2d4a40;
  border-bottom: 2px solid #d4e0dc;
}

.dose-table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e5e2;
}

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

.dose-note {
  font-size: 0.85rem;
  color: #8a9b94;
  margin-top: 1rem;
  font-style: italic;
}

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

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

.umjv {
  background: #fff;
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid #e0e5e2;
}

.umjv h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #2d4a40;
  margin-bottom: 2rem;
}

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

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #d4e0dc;
  border-radius: 3px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #4a6b60;
  background: #fafbf9;
}

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

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

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

.phone-row input {
  flex: 1;
}

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

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  cursor: pointer;
  flex-shrink: 0;
}

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

.umpn {
  display: none;
  font-size: 0.8rem;
  color: #d46c6c;
  margin-top: 0.4rem;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #d46c6c;
  background: #fef7f7;
}

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

.uzwv {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.order-info {
  text-align: center;
  margin-top: 1rem;
}

.order-summary {
  font-size: 0.9rem;
  color: #8a9b94;
  margin-bottom: 1rem;
}

.guarantee-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.chip {
  background: #e8ece9;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #2d4a40;
}

.order-note {
  font-size: 0.85rem;
  color: #8a9b94;
  margin-top: 1rem;
}

/* Notice Grid */
.notice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.notice-item {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 3px solid #a8d5ba;
}

.notice-item h4 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.notice-item p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Two Column */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.two-column h3 {
  margin-bottom: 1rem;
}

.two-column ul li {
  margin-bottom: 0.8rem;
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.uphc {
  background: #fff;
  padding: 2.5rem;
  border-radius: 4px;
  border: 1px solid #e0e5e2;
}

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-panel h2 {
  font-size: 1.5rem;
  color: #2d4a40;
}

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

.contact-info-item i {
  font-size: 1.5rem;
  color: #4a6b60;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

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

.contact-quick {
  text-align: center;
}

.contact-quick p {
  margin: 0.8rem 0;
}

/* Map Container */
.map-container {
  width: 100%;
  margin: 2rem 0;
}

.map-container iframe {
  border-radius: 4px;
}

/* Carousel */
.uoep {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.ukgl {
  display: flex;
  transition: transform 0.4s ease-out;
}

.upsr {
  flex: 0 0 100%;
}

.ukky {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: #2d4a40;
  z-index: 10;
  transition: all 0.3s;
}

.umas {
  left: 1rem;
}

.uphf {
  right: 1rem;
}

.ukky:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Calculator */
.upfp {
  background: #f5f8f6;
  padding: 2rem;
  border-radius: 4px;
  margin-top: 2rem;
}

.upfp label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  cursor: pointer;
}

.upfp input[type="range"] {
  flex: 1;
  height: 6px;
  cursor: pointer;
}

.upfp input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.utwe {
  background: #fff;
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 3px solid #4a6b60;
  font-weight: 600;
  font-size: 1.05rem;
  color: #2d4a40;
}

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

.cta-band-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #2d4a40;
  margin-bottom: 1rem;
}

.cta-band-inner p {
  font-size: 1.05rem;
  color: #5a6b5e;
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background: #2d4a40;
  color: #d4e0dc;
  padding: 4rem 1.5rem 2rem;
}

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

.footer-brand h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

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

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

.footer-col a {
  color: #a8d5ba;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #e8ece9;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

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

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

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

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

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

/* Cookie Banner & Modal */
.udgn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d4a40;
  color: #fff;
  padding: 1.5rem;
  z-index: 1000;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

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

.cookie-banner-text a {
  color: #a8d5ba;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

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

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

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

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

.uqvk p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

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

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

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

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

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

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

input:checked + .slider {
  background-color: #4a6b60;
}

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

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

/* Responsive */
@media (max-width: 768px) {
  .ufcn {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid #e0e5e2;
    z-index: 99;
  }

  .ufcn.active {
    display: flex;
  }

  .upoh {
    display: flex;
  }

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

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

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

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

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

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

  .two-column {
    grid-template-columns: 1fr;
  }

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

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

  .benefit-grid,
  .spec-grid,
  .testimonial-grid,
  .order-steps,
  .notice-grid {
    grid-template-columns: 1fr;
  }

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

  .phone-row select {
    flex: 1;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

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

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

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

  .hero-center {
    padding: 2rem 1rem;
  }

  .umjv {
    padding: 1.5rem;
  }

  .uiru {
    font-size: 0.95rem;
  }

  .cookie-banner-text {
    font-size: 0.8rem;
  }

  .ukky {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

/* brand-guard-css-v3 — авто-страховка cookie-баннера и контраста (приложение) */
.udgn{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}
.udgn.is-visible,.cookie-banner--visible,.udgn.show,.udgn.active{transform:none !important}
.udgn a{color:inherit;text-decoration:underline}
.udgn button{cursor:pointer}
.uqvk{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}
.uqvk.is-visible,.cookie-modal--visible,.uqvk.show,.uqvk.active{display:flex !important}
.udqu,.uqvk>div{background:#fff;color:#1a1a1a;max-width:480px;width:100%;border-radius:12px;padding:1.25rem;max-height:85vh;overflow:auto}
.uihr .uadk,.uihr .upfp,.uihr .ubcp,.uihr .uoep,.ugyi .uadk,.ugyi .upfp,.ugyi .ubcp,.ugyi .uoep{background:#fff !important;color:#1a1a1a !important}
.uadk,.upfp{color:#1a1a1a !important}
.uadk label,.upfp label,.uadk p,.upfp p,.uadk .ueoc,.uadk span,.upfp span,.utwe,.usvy,.ubcp .ugww,.ubcp .ugww *{color:#1a1a1a !important}
.utwe,.usvy{background:#f3f4f2 !important;border-color:rgba(0,0,0,.12) !important}
.uadk .ujwp{color:#1a1a1a !important}
.uadk .ujwp.is-sel{color:#fff !important}
.umjv .umpn{display:none}
.umjv .umpn.is-visible{display:block !important;color:#c0392b}
.umjv .uzwv,.umjv [name="website"]{position:absolute !important;left:-9999px !important;width:1px;height:1px;overflow:hidden}
.umjv{color:#1a1a1a}
.uihr .umjv,.ugyi .umjv{background:#fff !important;color:#1a1a1a !important}
.product-pack svg{width:100%;height:auto;display:block}
.uryi{position:relative !important;aspect-ratio:1/1;overflow:hidden}
.uryi img{width:100%;height:100%;object-fit:cover}
.uruu,.utqa{position:absolute !important;inset:0;z-index:0 !important;overflow:hidden;pointer-events:none}
.uruu img,.utqa img{width:100%;height:100%;object-fit:cover;display:block}
.uruu img{opacity:.28}
.utqa img{opacity:.07}
*:has(> .uruu),*:has(> .utqa){position:relative}
.utbs{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)}
.utbs .uclp{display:block;font-weight:700;text-transform:uppercase;letter-spacing:.05em;line-height:1.05}
.utbs .upnd{display:block;font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;margin-top:.45rem;opacity:.72}
.uyqz{margin:1.4rem auto;max-width:920px}
.uyqz img{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 34px rgba(0,0,0,.12)}
.uafx{padding:3rem 0}
.ubbd{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem;width:92%;max-width:1200px;margin-inline:auto}
.ubbd img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover;display:block;border-radius:12px}
.uoep{position:relative;width:100% !important;max-width:860px;margin-inline:auto;overflow:hidden}
.ukgl{display:flex;overflow:hidden;gap:0 !important}
.upsr{min-width:100%;flex:0 0 100%;box-sizing:border-box;padding:1.2rem 3.2rem;margin:0 !important}
.ukky{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}
.umas{left:.5rem}.uphf{right:.5rem}
.ubcp .ugww{display:none}.ubcp .ugww.is-active{display:block}
.uadk .ujlw{display:block !important}
.uadk .ulzn{display:flex;flex-wrap:wrap;gap:.5rem}
.uadk .ujwp{cursor:pointer}
