
:root {
  --bg: #eef4f1;
  --bg-deep: #dfece8;
  --paper: #ffffff;
  --paper-soft: #f8fbf9;
  --text: #1e2c2b;
  --muted: #687876;
  --green: #0f5d5a;
  --green-dark: #073f41;
  --blue: #2678d6;
  --line: rgba(17, 75, 74, .13);
  --shadow: 0 24px 70px rgba(8, 46, 49, .13);
  --radius-xl: 32px;
  --radius-lg: 24px;
}

* { 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 18% 0%, rgba(255,255,255,.92), rgba(255,255,255,0) 32%),
    radial-gradient(circle at 90% 12%, rgba(52, 134, 168, .20), rgba(52, 134, 168, 0) 30%),
    linear-gradient(180deg, #f5faf8 0%, var(--bg) 38%, var(--bg-deep) 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%, 460px);
  margin: 0 auto;
  min-height: 100vh;
  background: rgba(255,255,255,.38);
  box-shadow: 0 0 80px rgba(16, 58, 58, .09);
}

.page { padding: 14px 12px 0; }
.hero { padding: 0 0 30px; }
.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  min-height: 565px;
  height: min(78vh, 690px);
  background: #0e2532;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.10) 42%, rgba(4,25,32,.58) 100%),
    radial-gradient(circle at 14% 78%, rgba(44, 137, 141, .58), rgba(44, 137, 141, 0) 42%);
  z-index: 1;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
  transform: scale(1.01);
}
.hero-title-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 18px 18px 20px;
  border-radius: 26px;
  background: rgba(251, 253, 252, .86);
  border: 1px solid rgba(255,255,255,.62);
  box-shadow: 0 18px 46px rgba(0,0,0,.20);
  backdrop-filter: blur(14px);
  text-align: center;
}
.hero-title-card span,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-title-card h1 {
  margin: 0;
  font-size: clamp(34px, 9vw, 46px);
  line-height: .98;
  letter-spacing: -.045em;
  color: #112928;
}
.hero-body {
  padding: 24px 14px 0;
  text-align: center;
}
.lead {
  margin: 0 auto 18px;
  max-width: 390px;
  color: #4f6360;
  font-size: 16px;
  line-height: 1.62;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}
.price-old,
.price-current {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
}
.price-old {
  color: rgba(31, 44, 43, .42);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.price-current { color: var(--green-dark); }
.discount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #1d817d 0%, #0f5b5a 100%);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(13, 83, 84, .18);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 330px);
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:disabled { opacity: .72; cursor: default; transform: none; }
.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #146a68 0%, #073f41 100%);
  box-shadow: 0 18px 36px rgba(8, 63, 65, .22);
}
.meta-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.section { padding: 30px 0 0; }
.section-intro {
  padding: 0 14px 16px;
  text-align: center;
}
.section-intro h2 {
  margin: 0;
  color: #173131;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.045em;
}
.story-card,
.order-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: var(--shadow);
}
.story-photo {
  width: 100%;
  max-height: 590px;
  object-fit: cover;
  background: #fff;
}
.story-copy { padding: 22px 18px 20px; }
.story-copy p {
  margin: 0 0 15px;
  color: #425553;
  font-size: 15.5px;
  line-height: 1.68;
}
.story-copy p:last-child { margin-bottom: 0; }
.facts-grid {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}
.fact-item {
  padding: 15px 15px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(238, 248, 246, .95), rgba(248, 251, 249, .95));
  border: 1px solid var(--line);
}
.fact-item strong {
  display: block;
  margin-bottom: 5px;
  color: #174744;
  font-size: 15px;
}
.fact-item p {
  margin: 0;
  color: #61716e;
  font-size: 14px;
  line-height: 1.5;
}
.care-note {
  margin: 20px 0;
  padding: 18px;
  border-radius: 24px;
  color: #eaf7ff;
  background:
    radial-gradient(circle at 18% 0%, rgba(55, 142, 210, .45), rgba(55, 142, 210, 0) 40%),
    linear-gradient(145deg, #0c3539 0%, #08282e 100%);
  box-shadow: 0 16px 36px rgba(4, 34, 39, .17);
}
.care-note h3 {
  margin: 0 0 8px;
  font-size: 19px;
  letter-spacing: -.025em;
}
.care-note p {
  margin: 0;
  color: rgba(239, 249, 255, .86);
}
.image-rhythm {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.image-rhythm img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(18, 82, 80, .10);
  background: #fff;
}
.image-rhythm img:nth-child(2),
.image-rhythm img:nth-child(4) {
  box-shadow: 0 14px 34px rgba(5, 38, 45, .10);
}

.reviews-section { padding-top: 34px; }
.reviews-carousel {
  position: relative;
  margin: 0 0 12px;
  padding: 0 34px;
}
.carousel-viewport {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(15, 60, 61, .10);
}
.carousel-track {
  display: flex;
  transition: transform .42s ease;
}
.review-card {
  min-width: 100%;
  padding: 20px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.78);
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, #1a7470, #0c4c4d);
  font-weight: 800;
}
.review-card h3 {
  margin: 0 0 2px;
  font-size: 16px;
  color: #1b3432;
}
.review-card span:not(.review-avatar) {
  color: var(--muted);
  font-size: 13px;
}
.review-card p {
  margin: 0;
  min-height: 88px;
  color: #4f625f;
  font-size: 15px;
  line-height: 1.62;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 28px rgba(10, 50, 52, .13);
  cursor: pointer;
  transform: translateY(-50%);
}
.carousel-arrow::before {
  content: "";
  position: absolute;
  inset: 13px 12px;
  border-top: 2px solid #175b58;
  border-left: 2px solid #175b58;
}
.carousel-arrow-prev { left: 8px; }
.carousel-arrow-next { right: 8px; }
.carousel-arrow-prev::before { transform: rotate(-45deg); left: 15px; }
.carousel-arrow-next::before { transform: rotate(135deg); right: 15px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 83, 82, .25);
  cursor: pointer;
}
.carousel-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: #115c5a;
}

