:root {
  --orange: #ff8f1c;
  --yellow: #ffcc00;
  --lime: #f5f000;
  --green-soft: #aded0c;
  --green: #51d72f;
  --ink: #171713;
  --muted: #65695d;
  --paper: #fffdf0;
  --line: rgba(23, 23, 19, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 23, 19, 0.13);
  --warm-gradient: linear-gradient(135deg, #ffe266 0%, #ffbd38 48%, #ff8f1c 100%);
  --warm-gradient-soft: linear-gradient(145deg, rgba(255, 226, 102, 0.95) 0%, rgba(255, 189, 56, 0.92) 54%, rgba(255, 143, 28, 0.9) 100%);
  --script: "Great Vibes", "Segoe Script", "Brush Script MT", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 240, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.hero-actions,
.social-links,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--orange), var(--yellow), var(--green), var(--orange));
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.nav {
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav a,
.header-action,
.service-card a,
.social-links a,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.service-card a:hover,
.social-links a:hover {
  color: var(--orange);
}

.header-action {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--warm-gradient);
  font-weight: 750;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(50px, 8vw, 96px) clamp(18px, 5vw, 72px) 44px;
  background: var(--ink);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 240, 0.9) 0%, rgba(255, 253, 240, 0.69) 38%, rgba(255, 253, 240, 0.24) 68%, rgba(23, 23, 19, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(23, 23, 19, 0.2));
  z-index: 1;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy {
  margin-left: clamp(58px, 6vw, 96px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.great-vibes-regular {
  font-family: var(--script);
  font-weight: 400;
  font-style: normal;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--script);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.16;
}

.hero-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button.primary {
  background: var(--warm-gradient);
  color: var(--ink);
}

.button.secondary {
  background: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  border: 1px solid var(--ink);
  background: var(--ink);
}

.trust-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: var(--warm-gradient-soft);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.service-grid,
.price-columns,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--ink);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 9px 9px 0 var(--ink);
}

.service-card.laser {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.42) 100%),
    linear-gradient(180deg, rgba(255, 204, 0, 0.18), rgba(173, 237, 12, 0.2)),
    url("service-laser-bg.png") center right / cover no-repeat;
}

.service-card.laser > * {
  position: relative;
  z-index: 1;
}

.service-card.massage {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 48%, rgba(255, 255, 255, 0.58) 100%),
    linear-gradient(180deg, rgba(173, 237, 12, 0.18), rgba(255, 143, 28, 0.12)),
    url("service-lpg-bg.jpg") center right / 92% auto no-repeat;
}

.service-card.massage > * {
  position: relative;
  z-index: 1;
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 4px 4px 0 var(--ink);
  overflow: hidden;
}

.service-icon img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.tag {
  margin: 0;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.service-card p,
.service-card li {
  color: var(--muted);
}

.service-card ul {
  padding-left: 20px;
  margin: 8px 0 24px;
}

.device {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: var(--white);
}

.device-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.device-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.device-specs div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.device-specs strong,
.device-specs span {
  display: block;
}

.device-specs strong {
  margin-bottom: 4px;
  font-family: var(--script);
  font-weight: 400;
  font-size: 24px;
}

.device-specs span {
  color: var(--muted);
  font-size: 14px;
}

.device-photo {
  margin: 0;
}

.device-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--ink);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 12px 12px 0 var(--green);
}

.device-photo figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.price-list {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.price-list h3 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.price-list.accent {
  background: linear-gradient(145deg, rgba(255, 204, 0, 0.28), rgba(81, 215, 47, 0.14));
  border-color: var(--ink);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: var(--muted);
}

.calculator-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  background: var(--ink);
  color: var(--white);
}

.calculator-page {
  background: var(--ink);
}

.advanced-calculator {
  align-items: start;
}

.calculator-intro {
  min-width: 0;
}

.calculator-card,
.total-card,
.booking-form,
.booking-copy {
  border-radius: 26px;
}

.calculator-card {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 26px;
  padding: clamp(22px, 4vw, 38px);
  background: #25251f;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.calculator-card p {
  color: rgba(255, 255, 255, 0.72);
}

.calculator {
  display: grid;
  gap: 16px;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
}

legend {
  padding: 0 8px;
  color: var(--yellow);
  font-weight: 850;
}

.calculator label,
.discount-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.86);
}

.calculator label span {
  margin-left: auto;
  color: var(--green-soft);
  font-weight: 850;
  white-space: nowrap;
}

input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: var(--orange);
}

