:root {
  --bg: #eef3f5;
  --bg-soft: #f8fbfc;
  --panel: #ffffff;
  --panel-dark: #111820;
  --text: #17202a;
  --muted: #64717d;
  --line: rgba(20, 31, 41, .10);
  --blue: #1684bd;
  --blue-dark: #0e5f8d;
  --blue-soft: rgba(22, 132, 189, .10);
  --shadow: 0 22px 70px rgba(31, 54, 70, .14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(22, 132, 189, .18), transparent 28%),
    linear-gradient(180deg, #e8f0f4 0%, #f8fafb 44%, #e9eef1 100%);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.page-shell {
  width: min(100%, 450px);
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255,255,255,.68), rgba(255,255,255,.92));
  min-height: 100vh;
  box-shadow: 0 0 80px rgba(14, 37, 55, .13);
}

.page { padding: 10px 10px 0; }
.section { padding: 28px 4px 0; }

.hero {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 0 0 34px 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo-wrap {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #0d1117;
}
.hero-photo {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: 50% 38%;
}
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.05) 46%, rgba(0,0,0,.58) 100%);
  pointer-events: none;
}
.hero-title-card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 16px 16px 18px;
  border-radius: 24px;
  color: #fff;
  text-align: center;
  background: rgba(9, 15, 21, .68);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 42px rgba(0,0,0,.26);
}
.hero-title-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #b9e8ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}
h1, h2, h3, p { margin: 0; }
h1 {
  font-size: clamp(29px, 8vw, 40px);
  line-height: .98;
  letter-spacing: -.045em;
}
.hero-body {
  padding: 22px 18px 24px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #f5f9fb 100%);
}
.lead {
  color: #4e5c68;
  font-size: 15.5px;
  line-height: 1.62;
  max-width: 380px;
  margin: 0 auto;
}
.price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 13px;
  margin: 18px 0 16px;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -.04em;
}
.price-old {
  color: rgba(54, 66, 77, .42);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.price-current { color: #0e5f8d; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.button:active { transform: translateY(1px); }
.button:disabled { opacity: .68; cursor: wait; }
.button-primary {
  width: min(100%, 310px);
  color: #fff;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  box-shadow: 0 15px 36px rgba(14, 95, 141, .24);
}
.meta-note {
  margin-top: 10px;
  color: #77838e;
  font-size: 12.5px;
}

.section-intro {
  padding: 0 14px 14px;
  text-align: center;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 18px;
  height: 1px;
  background: rgba(14,95,141,.28);
}
h2 {
  font-size: clamp(25px, 7vw, 34px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.story-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid rgba(20,31,41,.08);
  box-shadow: 0 20px 60px rgba(28, 48, 62, .11);
}
.story-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  background: #f4f5f5;
}
.story-copy { padding: 19px 16px 18px; }
.story-copy > p {
  color: #4d5a66;
  font-size: 15px;
  line-height: 1.7;
}
.story-copy > p + p { margin-top: 11px; }
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 18px;
}
.fact-item {
  min-height: 122px;
  padding: 13px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f6fafc 0%, #eef5f8 100%);
  border: 1px solid var(--line);
}
.fact-item strong {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  letter-spacing: -.02em;
}
.fact-item p {
  color: #64717d;
  font-size: 12.5px;
  line-height: 1.45;
}
.mini-note {
  margin-top: 14px;
  padding: 16px;
  border-radius: 20px;
  color: #eaf7fd;
  background:
    radial-gradient(circle at top left, rgba(22,132,189,.38), transparent 40%),
    linear-gradient(145deg, #0e151d 0%, #17242f 100%);
}
.mini-note h3 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: -.03em;
}
.mini-note p {
  color: rgba(234,247,253,.78);
  font-size: 14px;
  line-height: 1.62;
}
.image-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 14px;
}
.image-strip img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 19px;
  border: 1px solid rgba(20,31,41,.08);
  background: #f7f7f7;
}

