@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

html,
body,
main,
section,
.container,
.hero__grid,
.problems__grid,
.benefits__grid,
.principle__wrapper,
.comparison__grid,
.offer__wrapper,
.testimonials__grid,
.footer__grid {
  overflow-x: clip;
}

[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) scale(0.98) !important;
  opacity: 0;
}

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

:root {
  --primary: #2b5e4c;
  --primary-dark: #1e4235;
  --secondary: #e9b35f;
  --light-bg: #f9f7f4;
  --gray-light: #f0ede8;
  --gray: #6c6a67;
  --dark: #2a2a28;
  --white: #ffffff;
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.05);
  --shadow-md: 0 12px 30px rgba(0,0,0,0.08);
  --border-radius: 20px;
  --border-radius-card: 24px;
  --transition: 0.25s ease;
}

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

html {
  width: 100%;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--white);
  color: var(--dark);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
}

.hero__grid > *,
.problems__grid > *,
.benefits__grid > *,
.principle__wrapper > *,
.comparison__grid > *,
.testimonials__grid > *,
.offer__wrapper > *,
.footer__grid > * {
  min-width: 0;
}

main {
  flex: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.header {
  background: #1e2a28;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 0;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  min-width: 0;
}

.logo {
  min-width: 0;
  flex: 1 1 auto;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  min-width: 0;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 12px;
}

.logo .logo-line1,
.logo .logo-line2 {
  display: block;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.logo .logo-line1 {
  font-size: 1rem;
  color: #ffffff;
}
.logo .logo-line2 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}

.nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav__list a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.95rem;
}

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

.header__notice {
  font-size: 0.75rem;
  background: var(--gray-light);
  padding: 6px 12px;
  border-radius: 60px;
  color: var(--gray);
  font-weight: 500;
}

.hero {
  padding: 60px 0 48px;
  background: linear-gradient(135deg, #fefbf7 0%, #f3efe8 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 500;
}
.hero__accent {
  color: var(--primary);
}
.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 90%;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary {
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(43,94,76,0.25);
  color: black
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-block {
  width: 100%;
  justify-content: center;
}
.hero__trust {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--primary-dark);
}
.hero__trust i {
  margin-right: 6px;
}
.hero__image img {
  border-radius: 32px;
  object-fit: cover;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-md);
}

