@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #0a2342;
  --primary-light: #1e3a5f;
  --accent: #e67e23;
  --accent-dark: #c0681e;
  --text-dark: #1e1e1e;
  --text-light: #5a5a5a;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --border-radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,0.05);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --transition: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.5;
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
section {
  overflow-x: hidden;
}
main {
  flex: 1;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--border-radius);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  background: transparent;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(10,35,66,0.2);
}

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

.btn--full {
  width: 100%;
  justify-content: center;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header__pretitle {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}

.header {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.9);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  border-radius: 8px;
}

.logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  color: var(--primary);
}

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

.nav__link {
  font-weight: 500;
  transition: color 0.2s;
}

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

.header__notice {
  font-size: 0.8rem;
  color: var(--text-light);
  max-width: 220px;
  text-align: right;
}

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

.mobile-toggle__bar {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

.hero {
  padding: 48px 0;
  background: linear-gradient(135deg, #f6f9fc 0%, #eef2f6 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--primary);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.hero__price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

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

.price--new {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
}

.badge {
  background: var(--accent);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero__features {
  margin-top: 20px;
  display: flex;
  gap: 24px;
}

.hero__features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}

.hero__features i {
  color: var(--accent);
}

.hero__media img {
  width: 100%;
  aspect-ratio: 1/1;
}

.features {
  padding: 64px 0;
  background: var(--white);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-light);
  padding: 28px 16px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card__icon {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.product-showcase {
  padding: 64px 0;
  background: var(--white);
}

.product-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1/1;
  border: 1px solid #eee;
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.gallery-thumb.active {
  border-color: var(--accent);
}

.gallery-thumb:hover {
  opacity: 0.8;
}

.product-showcase__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.product-showcase__text {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.product-showcase__specs {
  list-style: none;
}

.product-showcase__specs li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.product-showcase__specs i {
  color: var(--accent);
  width: 20px;
}

.specs {
  padding: 48px 0;
  background: var(--bg-light);
}

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

.specs__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 32px;
  color: var(--primary);
}

.specs__table {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.specs__row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

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

.specs__row span:first-child {
  font-weight: 600;
  color: var(--primary);
}

.testimonials {
  padding: 64px 0;
  background: linear-gradient(145deg, #f3f7fb 0%, #ffffff 100%);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.testimonial-card__stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
}

.testimonial-card__name {
  font-weight: 700;
}

.testimonial-card__location {
  font-size: 0.85rem;
  color: var(--text-light);
}

.order {
  padding: 64px 0;
  background: var(--white);
}

.order__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.order__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.order__text {
  color: var(--text-light);
  margin-bottom: 24px;
}

.order__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight i {
  color: var(--accent);
  font-size: 1.4rem;
}

.order__image img {
  border-radius: var(--border-radius);
}

.order-card {
  background: var(--bg-light);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.order-card__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.order-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.order-card__old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 1.2rem;
}

.order-card__discount {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: auto;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
  width: 100%;
}

.form-group--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.form-group--checkbox input {
  width: 20px;
  height: 20px;
}

.order-card__note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 40px 0 20px;
  margin-top: auto;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.footer__logo img {
  border-radius: 8px;
}

.footer__logo span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  text-align: right;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
}

.footer__legal a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer__disclaimer {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  justify-content: center;
  font-size: 0.9rem;
}

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

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--primary);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin: 24px 0 16px;
  color: var(--primary);
}

.legal-content h3 {
  font-size: 1.4rem;
  margin: 20px 0 12px;
  color: var(--primary);
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #333;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0 16px 24px;
  line-height: 1.6;
  color: #333;
}

.legal-content li {
  margin-bottom: 8px;
}

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

.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.thanks-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.thanks-card {
  background: var(--white);
  max-width: 600px;
  width: 100%;
  margin: 40px auto;
  padding: 48px 32px;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}

.thanks-logo {
  margin: 0 auto 24px;
  display: block;
}

.thanks-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.thanks-message {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .header__notice {
    display: none;
  }

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 99;
  }

  .nav.active {
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero__grid,
  .product-showcase__grid,
  .order__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__content {
    order: 1;
  }

  .hero__media {
    order: 0;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__contacts {
    text-align: center;
  }

  .footer__legal {
    gap: 16px;
  }
}

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

  .hero__price {
    flex-wrap: wrap;
  }
}