:root {
  --bg: #e6f0f5;
  --page: #f7fbfd;
  --page-soft: #edf5f9;
  --text: #1e2f38;
  --muted: #5d7480;
  --soft: #8fa5b0;
  --line: rgba(45, 90, 110, .13);
  --accent: #3a8fb7;
  --accent-dark: #1e5f80;
  --gold: #7ec8e3;
  --gold-soft: rgba(126, 200, 227, .20);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(30, 95, 128, .14);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.9), rgba(255,255,255,0) 28%),
    radial-gradient(circle at 10% 18%, rgba(58,143,183,.13), rgba(58,143,183,0) 25%),
    linear-gradient(180deg, #eaf4f9 0%, var(--bg) 48%, #d4e6ef 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.page-shell {
  width: min(100%, 446px);
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--page) 0%, #edf5f9 100%);
  box-shadow: 0 0 80px rgba(30, 95, 128, .14);
}

.page { overflow: hidden; }
.hero { padding: 12px 12px 0; }
.hero-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 490px;
  background: #1e2f38;
  box-shadow: var(--shadow);
}
.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 490px;
  object-fit: cover;
  object-position: 50% 44%;
}
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,35,45,.10) 0%, rgba(15,35,45,0) 42%, rgba(15,35,45,.55) 100%),
    radial-gradient(circle at 50% 94%, rgba(58,143,183,.25), rgba(58,143,183,0) 44%);
  pointer-events: none;
}
.hero-title-card {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 17px 17px 18px;
  border-radius: 24px;
  background: rgba(30, 47, 56, .62);
  border: 1px solid rgba(255, 255, 255, .30);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #f0f8fc;
  text-align: center;
}
.hero-title-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(126, 200, 227, .28);
  color: #cdeaf7;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin: 0; }
h1 {
  font-size: clamp(34px, 9vw, 44px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 850;
}
.hero-body {
  padding: 22px 14px 26px;
  text-align: center;
}
.lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  max-width: 390px;
  margin: 0 auto 18px;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 17px;
}
.price-old,
.price-current {
  font-size: 23px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: -.035em;
}
.price-old { color: rgba(30,47,56,.42); text-decoration: line-through; text-decoration-thickness: 2px; }
.price-current { color: var(--accent-dark); }
.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(58,143,183,.10);
  color: var(--accent);
  border: 1px solid rgba(58,143,183,.20);
  font-weight: 850;
  font-size: 13px;
}
.button {
  border: 0;
  cursor: pointer;
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 820;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.button-primary {
  color: #ffffff;
  background: linear-gradient(180deg, #4aa3c9 0%, var(--accent-dark) 100%);
  box-shadow: 0 16px 36px rgba(30, 95, 128, .27), inset 0 1px 0 rgba(255,255,255,.25);
}
.button:hover { transform: translateY(-1px); filter: saturate(1.03); }
.button:active { transform: translateY(0); }
.button:disabled { opacity: .68; cursor: wait; transform: none; }
.meta-note {
  margin-top: 9px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.4;
}

.section { padding: 26px 12px 0; }
.section-intro {
  text-align: center;
  padding: 0 12px 15px;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 13px;
  margin-bottom: 9px;
  border-radius: 999px;
  color: var(--accent-dark);
  background: rgba(58,143,183,.09);
  border: 1px solid rgba(58,143,183,.15);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(27px, 7.2vw, 34px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 850;
}
.story-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #edf5f9 100%);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 22px 62px rgba(30, 95, 128, .10);
}
.story-photo {
  width: 100%;
  aspect-ratio: 3 / 3.9;
  object-fit: cover;
  object-position: center top;
  background: #1e2f38;
}
.story-copy {
  padding: 21px 18px 22px;
}
.story-copy p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.64;
}
.story-copy > p + p { margin-top: 13px; }
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 0;
}
.fact-item {
  min-height: 136px;
  padding: 15px 13px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(45,90,110,.09);
}
.fact-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 14px;
  letter-spacing: -.015em;
}
.fact-item p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.mini-note {
  margin-top: 12px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(126,200,227,.22), rgba(255,255,255,.65));
  border: 1px solid rgba(126,200,227,.28);
}
.mini-note h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.mini-note p { font-size: 14px; line-height: 1.55; }
.feature-gallery {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.feature-gallery figure {
  overflow: hidden;
  margin: 0;
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: 0 16px 44px rgba(30, 95, 128, .09);
}
.feature-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1.14;
  object-fit: cover;
  object-position: center top;
}
.feature-gallery figcaption {
  padding: 12px 15px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.reviews-section { padding-top: 30px; }
.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 8px;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(30, 95, 128, .10);
}
.carousel-track {
  display: flex;
  transition: transform .38s ease;
}
.review-card {
  flex: 0 0 100%;
  min-height: 188px;
  padding: 20px 18px 19px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(237,245,249,.96));
  border: 1px solid rgba(255,255,255,.82);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(180deg, #4aa3c9, #1e5f80);
  box-shadow: 0 12px 30px rgba(30, 95, 128, .22);
  font-weight: 850;
}
.review-meta h3 {
  margin: 0 0 2px;
  font-size: 16px;
  line-height: 1.2;
}
.review-meta span { color: var(--soft); font-size: 13px; }
.review-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}
.carousel-arrow {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 30px rgba(30, 95, 128, .10);
  position: relative;
}
.carousel-arrow::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 50%;
  left: 50%;
  border-top: 2px solid var(--accent-dark);
  border-right: 2px solid var(--accent-dark);
}
.carousel-arrow-prev::before { transform: translate(-35%, -50%) rotate(-135deg); }
.carousel-arrow-next::before { transform: translate(-65%, -50%) rotate(45deg); }
.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(30,95,128,.23);
  transition: width .22s ease, background .22s ease;
}
.carousel-dots button.is-active { width: 24px; background: var(--accent-dark); }