.section {
  padding: 48px 0;
}
.section__header {
  text-align: center;
  margin-bottom: 48px;
}
.section__overline {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: #e3f2ef;
  padding: 4px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.section__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.2;
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--white);
  padding: 28px 20px;
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.02);
}
.problem-card__icon {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.problem-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.problem-card p {
  color: var(--gray);
  font-size: 0.9rem;
}
.problems__visual img {
  border-radius: 60px;
  width: 100%;
  object-fit: cover;
  max-height: 600px;
  box-shadow: var(--shadow-sm);
}

.benefits {
  background: var(--light-bg);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: white;
  padding: 28px 20px;
  text-align: center;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.benefit-card i {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 18px;
}
.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.benefit-card p {
  font-size: 0.85rem;
  color: var(--gray);
}

.principle__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.principle__list {
  list-style: none;
  margin-top: 24px;
}
.principle__list li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.principle__list i {
  color: var(--primary);
  font-size: 1.2rem;
}
.principle__image img {
  border-radius: 32px;
  object-fit: cover;
  width: 100%;
}

.comparison {
  background: #f4f1ed;
}
.comparison__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.comparison__card {
  background: white;
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}
.comparison__card--highlight {
  background: var(--primary);
  color: white;
}
.comparison__card--highlight .comparison__list i {
  color: #000000;
}
.comparison__card h3 {
  font-size: 1.7rem;
  margin-bottom: 24px;
  font-weight: 600;
  color: #000000;
}
.comparison__list {
  list-style: none;
}
.comparison__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 1rem;
  min-width: 0;
}
.comparison__list li i {
  flex-shrink: 0;
}
.comparison__list i {
  font-size: 1.3rem;
  width: 24px;
}
.comparison__card--highlight .comparison__list li {
  color: #000000;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: white;
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
}
.testimonial__stars {
  color: var(--secondary);
  margin-bottom: 20px;
  letter-spacing: 3px;
}
.testimonial-card p {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #2d2d2a;
}
.testimonial__author {
  font-weight: 600;
  color: var(--primary);
}

.offer {
  background: linear-gradient(145deg, #ffffff 0%, #faf8f4 100%);
}
.offer__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: white;
  border-radius: 40px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.offer__price {
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}
.price-old {
  font-size: 1.4rem;
  text-decoration: line-through;
  color: var(--gray);
  margin-right: 16px;
}
.price-new {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
}
.price-badge {
  background: #e9b35f;
  padding: 4px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
}
.offer__list {
  list-style: none;
  margin: 24px 0;
}
.offer__list li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
}
.offer__list li i {
  flex-shrink: 0;
  margin-top: 3px;
}
.offer__guarantee {
  display: flex;
  gap: 12px;
  background: #ecfdf5;
  padding: 16px;
  border-radius: 28px;
  align-items: flex-start;
  min-width: 0;
}
.offer__guarantee img {
  flex-shrink: 0;
}
.offer__guarantee div {
  min-width: 0;
  word-break: break-word;
}
.offer__form {
  background: var(--gray-light);
  padding: 32px;
  border-radius: 32px;
  min-width: 0;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input, .form-group select {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border-radius: 28px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  background: white;
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  padding: 0;
  margin: 3px 0 0;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: white;
  flex-shrink: 0;
  accent-color: var(--primary);
}
.checkbox-group label {
  display: block;
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
  line-height: 1.45;
  font-weight: 400;
  font-size: 0.85rem;
  word-break: break-word;
  cursor: pointer;
}
.form-note {
  font-size: 0.7rem;
  text-align: center;
  margin-top: 16px;
  color: var(--gray);
}

.footer {
  background: #1e2a28;
  color: #cdddd9;
  padding: 48px 0 32px;
  margin-top: auto;
}
.footer .logo a {
  color: white;
}
.footer__legal p {
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.4;
}
.footer__disclaimer p {
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: linear-gradient(125deg, #f7f5f0 0%, #ffffff 100%);
  padding: 48px 24px;
}
.thanks-card {
  background: white;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: 48px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  text-align: center;
  border: 1px solid #eaece9;
}
.thanks-logo {
  margin-bottom: 28px;
}
.thanks-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}
.thanks-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2b5e4c;
}
.thanks-card p {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #2c2c29;
  margin-bottom: 20px;
}
.thanks-details {
  background: #f2f0eb;
  padding: 20px;
  border-radius: 30px;
  font-size: 1rem;
  margin: 28px 0;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid #2b5e4c;
  color: #2b5e4c;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: 0.2s;
}
.btn-outline:hover {
  background: #2b5e4c;
  color: white;
}

@media (max-width: 1024px) {
  .hero__grid,
  .principle__wrapper {
    grid-template-columns: 1fr;
  }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .problems__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero__grid, .principle__wrapper, .offer__wrapper, .footer__grid, .comparison__grid {
    grid-template-columns: 1fr;
  }
  .offer__wrapper { padding: 28px; }
  .offer__form { padding: 24px; }
  .hero p { max-width: 100%; }
  .hero__trust { flex-wrap: wrap; gap: 12px 16px; }
  .section { padding: 40px 0; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .problems__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__legal p { font-size: 0.85rem; }
  .header__container { gap: 12px; }
  .price-new { font-size: 2rem; }
}
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  .benefits__grid { grid-template-columns: 1fr; }
  .badge-notice {
    word-break: break-all;
    flex-shrink: 1;
    min-width: 0;
  }
  .logo a span {
    word-break: break-all;
    min-width: 0;
    flex: 1;
  }
  .footer__legal,
  .footer__disclaimer {
    word-break: break-all;
  }
  .logo a {
    flex-direction: column;
  }
  .offer__wrapper {
    padding: 20px;
    border-radius: 24px;
  }
  .offer__form {
    padding: 16px;
    border-radius: 20px;
  }
  .price-new { font-size: 1.75rem; }
  .price-old { font-size: 1.1rem; }
  .comparison__card { padding: 24px 16px; }
  .section__header h2 {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
}

@media (max-width: 480px) {
  .btn { padding: 12px 20px; font-size: 0.9rem; }
  .section { padding: 32px 0; }
  .hero { padding: 40px 0 32px; }
  .hero h1 { font-size: clamp(1.5rem, 7vw, 1.75rem); }
  .hero__grid { gap: 28px; }
  .order-form input,
  .order-form button,
  .order-form .btn {
    width: 100%;
    max-width: 100%;
  }
  .problem-card,
  .benefit-card,
  .testimonial-card {
    padding: 20px 16px;
  }
  .legal-card {
    padding: 20px 16px;
  }
  .legal-card h1 {
    font-size: 1.5rem;
  }
  .thanks-card {
    padding: 24px 16px;
    border-radius: 24px;
  }
  .thanks-card h1 {
    font-size: 1.75rem;
  }
  .thanks-main {
    padding: 32px 16px;
  }
}
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  .hero h1 { font-size: 1.4rem; }
  .price-new { font-size: 1.5rem; }
  .offer__wrapper { padding: 16px; }
  .offer__form { padding: 12px; }
  .btn { padding: 10px 16px; font-size: 0.85rem; }
}
.badge-notice {
  background: #f9f7f4;
  padding: 4px 12px;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  color: #cdddd9;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--secondary);
}
.footer__disclaimer {
  grid-column: 1 / -1;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(205,221,217,0.2);
}

.legal-main {
  background: #f9f7f4;
  padding: 60px 0;
  min-height: 60vh;
}
.legal-container {
  max-width: 1100px;
  margin: 0 auto;
}
.legal-card,
.legal-content {
  background: white;
  border-radius: 40px;
  padding: 48px 56px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  word-break: break-word;
}
.legal-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 32px;
  border-left: 5px solid var(--secondary);
  padding-left: 20px;
}
.legal-card h2, .legal-card h3 {
  margin: 28px 0 16px;
  color: var(--dark);
}
.legal-card p, .legal-card li {
  line-height: 1.6;
  color: #2c2c29;
  margin-bottom: 16px;
}
.legal-card a {
  color: var(--primary);
  text-decoration: underline;
}
.legal-card ul, .legal-card ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
.legal-card b {
  color: var(--primary-dark);
}
@media (max-width: 768px) {
  .legal-card {
    padding: 28px 20px;
  }
  .legal-card h1 {
    font-size: 1.8rem;
  }
}