.reviews-carousel {
  position: relative;
  margin: 0 0 0;
  padding: 0 34px;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(31, 54, 70, .10);
}
.carousel-track {
  display: flex;
  transition: transform .38s ease;
  will-change: transform;
}
.review-card {
  flex: 0 0 100%;
  min-height: 218px;
  padding: 19px;
  background: linear-gradient(180deg, #fff 0%, #f6fafc 100%);
  border: 1px solid rgba(20,31,41,.08);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.review-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(180deg, #1c8fc8 0%, #0e5f8d 100%);
}
.review-meta h3 {
  font-size: 16px;
  letter-spacing: -.02em;
}
.review-meta span {
  display: block;
  margin-top: 2px;
  color: #7a8791;
  font-size: 12.5px;
}
.review-card p {
  color: #46535e;
  font-size: 14.5px;
  line-height: 1.65;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(14,95,141,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 28px rgba(31,54,70,.14);
  transform: translateY(-50%);
  cursor: pointer;
}
.carousel-arrow::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-top: 2px solid #0e5f8d;
  border-left: 2px solid #0e5f8d;
  top: 13px;
  left: 14px;
}
.carousel-arrow-prev { left: 5px; }
.carousel-arrow-next { right: 5px; }
.carousel-arrow-prev::before { transform: rotate(-45deg); }
.carousel-arrow-next::before { transform: rotate(135deg); left: 11px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}
.carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(14,95,141,.23);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.carousel-dots button.is-active {
  width: 22px;
  background: #0e5f8d;
}

.order-section { padding: 30px 4px 0; }
.order-card {
  padding: 24px 16px 18px;
  border-radius: 30px;
  text-align: center;
  color: #edf6fa;
  background:
    radial-gradient(circle at top right, rgba(22,132,189,.36), transparent 35%),
    linear-gradient(160deg, #101720 0%, #1a2632 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 70px rgba(10, 24, 35, .20);
}
.order-card .section-kicker { color: #a8def7; }
.order-card .section-kicker::before,
.order-card .section-kicker::after { background: rgba(168,222,247,.42); }
.order-card h2 { color: #fff; }
.order-card > p {
  margin: 9px auto 17px;
  max-width: 330px;
  color: rgba(237,246,250,.70);
  font-size: 14.5px;
  line-height: 1.55;
}
.order-form { display: grid; gap: 12px; }
.field-group { text-align: left; }
.field-group label {
  display: block;
  margin: 0 0 6px 4px;
  color: rgba(237,246,250,.82);
  font-size: 13px;
  font-weight: 700;
}
.field-group input {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 17px;
  padding: 0 15px;
  color: #f7fbfd;
  background: rgba(255,255,255,.08);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field-group input::placeholder { color: rgba(237,246,250,.42); }
.field-group input:focus {
  background: rgba(255,255,255,.11);
  border-color: rgba(168,222,247,.72);
  box-shadow: 0 0 0 4px rgba(22,132,189,.16);
}
.field-error {
  min-height: 18px;
  padding: 5px 4px 0;
  color: #ffb8b8;
  font-size: 12px;
  line-height: 1.25;
}
.field-group.has-error input {
  border-color: rgba(255, 123, 123, .75);
  box-shadow: 0 0 0 4px rgba(255, 123, 123, .12);
}
.order-form .button-primary { width: 100%; margin-top: 2px; }
.privacy-note {
  color: rgba(237,246,250,.56);
  font-size: 11.5px;
  line-height: 1.45;
}
.form-success {
  min-height: 18px;
  color: #b6f5c1;
  font-size: 12.5px;
}
.form-success.is-error { color: #ffb8b8; }

.site-footer {
  padding: 24px 18px 30px;
  color: #5d6872;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.55;
}
.footer-title {
  margin-bottom: 8px;
  color: #1a2733;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.site-footer p + p { margin-top: 10px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin: 13px 0 8px;
}
.footer-links a {
  color: #0e5f8d;
  text-decoration: none;
  border-bottom: 1px solid rgba(14,95,141,.22);
}
.registry-note { color: #7b858d; }

.legal-body {
  background:
    radial-gradient(circle at top left, rgba(22,132,189,.16), transparent 30%),
    linear-gradient(180deg, #eef4f7 0%, #f9fbfc 100%);
}
.legal-page {
  width: min(100%, 450px);
  margin: 0 auto;
  padding: 18px 14px 34px;
}
.legal-card,
.legal-page > h1 ~ p,
.legal-page > h2,
.legal-page > p { overflow-wrap: anywhere; }
.back-link {
  display: inline-flex;
  margin-bottom: 14px;
  color: #0e5f8d;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(14,95,141,.24);
}
.legal-card {
  padding: 22px 18px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(20,31,41,.08);
  box-shadow: 0 22px 64px rgba(31,54,70,.12);
}
.legal-card h1,
.legal-page > h1 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.legal-card h2,
.legal-page > h2 {
  margin: 22px 0 8px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.legal-card p,
.legal-card li,
.legal-page > p {
  color: #55636e;
  font-size: 14px;
  line-height: 1.62;
}
.legal-card p + p,
.legal-page > p + p { margin-top: 9px; }
.legal-card ul { margin: 10px 0 0; padding-left: 18px; }
.legal-card li { margin: 6px 0; }
.legal-card strong { color: #17202a; }
.legal-meta { margin-bottom: 18px; color: #6e7b85; font-size: 13px; }

@media (max-width: 380px) {
  .page { padding-left: 7px; padding-right: 7px; }
  .hero-photo-wrap, .hero-photo { height: 540px; min-height: 540px; }
  .hero-title-card { left: 12px; right: 12px; padding-left: 12px; padding-right: 12px; }
  .facts-grid { grid-template-columns: 1fr; }
  .reviews-carousel { padding: 0 28px; }
  .carousel-arrow { width: 32px; height: 32px; }
  .price-row { font-size: 22px; }
}
