@font-face {
  font-family: "Outfit";
  src: url(../fonts/Outfit-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --accent: #f97316;
  --accent-glow: #fb923c;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --border-light: #e2e8f0;
  --shadow-sm: 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
  --shadow-lg: 0 20px 30px -10px rgba(0,0,0,0.1);
  --radius-card: 16px;
  --radius-btn: 40px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--text-dark);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  background: none;
  text-align: center;
}

.btn--primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 10px 15px -5px rgba(249,115,22,0.2);
}

.btn--primary:hover {
  background: var(--accent-glow);
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(249,115,22,0.3);
}

.btn--full {
  width: 100%;
}

.header {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--primary);
}

.logo img {
  border-radius: 8px;
  width: 50px;
  height: 50px;
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__list a {
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s;
}

.nav__list a:hover {
  color: var(--accent);
}

.header__notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--surface-alt);
  padding: 6px 12px;
  border-radius: 30px;
  max-width: 260px;
  text-align: right;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
}

.hero {
  padding: 40px 0 60px;
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
}

.hero__grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero__price {
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.price-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.price-old {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  color: var(--text-muted);
}

.hero__badges i {
  color: var(--accent);
  margin-right: 6px;
}

.hero__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.08));
}

.intro-split {
  padding: 64px 0;
  background: var(--surface);
}

.intro-split--reverse {
  background: var(--surface-alt);
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-block--reverse .split-block__image {
  order: -1;
}

.split-block__text h2 {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 24px;
  line-height: 1.2;
}

.split-block__text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
}

.check-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list i {
  color: var(--accent);
  font-size: 1.2rem;
}

.spec-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  background: white;
  padding: 20px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}

.spec-highlights div {
  display: flex;
  flex-direction: column;
}

.spec-highlights span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.spec-highlights strong {
  font-size: 1.3rem;
  font-weight: 700;
}

.split-block__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.features {
  padding: 64px 0;
  background: var(--surface-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header__overline {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header__title {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border-light);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card__icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-muted);
}

.gallery-inline {
  padding: 64px 0;
  background: var(--surface);
}

.gallery-preview {
  text-align: center;
}

.gallery-preview__main {
  margin-bottom: 20px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-preview__main img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}

.gallery-preview__thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.gallery-preview__thumbs img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.gallery-preview__thumbs img.active {
  border-color: var(--accent);
}

.gallery-preview__caption {
  color: var(--text-muted);
  font-style: italic;
}

.reviews {
  padding: 64px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.review-card__stars {
  color: #fbbf24;
  margin-bottom: 16px;
}

.review-card__text {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.6;
  font-style: italic;
}

.review-card__author {
  display: flex;
  flex-direction: column;
}

.review-card__name {
  font-weight: 700;
}

.review-card__location {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq {
  padding: 64px 0;
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-alt);
  border-radius: 16px;
  padding: 8px 0;
}

.faq-item__question {
  padding: 18px 24px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-item__question i {
  color: var(--accent);
  font-size: 1.3rem;
}

.faq-item__answer {
  padding: 0 24px 20px 60px;
  color: var(--text-muted);
  display: none;
}

.faq-item.active .faq-item__answer {
  display: block;
}

.faq-item.active .faq-item__question i {
  transform: rotate(45deg);
}

.contact-form {
  padding: 64px 0;
  background: var(--primary);
  color: white;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form__info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 20px;
}

.contact-form__info p {
  opacity: 0.9;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.contact-form__highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__highlights div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
}

.contact-form__form {
  background: white;
  padding: 36px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  font-size: 1rem;
  transition: border 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}

.form-group--checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-group--checkbox input {
  width: auto;
  margin: 0;
}

.footer {
  background: var(--primary-light);
  color: #e2e8f0;
  margin-top: auto;
  padding-top: 48px;
}

.footer__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer__brand .logo span {
  color: white;
}

.footer__disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.8;
  max-width: 400px;
}

.footer__links h4,
.footer__contacts h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer__links ul li {
  margin-bottom: 12px;
}

.footer__links a {
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--accent-glow);
}

.footer__contacts p {
  margin-bottom: 8px;
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px 24px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  background: var(--accent);
  color: white;
  border: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* ---------- THANKS PAGE STYLES ---------- */
.thanks-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: linear-gradient(145deg, var(--surface-alt) 0%, var(--surface) 100%);
}

.thanks-container {
  max-width: 700px;
  width: 100%;
  background: var(--surface);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
  text-align: center;
  border: 1px solid var(--border-light);
  animation: thanksFadeIn 0.6s ease-out;
}

@keyframes thanksFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.thanks-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  border: 2px solid var(--accent-glow);
}
.thanks-page {
  word-break: break-word;
}

.thanks-container h1 {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 12px;
}

.thanks-email {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--border-light);
}

.thanks-email span {
  font-weight: 600;
  color: var(--accent);
  background: rgba(249,115,22,0.08);
  padding: 2px 8px;
  border-radius: 20px;
}

.thanks-container p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.6;
}

.thanks-container p:last-of-type {
  margin-bottom: 32px;
}

.thanks-container .btn {
  margin-top: 8px;
  min-width: 200px;
}

@media (max-width: 768px) {
  .thanks-container {
    padding: 36px 24px;
  }
  .thanks-container h1 {
    font-size: 2rem;
  }
  .thanks-email {
    font-size: 1rem;
  }
  .thanks-logo {
    width: 60px;
    height: 60px;
  }
    .spec-highlights {
      grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
  .hero__grid {
    gap: 30px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header__container {
    flex-wrap: wrap;
  }
  .nav {
    display: none;
    width: 100%;
    order: 4;
    background: white;
    padding: 20px 0;
  }
  .nav.active {
    display: block;
  }
  .nav__list {
    flex-direction: column;
    gap: 16px;
  }
  .mobile-toggle {
    display: block;
  }
  .header__notice {
    display: none;
  }
  .hero__grid,
  .split-block,
  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-block--reverse .split-block__image {
    order: 0;
  }
  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.legal-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.2rem;
}
.legal-content ul {
  margin: 1rem 0 1rem 1.5rem;
}