/* ==========================================
   HOMESPA — mobile.css
   Масажна лійка для душу
   Мобільна стрічка 480px. Палітра — під hero-фото:
   темна графітово-бірюзова ванна кімната, бірюзове підсвічування
   як основний акцент (CTA/ціна), теплий корал — лише для бейджа знижки.
   ========================================== */
:root {
  --ink: #0b1c1f;
  --surface: #12292d;
  --card: #173338;
  --paper: #eef7f6;
  --muted: #8fa9ac;
  --teal: #2bd6c7;
  --teal-dark: #189c91;
  --coral: #ff8a6b;
  --coral-dark: #e8674a;
  --red: #ef4444;
  --line: rgba(238, 247, 246, 0.10);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }

.wrap {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--ink);
  padding: 0 16px;
}

/* ===== Заголовок ===== */
.head { padding: 22px 4px 8px; text-align: center; }
.brand { font-weight: 800; font-size: 21px; letter-spacing: 0.04em; text-transform: uppercase; }
.brand span { color: var(--teal); }
.head h1 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  margin: 12px 0 8px;
  text-transform: uppercase;
}
.head p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ===== Фото ===== */
.photo-card {
  margin: 14px 0 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.photo-card img { width: 100%; }

/* ===== Таймер ===== */
.timer-card {
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--teal);
  border-radius: 16px;
  padding: 14px 16px 12px;
  text-align: center;
}
.timer-label {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.timer-row { display: flex; justify-content: center; gap: 8px; }
.timer-cell {
  background: var(--card);
  border-radius: 10px;
  padding: 6px 12px;
  min-width: 52px;
}
.timer-cell b { display: block; font-size: 22px; font-weight: 800; color: var(--teal); }
.timer-cell span { font-size: 10px; color: var(--muted); }

/* ===== Ціна ===== */
.price-card {
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}
.price-top {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.price-old { color: var(--muted); font-size: 16px; text-decoration: line-through; }
.price-badge {
  background: rgba(255, 138, 107, 0.16);
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 7px;
}
.price-main { font-size: 42px; font-weight: 800; color: var(--teal); margin-bottom: 10px; }
.gift-line {
  font-size: 13.5px;
  color: var(--paper);
  background: rgba(43, 214, 199, 0.12);
  border: 1px dashed var(--teal);
  border-radius: 10px;
  padding: 9px 12px;
  margin-bottom: 16px;
}
.price-note {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--muted);
}

/* ===== CTA ===== */
.cta {
  width: 100%;
  background: var(--teal);
  color: #062220;
  border: none;
  border-radius: 14px;
  padding: 17px;
  font-size: 16.5px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(43, 214, 199, 0.28);
  transition: background 0.15s ease;
}
.cta:hover { background: var(--teal-dark); }
.cta:disabled { opacity: 0.7; }
.cta-sm { width: auto; flex: 1.3; padding: 14px; font-size: 15px; }

/* ===== Текстові блоки ===== */
.text-block { padding: 24px 4px 0; }
.text-block h2 { font-size: 18.5px; font-weight: 800; margin: 0 0 10px; text-transform: uppercase; }
.text-block > p { font-size: 14.5px; color: var(--muted); margin: 0 0 10px; }

.spec-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}
.spec-card b { color: var(--paper); }

/* ===== Крок (3 режими струменя) ===== */
.step-card {
  margin-top: 26px;
  background: linear-gradient(155deg, #0e3a3a, var(--surface));
  border: 1px solid var(--teal);
  border-radius: 20px;
  padding: 22px 20px;
}
.step-badge {
  display: inline-block;
  background: var(--teal);
  color: #062220;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.step-card h2 { font-size: 18.5px; font-weight: 800; margin: 0 0 8px; text-transform: uppercase; }
.step-card > p { font-size: 14px; color: var(--muted); margin: 0 0 10px; }

/* ===== Чому ми ===== */
.why-card {
  margin-top: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 20px;
}
.why-card h2 { font-size: 18.5px; font-weight: 800; margin: 0 0 12px; text-transform: uppercase; }
.why-list div { font-size: 14px; line-height: 1.9; color: var(--paper); }

/* ===== Відгуки ===== */
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.review-head b { font-size: 14px; }
.review-head span { font-size: 12px; color: var(--teal); letter-spacing: 2px; }
.review p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 0; }

/* ===== Форма ===== */
.form-card {
  margin-top: 28px;
  background: var(--surface);
  border: 2px solid var(--teal);
  border-radius: 20px;
  padding: 22px 20px 24px;
  scroll-margin-top: 16px;
}
.form-card h2 { font-size: 18.5px; font-weight: 800; text-align: center; margin: 0 0 4px; text-transform: uppercase; }
.form-sub { text-align: center; font-size: 13.5px; color: var(--muted); margin: 0 0 18px; }
.form-card label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
}
.form-card input[type="text"],
.form-card input[type="tel"] {
  width: 100%;
  margin-top: 6px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  background: var(--card);
  color: var(--paper);
}
.form-card input:focus { border-color: var(--teal); }
.form-card input.input-error { border-color: var(--red); }
.form-note {
  text-align: center;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 12px;
}

/* ===== Футер ===== */
.foot { padding: 34px 4px 40px; text-align: center; }
.foot nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  margin-bottom: 14px;
}
.foot nav a { font-size: 12.5px; color: var(--muted); }
.foot nav a:hover { color: var(--teal); }
.foot p { font-size: 12px; color: var(--muted); margin: 4px 0; }

/* ===== Sticky ===== */
.sticky {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--surface);
  border-top: 1px solid var(--teal);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}
.sticky-price { flex: 1; }
.sticky-price span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-decoration: line-through;
}
.sticky-price b { font-size: 21px; font-weight: 800; color: var(--teal); }
.sticky-space { height: 72px; }

/* ===== Сторінка подяки ===== */
.thankyou-card {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--teal);
  border-radius: 20px;
  padding: 32px 22px;
  text-align: center;
}
.thankyou-card .big { font-size: 46px; margin-bottom: 8px; }
.thankyou-card h1 { font-size: 24px; font-weight: 800; margin: 0 0 12px; }
.thankyou-card p { font-size: 14px; color: var(--muted); margin: 0 0 8px; }
.thankyou-card p b { color: var(--paper); }
.thankyou-card .cta { margin-top: 14px; }

/* ===== Інфо-сторінки ===== */
.legal { padding: 8px 4px 30px; }
.legal-kicker {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.legal h1 { font-size: 24px; font-weight: 800; margin: 0 0 16px; }
.legal h2 { font-size: 16.5px; font-weight: 800; margin: 22px 0 8px; }
.legal p, .legal li { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0 0 8px; }
.legal ul { padding-left: 20px; margin: 0 0 10px; }
.legal b { color: var(--paper); }
