*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #e8e4dc;
  background: #1e2120;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: inherit; }

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* === Hero === */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px 40px;
}

.hero__image {
  flex: 0 0 240px;
}
.hero__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.hero__content {
  flex: 1;
  max-width: 520px;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.hero__content > p {
  font-size: 15px;
  margin-bottom: 14px;
  opacity: 0.9;
}

/* === Buttons === */
.links {
  display: flex;
  gap: 14px;
  margin: 28px 0 20px;
}
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.85; }

.btn--ozon {
  background: #005bff;
  color: #fff;
}
.btn--wb {
  background: #cb11ab;
  color: #fff;
}

/* === Note === */
.note {
  font-size: 13px;
  opacity: 0.6;
  font-style: italic;
}

/* === Signature === */
.signature {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
  line-height: 1.8;
}
.signature a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s;
}
.signature a:hover {
  border-color: #fff;
}

/* === Footer === */
.footer {
  text-align: center;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer p {
  font-size: 12px;
  opacity: 0.35;
}
.footer a {
  color: #e8e4dc;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
}
.footer a:hover {
  opacity: 0.8;
}

/* === Responsive === */
@media (max-width: 680px) {
  .hero {
    flex-direction: column;
    gap: 32px;
    padding: 40px 20px 32px;
    text-align: center;
  }
  .hero__image {
    flex: none;
    width: 180px;
  }
  h1 { font-size: 24px; }
  .links { justify-content: center; }
}
