@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --color-primary: #1e3a5f;
  --color-accent: #f0a500;
  --color-bg: #ffffff;
  --color-surface: #f6f9fc;
  --color-text: #0f172a;
  --color-muted: #475569;
  --color-border: #e2e8f0;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary), #2d4e77);
  color: #fff;
  padding: 0.8rem 1.8rem;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.8rem 1.8rem;
}

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

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-primary);
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #f8fafc;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 1.5rem;
}

.nav__notice {
  flex: 1;
  text-align: right;
  font-size: 0.8rem;
  color: var(--color-muted);
  padding-right: 1rem;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__menu a {
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s;
}

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

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav__menu {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: white;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav__menu.active {
    display: flex;
  }

  .nav__notice {
    display: none;
  }
}

.hero {
  padding: 3rem 0 2rem;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
}

.hero__title-accent {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 90%;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

@media (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
  }
  .hero__image {
    order: -1;
  }
}

.features {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--color-surface) 0%, #fff 100%);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.feature-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s;
}

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

.feature-card__icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.2rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

.specs {
  padding: 4rem 0;
}

.specs__table {
  max-width: 700px;
  margin: 2rem auto 0;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.specs__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

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

.specs__label {
  font-weight: 600;
  color: var(--color-primary);
}

.specs__value {
  color: var(--color-text);
}

.reviews {
  padding: 4rem 0;
  background: var(--color-surface);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.review-card__stars {
  color: #f0a500;
}

.review-card__text {
  font-style: italic;
  color: var(--color-muted);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
}

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

.review-card__author strong {
  display: block;
  font-size: 0.95rem;
}

.review-card__author span {
  font-size: 0.8rem;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .reviews__grid {
    grid-template-columns: 1fr;
  }
}

.order {
  padding: 4rem 0;
}

.order__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.order__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  margin-bottom: 1.5rem;
}

.order__steps p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}
.order__steps i {
  color: #16a34a;
}

.order__form-wrap h2 {
  text-align: left;
  margin-bottom: 0.5rem;
}

.order__form-wrap>p {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.order__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.order__form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 500;
}

.order__form input {
  margin-top: 0.3rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.checkbox-label {
  flex-direction: row !important;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .order__grid {
    grid-template-columns: 1fr;
  }
}

.disclaimers {
  background: var(--color-primary);
  color: #e2e8f0;
  padding: 3rem 0;
  font-size: 0.9rem;
}

.disclaimers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.disclaimers h3 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.disclaimers__affiliate {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  font-size: 0.8rem;
}

.footer {
  background: #f1f5f9;
  border-top: 1px solid var(--color-border);
  padding: 3rem 0 2rem;
  margin-top: auto;
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__brand .logo {
  margin-bottom: 0.5rem;
}

.footer__desc {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.footer__contacts p {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.footer__legal h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--color-text);
}

.footer__legal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__legal a {
  font-size: 0.9rem;
  color: var(--color-muted);
  transition: color 0.2s;
}

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

.footer__disclaimer {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.footer__copy {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

@media (max-width: 768px) {
  .footer__grid {
    flex-direction: column;
  }
  .specs__row,
  .disclaimers__grid {
    grid-template-columns: 1fr;
  }
}
section {
  overflow: hidden;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-family: var(--font-heading);
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-heading);
  text-align: left;
}

.legal-content h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-heading);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0 1rem 1.5rem;
  line-height: 1.7;
}

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

.legal-content a:hover {
  color: var(--color-accent);
}
.thanks-page {
  word-break: break-word;
}