@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --color-bg: #ffffff;
  --color-text: #1e1e1e;
  --color-muted: #5a5a5a;
  --color-primary: #0a0a0a;
  --color-accent: #d4af37;
  --color-border: #eaeaea;
  --color-card-bg: #f9f9f9;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 24px -8px rgba(0, 0, 0, 0.08);
  --container-width: 1280px;
  --section-gap: 4rem;
}
.thanks-card {
  word-break: break-word;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

main {
  flex: 1;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-gap) 0;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading--center {
  text-align: center;
}

.section-heading__pretitle {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

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

.header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}

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

.logo__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo__link img {
  border-radius: 8px;
  object-fit: contain;
}

.logo__line1,
.logo__line2 {
  display: block;
  font-weight: 700;
  line-height: 1.1;
}

.logo__line1 {
  font-size: 1.4rem;
}

.logo__line2 {
  font-size: 1rem;
  color: var(--color-muted);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__link {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}

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

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

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  position: relative;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  position: absolute;
  left: 10px;
  transition: all 0.2s;
}

.hamburger {
  top: 21px;
}

.hamburger::before {
  content: '';
  top: -8px;
}

.hamburger::after {
  content: '';
  top: 8px;
}

.hero {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.hero__price {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.price__current {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.price__badge {
  background: var(--color-accent);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1rem;
}

.btn--primary {
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.hero__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  list-style: none;
}

.hero__perks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.hero__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 1/1;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--color-card-bg);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  transition: transform 0.2s;
  box-shadow: var(--shadow-sm);
}

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

.feature-card__icon {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

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

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
  aspect-ratio: 1/1;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumbs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.2s;
}

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

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight__list {
  list-style: none;
  margin: 1.5rem 0;
}

.insight__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.insight__list i {
  color: var(--color-accent);
  margin-top: 0.2rem;
}

.insight__colors {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.color-swatches {
  display: flex;
  gap: 0.5rem;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

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

.step {
  text-align: center;
}

.step__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1rem 0;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1/1;
  object-fit: cover;
}

.step h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

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

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

.review-card {
  background: var(--color-card-bg);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.review-card__stars {
  color: #f5b342;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card__text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  quotes: none;
}

.review-card__author {
  font-weight: 600;
  color: var(--color-muted);
}

.order {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

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

.order__lead {
  margin: 1rem 0 1.5rem;
  color: var(--color-muted);
}

.order__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1/1;
  object-fit: cover;
}

.order-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group--checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--color-muted);
  text-align: center;
}

.footer {
  background: var(--color-primary);
  color: #e0e0e0;
  padding: 2.5rem 0 1.5rem;
  margin-top: auto;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer__contacts {
  font-style: normal;
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1rem 0;
}

.footer__legal a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer__disclaimer {
  font-size: 0.8rem;
  color: #a0a0a0;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  max-width: 800px;
}

.footer__bottom {
  font-size: 0.85rem;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
}

.logo--footer .logo__line1,
.logo--footer .logo__line2 {
  color: white;
}

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

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

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 1.2rem 0 0.8rem;
}

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

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

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

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

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

  .section {
    padding: 3rem 0;
  }

  .header__container {
    flex-wrap: wrap;
  }

  .nav__list {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    z-index: 100;
  }

  .nav__list.active {
    display: flex;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .header__notice {
    display: none;
  }

  .hero__grid,
  .insight__wrapper,
  .order__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__media {
    order: -1;
  }

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

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

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

  .order-form {
    padding: 1.5rem;
  }

  .legal-content {
    padding: 30px 16px;
  }
}