
:root {
  --bg: #f4f5f8;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --text: #1f232b;
  --muted: #657081;
  --line: rgba(31, 35, 43, 0.08);
  --shadow: 0 22px 64px rgba(31, 35, 43, 0.10);
  --accent: #6f62c7;
  --accent-strong: #5b4db7;
  --accent-soft: rgba(111, 98, 199, 0.10);
  --accent-soft-2: rgba(255, 221, 99, 0.22);
  --danger: #c84f4f;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(111,98,199,0.10), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 221, 99, 0.20), transparent 28%),
    linear-gradient(180deg, #f7f8fb 0%, #eef0f5 100%);
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.page-shell {
  width: min(100%, 430px);
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.25) 100%);
}
.page { padding: 14px 14px 0; }
.section, .hero, .order-section { margin-bottom: 14px; }
.hero-card, .flow-block, .paired-card, .order-card, .review-card, .legal-page {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card { position: relative; min-height: 448px; }
.hero-card img { width: 100%; height: 448px; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(25, 28, 32, 0.02) 16%, rgba(25, 28, 32, 0.64) 100%); }
.hero-copy {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1;
  color: #fff;
}
.hero-kicker, .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero-kicker { background: rgba(255,255,255,0.16); backdrop-filter: blur(10px); }
.hero-copy h1 {
  margin: 10px 0 8px;
  font-size: 33px;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.hero-inline-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}
.hero-body { padding: 18px 16px 2px; }
.lead {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.62;
}
.chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.chips-grid span, .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 600;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 14px;
}
.price-old {
  color: rgba(31, 35, 43, 0.42);
  text-decoration: line-through;
  font-size: 24px;
  font-weight: 700;
}
.price-current {
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: transform .18s ease, opacity .18s ease;
}
.button-primary { background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%); color: #fff; box-shadow: 0 16px 34px rgba(91, 77, 183, 0.24); }
.meta-note { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.section-intro, .section-intro-left { padding: 8px 4px 12px; }
.section-intro h2, .flow-copy h2, .order-card h2, .paired-copy h3 {
  margin: 10px 0 10px;
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.flow-block {
  display: grid;
  gap: 0;
}
.flow-copy, .paired-copy, .order-card { padding: 18px 16px; }
.flow-copy p, .paired-copy p, .review-card p, .order-card > p, .legal-page p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
}
.flow-photo, .paired-card img { width: 100%; height: auto; }
.note-banner {
  margin-top: 10px;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255, 221, 99, 0.18);
  color: #685519;
  border: 1px solid rgba(194, 161, 57, 0.16);
  font-size: 14px;
  line-height: 1.5;
}
.paired-card {
  display: grid;
  gap: 0;
  margin-bottom: 12px;
}
.paired-card:last-child { margin-bottom: 0; }
.reviews-carousel { position: relative; }
.carousel-viewport { overflow: hidden; border-radius: 28px; }
.carousel-track { display: flex; transition: transform .35s ease; }
.review-card {
  min-width: 100%;
  padding: 18px 18px 20px;
  background: rgba(255,255,255,0.96);
}
.review-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.review-city {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft-2);
  color: #79610b;
  font-size: 12px;
  font-weight: 700;
}
.review-meta h3, .paired-copy h3 { margin: 0; }
.carousel-arrow {
  position: absolute;
  top: calc(50% - 22px);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 10px 24px rgba(31, 35, 43, 0.10);
  cursor: pointer;
  z-index: 2;
}
.carousel-arrow::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  margin: 0 auto;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
}
.carousel-arrow-prev { left: 10px; }
.carousel-arrow-prev::before { transform: rotate(-135deg); }
.carousel-arrow-next { right: 10px; }
.carousel-arrow-next::before { transform: rotate(45deg); }
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 2px;
}
.carousel-dots button { width: 8px; height: 8px; padding: 0; border-radius: 50%; border: 0; background: rgba(91, 77, 183, 0.18); cursor: pointer; }
.carousel-dots button.is-active { background: var(--accent-strong); }
.order-form { display: grid; gap: 14px; margin-top: 16px; }
.field-group { display: grid; gap: 8px; }
.field-group label { font-size: 14px; font-weight: 600; }
.field-group input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(31, 35, 43, 0.12);
  background: rgba(255,255,255,0.98);
  color: var(--text);
  font-size: 16px;
  outline: none;
}
.field-group input:focus { border-color: rgba(111, 98, 199, 0.52); box-shadow: 0 0 0 4px rgba(111, 98, 199, 0.10); }
.field-group.has-error input { border-color: rgba(200, 79, 79, 0.58); box-shadow: 0 0 0 4px rgba(200, 79, 79, 0.10); }
.field-error { min-height: 18px; margin: 0; color: var(--danger); font-size: 12px; line-height: 1.35; }
.privacy-note, .form-success, .registry-note, .site-footer p, .footer-links a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.form-success.is-error { color: var(--danger); }
.site-footer { padding: 8px 18px 34px; text-align: center; }
.footer-title { margin-bottom: 10px; font-size: 13px; font-weight: 800; letter-spacing: .06em; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; margin: 12px 0 10px; }
.footer-links a { text-decoration: none; }
.legal-body {
  min-height: 100vh;
  padding: 18px 14px 34px;
  background:
    radial-gradient(circle at top left, rgba(111,98,199,0.10), transparent 34%),
    radial-gradient(circle at top right, rgba(255,221,99,0.20), transparent 28%),
    linear-gradient(180deg, #f7f8fb 0%, #eef0f5 100%);
}
.legal-page {
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 24px 18px;
}
.legal-page h1, .legal-page h2 { margin: 0 0 14px; line-height: 1.1; letter-spacing: -0.04em; }
.legal-page h1 { font-size: 32px; }
.legal-page h2 { font-size: 20px; margin-top: 18px; }
.back-link { display: inline-flex; margin-bottom: 18px; color: var(--accent-strong); text-decoration: none; font-weight: 600; }
@media (min-width: 431px) {
  body { padding: 0 0 30px; }
  .page-shell { border-radius: 0 0 34px 34px; overflow: hidden; }
}