.order-section {
  padding: 30px 12px 26px;
}
.order-card {
  text-align: center;
  padding: 24px 16px 18px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(237,245,249,.96));
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}
.order-card h2 { margin-bottom: 10px; }
.order-card > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 auto 17px;
  max-width: 330px;
}
.order-form {
  display: grid;
  gap: 12px;
  text-align: left;
}
.field-group { position: relative; }
.field-group label {
  display: block;
  margin: 0 0 7px 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}
.field-group input {
  width: 100%;
  min-height: 55px;
  border: 1px solid rgba(45,90,110,.16);
  border-radius: 18px;
  padding: 0 16px;
  color: var(--text);
  outline: none;
  background: rgba(255,255,255,.85);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field-group input:focus {
  border-color: rgba(58,143,183,.55);
  box-shadow: 0 0 0 4px rgba(58,143,183,.10);
  background: #fff;
}
.field-group.has-error input {
  border-color: rgba(58,143,183,.75);
  box-shadow: 0 0 0 4px rgba(58,143,183,.10);
}
.field-error {
  display: block;
  min-height: 16px;
  padding: 5px 4px 0;
  color: var(--accent);
  font-size: 12px;
  line-height: 1.25;
}
.button-submit { margin-top: 2px; }
.policy-text {
  margin: -2px 4px 0;
  color: var(--soft);
  text-align: center;
  font-size: 11.5px;
  line-height: 1.45;
}
.form-message {
  min-height: 18px;
  color: var(--accent);
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
}

.footer {
  padding: 22px 18px 30px;
  text-align: center;
  border-top: 1px solid rgba(45,90,110,.10);
  background: #d8e8f0;
}
.footer h2 {
  margin: 0 0 11px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.footer p,
.footer-links,
.registry-note {
  color: #5d7480;
  font-size: 12.5px;
  line-height: 1.5;
}
.footer p + p { margin-top: 4px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 12px 0 8px;
}
.footer-links a { text-decoration: underline; text-underline-offset: 3px; }
.registry-note { color: #6d8591; }

@media (max-width: 374px) {
  .hero { padding-inline: 8px; }
  .section, .order-section { padding-inline: 8px; }
  .hero-photo-wrap, .story-card, .order-card { border-radius: 26px; }
  .facts-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap, .hero-photo { min-height: 430px; }
  .reviews-carousel { grid-template-columns: 32px minmax(0,1fr) 32px; gap: 5px; }
  .carousel-arrow { width: 32px; height: 32px; }
}

@media (min-width: 620px) {
  .page-shell { margin-top: 18px; margin-bottom: 18px; border-radius: 34px; overflow: hidden; }
}