:root {
  --text: #132033;
  --muted: #5f6f83;
  --bg: #f4f7fb;
  --card: #ffffff;
  --line: #dbe5ee;
  --green: #0c9b87;
  --green-dark: #087466;
  --orange: #ff7518;
  --orange-dark: #df5d04;
  --blue: #1264d8;
  --shadow: 0 18px 42px rgba(19, 32, 51, 0.12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.wrap { width: min(1120px, calc(100% - 28px)); margin: 0 auto; }

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.top-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-weight: 900;
  font-size: 18px;
}
.logo::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 9px;
  vertical-align: middle;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--blue));
}
.top-btn,
.sticky-cta button,
.btn,
.choose {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 18px;
  color: #fff;
  background: var(--orange);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 117, 24, 0.28);
}
.top-btn { min-height: 40px; padding: 8px 14px; }

.hero {
  padding: 36px 0 42px;
  background: linear-gradient(180deg, #eafafa 0%, #f8fbfd 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 26px;
  align-items: start;
}
.hero-content {
  display: grid;
  gap: 18px;
}
.label,
.section-title span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 117, 24, 0.12);
  color: #a94600;
  font-size: 14px;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(36px, 5.7vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}
.lead {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 21px;
}
.hero-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.price-bubble {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 2px;
  padding: 13px 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
}
.price-bubble span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.price-bubble strong {
  font-size: 24px;
  color: var(--green-dark);
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.mini-grid div {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 850;
}

.order-card,
.form,
.cards article,
.pricing article,
.specs,
.steps div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}
.order-card {
  position: sticky;
  top: 82px;
  padding: 20px;
}
.order-head span {
  color: var(--green-dark);
  font-weight: 900;
  font-size: 14px;
}
.order-head h2 { margin: 5px 0 14px; font-size: 26px; }
.form {
  display: grid;
  gap: 13px;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}
.form input,
.form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 13px;
  background: #fbfdff;
  color: var(--text);
  outline: 0;
}
.form input:focus,
.form select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(12, 155, 135, 0.12);
}
.selected-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(12, 155, 135, 0.28);
  border-radius: var(--radius);
  background: rgba(12, 155, 135, 0.08);
}
.selected-price span {
  color: var(--muted);
  font-weight: 850;
}
.selected-price strong {
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1;
}
.btn { width: 100%; }
.btn:hover,
.choose:hover,
.top-btn:hover,
.sticky-cta button:hover { background: var(--orange-dark); }
.safe-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
.safe-list li::before { content: "✓ "; color: var(--green-dark); font-weight: 900; }

.section { padding: 64px 0; }
.muted { background: #edf4f8; }
.section-title {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
}
.section-title.left { margin-left: 0; text-align: left; }
.section-title h2 {
  margin: 10px 0 0;
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.cards article {
  padding: 20px;
}
.cards b { display: block; margin-bottom: 8px; font-size: 18px; }
.cards p { margin-bottom: 0; color: var(--muted); }

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.pricing article {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px;
  min-height: 0;
}
.set-photo {
  width: 100%;
  height: 220px;
  border-radius: var(--radius);
  object-fit: contain;
  background: #eef9fb;
  border: 1px solid var(--line);
}
.pricing .hit {
  border-color: rgba(12, 155, 135, 0.45);
  box-shadow: 0 20px 48px rgba(12, 155, 135, 0.18);
}
.badge {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(12, 155, 135, 0.12);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}
.price {
  color: var(--green-dark);
  font-size: 34px;
  font-weight: 950;
}
.pricing p { margin-bottom: 4px; color: var(--muted); }
.choose {
  width: 100%;
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(12, 155, 135, 0.35);
  box-shadow: none;
}
.choose.primary {
  color: #fff;
  background: var(--orange);
  border: 0;
  box-shadow: 0 12px 24px rgba(255, 117, 24, 0.28);
}

.two-col,
.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  align-items: start;
}
.check {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
}
.check li {
  position: relative;
  padding-left: 28px;
}
.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
}
.specs { padding: 22px; }
.specs h3 { margin-bottom: 14px; font-size: 24px; }
.specs p {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.specs p:last-child { border-bottom: 0; }
.specs b { color: var(--text); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}
.gallery figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.92);
  font-weight: 900;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.review-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  position: relative;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #fff;
}
.avatar img,
.avatar span {
  position: absolute;
  inset: 0;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.avatar span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 950;
}
.review-top h3 {
  margin-bottom: 2px;
  font-size: 19px;
}
.review-top p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 750;
}
.review-text {
  margin-bottom: 0;
  color: var(--muted);
}
.review-photo {
  width: 100%;
  height: 210px;
  border-radius: var(--radius);
  object-fit: cover;
  background: #eef4f8;
}
.order-section {
  padding-bottom: 92px;
  background: linear-gradient(135deg, #102238, #09685d);
  color: #fff;
}
.order-section p { color: rgba(255,255,255,0.78); font-size: 19px; }
.steps {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.steps div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
  box-shadow: none;
}
.steps b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
}
.bottom-form {
  padding: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 60;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 24px));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow);
}
.sticky-cta span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.sticky-cta b { font-size: 18px; }
.sticky-cta button {
  min-width: 150px;
}

@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .bottom-grid {
    grid-template-columns: 1fr;
  }
  .order-card { position: static; }
  .mini-grid,
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing,
  .gallery-grid,
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 22px, 1120px); }
  .hero { padding-top: 24px; }
  h1 { font-size: 36px; }
  .lead { font-size: 18px; }
  .hero-photo img {
    height: auto;
    max-height: none;
  }
  .mini-grid,
  .cards,
  .pricing,
  .gallery-grid,
  .review-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .gallery img {
    height: 320px;
  }
  .set-photo {
    height: 260px;
  }
  .section { padding: 48px 0; }
  .sticky-cta { display: flex; }
}

@media (max-width: 420px) {
  h1 { font-size: 32px; }
  .hero-photo img {
    height: auto;
  }
  .price-bubble {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