input[type="checkbox"]:disabled,
.field-label input:disabled,
.field-label select:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.discount-toggle.is-disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.field-label {
  display: grid !important;
  align-items: stretch !important;
  gap: 8px !important;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.field-label input,
.field-label select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.total-card {
  align-self: start;
  position: sticky;
  top: 92px;
  padding: 28px;
  background: var(--warm-gradient-soft);
  color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 8px 8px 0 var(--green);
}

.total-card p {
  margin-bottom: 6px;
  font-weight: 850;
}

.total-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--script);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.05;
}

.total-card span {
  display: block;
  min-height: 72px;
  margin-bottom: 20px;
  color: #444232;
}

.total-breakdown {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 23, 19, 0.18);
}

.total-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.total-breakdown span {
  min-height: auto;
  margin: 0;
}

.calculator-request {
  background:
    linear-gradient(135deg, rgba(255, 204, 0, 0.34), rgba(81, 215, 47, 0.12) 38%, transparent 70%),
    var(--paper);
}

.request-summary {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--muted);
  white-space: pre-wrap;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reviews-slider {
  position: relative;
}

.slider-window {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 18px;
  transition: transform 420ms ease;
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.stars {
  margin-bottom: 16px;
  color: var(--orange);
  letter-spacing: 0;
}

.review-card p {
  color: var(--muted);
}

.review-card span {
  font-weight: 850;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.slider-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--warm-gradient);
  color: var(--ink);
  font-family: var(--script);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--warm-gradient);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.7fr);
  gap: 20px;
  background:
    linear-gradient(135deg, rgba(245, 240, 0, 0.34), transparent 34%),
    linear-gradient(180deg, var(--paper), #fff);
}

.booking-copy {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
}

.booking-copy p:not(.eyebrow) {
  color: var(--muted);
}

.social-links {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.social-links a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--warm-gradient);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.social-links a:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.social-links svg {
  width: 30px;
  height: 30px;
  display: block;
}

.social-links svg path {
  fill: currentColor;
}

.social-button.whatsapp {
  color: #138a38;
}

.social-links .social-button.whatsapp:hover {
  color: #138a38;
}

.social-button.telegram {
  color: #1685c7;
}

.social-links .social-button.telegram:hover {
  color: #1685c7;
}

.social-button.vk {
  color: #2474d8;
}

.social-links .social-button.vk:hover {
  color: #2474d8;
}

.social-button.max {
  color: var(--ink);
}

.social-links .social-button.max:hover {
  color: var(--ink);
}

.social-links .max-logo {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 1px 0 rgba(23, 23, 19, 0.22));
}

.social-links .max-logo-bg {
  fill: url("#maxLogoGradient");
}

.social-links .max-logo-mark {
  fill: var(--white);
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 9px 9px 0 rgba(255, 189, 56, 0.92), 14px 14px 0 rgba(255, 143, 28, 0.34);
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

#bookingResult {
  color: var(--muted);
  white-space: pre-wrap;
}

.policy-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.policy-help-button {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.consent-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--ink);
}

.consent-checkbox input[type="checkbox"] {
  margin-top: 2px;
}

.policy-modal.hidden {
  display: none;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
}

.policy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 19, 0.55);
}

.policy-modal__content {
  position: relative;
  width: min(620px, calc(100% - 24px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid var(--ink);
  border-radius: 18px;
  background: var(--white);
  padding: 20px;
  color: var(--ink);
}

.policy-modal__content h3 {
  margin-bottom: 12px;
}

.policy-modal__content p {
  margin: 0 0 10px;
}

.policy-modal__note {
  color: var(--muted);
  font-size: 13px;
}

.policy-modal__close {
  margin-top: 8px;
}

.footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .device,
  .calculator-section,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    margin-left: 0;
  }

  .calculator-card {
    grid-template-columns: 1fr;
  }

  .advanced-calculator {
    gap: 24px;
  }

  .total-card {
    position: static;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    max-width: 110px;
    line-height: 1;
  }

  .header-action {
    padding: 9px 12px;
    font-size: 14px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(255, 253, 240, 0.92) 0%, rgba(255, 253, 240, 0.78) 52%, rgba(23, 23, 19, 0.2) 100%);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .trust-strip,
  .service-grid,
  .price-columns,
  .device-specs {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin: 0 16px;
  }

  .service-card {
    min-height: 0;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .review-card {
    flex-basis: 100%;
  }

  .service-card-top {
    margin-bottom: 24px;
  }

  .price-row {
    align-items: flex-start;
  }

  .calculator-section,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .calculator label {
    align-items: flex-start;
  }

  .calculator label span {
    min-width: 74px;
    text-align: right;
  }

  .discount-panel .discount-toggle {
    align-items: flex-start;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