.order-section { padding: 38px 0 34px; }
.order-card {
  padding: 24px 18px 20px;
  text-align: center;
}
.order-card h2 {
  margin: 0 0 8px;
  color: #173131;
  font-size: 29px;
  line-height: 1.08;
  letter-spacing: -.045em;
}
.order-card > p {
  margin: 0 auto 20px;
  max-width: 340px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.order-form { text-align: left; }
.field-group { margin-bottom: 14px; }
.field-group label {
  display: block;
  margin: 0 0 7px 4px;
  color: #243b3a;
  font-size: 13px;
  font-weight: 800;
}
.field-group input {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(16, 83, 82, .16);
  border-radius: 18px;
  outline: none;
  color: #163433;
  background: rgba(248, 251, 249, .96);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field-group input:focus {
  border-color: rgba(22, 111, 110, .45);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(26, 119, 116, .10);
}
.field-group.has-error input {
  border-color: rgba(196, 53, 53, .65);
  box-shadow: 0 0 0 4px rgba(196, 53, 53, .08);
}
.field-error {
  min-height: 18px;
  margin: 6px 4px 0;
  color: #b03b3b;
  font-size: 12.5px;
  line-height: 1.35;
}
.order-form .button { width: 100%; margin-top: 4px; }
.privacy-note {
  margin: 12px 4px 0;
  text-align: center;
  color: #74817e;
  font-size: 11.5px;
  line-height: 1.45;
}
.form-success {
  min-height: 20px;
  margin: 10px 0 0;
  text-align: center;
  color: #12615e;
  font-size: 13px;
  font-weight: 700;
}
.form-success.is-error { color: #b03b3b; }

.site-footer {
  padding: 26px 22px 34px;
  text-align: center;
  color: #63716f;
  background: rgba(8, 41, 43, .045);
  border-top: 1px solid rgba(16, 75, 74, .10);
}
.footer-title {
  margin-bottom: 10px;
  color: #1d3836;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .10em;
}
.site-footer p {
  margin: 0 0 12px;
  font-size: 12.5px;
  line-height: 1.55;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 14px 0;
}
.footer-links a {
  color: #164f4d;
  font-size: 12.5px;
  font-weight: 700;
}
.registry-note { color: #7b8784; }

@media (min-width: 461px) {
  body { padding: 18px 0; }
  .page-shell { border-radius: 34px; overflow: hidden; }
  .hero-visual { border-radius: var(--radius-xl); }
  .page { padding-top: 12px; }
}

@media (max-width: 365px) {
  .page { padding-left: 10px; padding-right: 10px; }
  .hero-visual { min-height: 520px; }
  .hero-title-card h1 { font-size: 32px; }
  .price-old, .price-current { font-size: 21px; }
  .reviews-carousel { padding: 0 28px; }
  .review-card { padding: 18px; }
}
