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

html,
body {
  overflow-x: clip;
}

img {
  max-width: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #1e2a32;
  background: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

:root {
  --primary: #1E5F4C;
  --primary-dark: #134b3b;
  --primary-light: #2c7a64;
  --accent: #FFB74D;
  --gray-light: #f8f9fa;
}

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

.nav {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  flex-wrap: wrap;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
}

.logo img {
  border-radius: 50%;
}

.nav__notice {
  min-width: 0;
  max-width: 100%;
}

.nav__notice span {
  background: var(--primary-light);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  line-height: 1.4;
  max-width: 100%;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--primary);
  border-color: var(--primary-dark);
}

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

.btn--lg {
  padding: 14px 32px;
  font-size: 1.1rem;
}

.hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #f0f7f5 0%, #ffffff 100%);
}

.hero__container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.hero__text {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.hero__image {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.hero__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}

.hero__title-line {
  display: block;
  font-size: clamp(1.6rem, 5vw, 2.5rem);
  font-weight: 300;
}

.hero__title-accent {
  font-size: clamp(1.8rem, 5.5vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-top: 10px;
}

.hero__subtitle {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #4a5568;
}

.hero__badge {
  background: white;
  padding: 10px 20px;
  border-radius: 40px;
  display: inline-flex;
  gap: 15px;
  align-items: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  max-width: 100%;
}

.features {
  padding: 80px 0;
  background: white;
}

.features h2, .specs h2, .reviews h2, .order h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 15px;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: #6c757d;
  margin-bottom: 50px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--gray-light);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card__icon i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.specs {
  background: var(--gray-light);
  padding: 80px 0;
}

.specs__table {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.specs__row {
  display: flex;
  border-bottom: 1px solid #eee;
}

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

.specs__label {
  flex: 1;
  padding: 15px 20px;
  font-weight: 600;
  background: #f9f9f9;
  color: var(--primary);
}

.specs__value {
  flex: 2;
  padding: 15px 20px;
}

.reviews {
  padding: 80px 0;
}

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

.review-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border: 1px solid #eef2f6;
}

.review-card__stars i {
  color: var(--accent);
  margin-right: 2px;
}

.review-card__text {
  margin: 15px 0;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.order {
  background: linear-gradient(145deg, #eef2f6 0%, #ffffff 100%);
  padding: 80px 0;
}

.order__grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.order__visual {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.order__visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 25px -12px rgba(0,0,0,0.15);
}

.order__steps {
  margin-top: 25px;
  background: white;
  padding: 20px;
  border-radius: 20px;
}

.order__steps p {
  margin: 10px 0;
}

.order__steps i {
  color: var(--primary);
  margin-right: 10px;
}

.order__form-wrap {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  background: white;
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}

.order__form label {
  display: block;
  margin-bottom: 20px;
  font-weight: 500;
}

.order__form input {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  margin-top: 6px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-label input {
  width: auto;
}

.order__form button {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  background-color: var(--primary-light);
}

.disclaimers {
  background: var(--gray-light);
  padding: 40px 0;
  border-top: 1px solid #e0e6ed;
}

.disclaimers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.disclaimers h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.disclaimers p {
  font-size: 0.85rem;
  color: #4a5568;
}

.footer {
  background: #1a2a32;
  color: #ccc;
  padding: 50px 0 20px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand .logo a {
  color: white;
}

.footer__desc {
  margin-top: 10px;
  font-size: 0.9rem;
}

.footer__contacts p, .footer__legal ul {
  margin: 8px 0;
}

.footer__legal ul {
  list-style: none;
}

.footer__legal a {
  color: #ccc;
  text-decoration: none;
}

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

.footer__disclaimer {
  font-size: 0.7rem;
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #33444c;
  padding-top: 20px;
}

.footer__copy {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 20px;
}

.thanks-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.thanks-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
}

.thanks-card img {
  margin-bottom: 20px;
}

.thanks-card h2 span {
  color: var(--primary);
}

.thanks-card p {
  margin: 20px 0;
}

.legal-content {
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
  background: white;
  border-radius: 30px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
  word-break: break-word;
}

.legal-content h1 {
  color: var(--primary);
  margin-bottom: 30px;
}

.legal-content p, .legal-content ul {
  margin-bottom: 20px;
  line-height: 1.7;
}

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

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

[data-aos="fade-right"]:not(.aos-animate) {
  transform: translate3d(-32px, 0, 0) !important;
}

[data-aos="fade-left"]:not(.aos-animate) {
  transform: translate3d(32px, 0, 0) !important;
}

[data-aos="zoom-in"]:not(.aos-animate) {
  transform: translate3d(0, 24px, 0) !important;
  opacity: 0;
}

[data-aos="zoom-in"].aos-animate {
  transform: translate3d(0, 0, 0) !important;
}

@media (max-width: 900px) {
  [data-aos] {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .hero__container > *,
  .order__grid > *,
  .features__grid > *,
  .reviews__grid > * {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .features__grid, .reviews__grid { grid-template-columns: 1fr; }
  .order__grid { flex-direction: column; }
  .disclaimers__grid { grid-template-columns: 1fr; }
  .nav__container {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav__notice {
    width: 100%;
  }

  .nav__notice span {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    padding: 8px 12px;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero__container {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 24px;
  }

  .hero__text,
  .hero__image {
    flex: none;
    width: 100%;
  }

  .hero__badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 16px;
    font-size: 0.85rem;
    text-align: center;
  }

  .legal-content { padding: 20px; }
}

@media (max-width: 700px) {
  .specs__row {
    flex-direction: column;
    min-width: 0;
    gap: 0;
  }

  .specs__label,
  .specs__value {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .logo a {
    flex-direction: column;
  }

  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }

  .footer__contacts,
  .footer__legal {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .container,
  .nav__container,
  .hero__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .order__form-wrap {
    padding: 20px;
  }

  .hero {
    padding: 40px 0;
  }

  .features,
  .specs,
  .reviews,
  .order {
    padding: 50px 0;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .btn--lg {
    font-size: 1rem;
    padding: 12px 20px;
  }
}