:root {
  --bg: #fff8f6;
  --card: #ffffff;
  --ink: #24151b;
  --muted: #766a70;
  --line: #f0ddd9;
  --accent: #e64f8f;
  --accent-dark: #c93473;
  --soft: #ffe6ef;
  --cream: #fff1e9;
  --shadow: 0 24px 70px rgba(81, 33, 52, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, #ffe1ec 0, rgba(255, 225, 236, 0) 36rem),
    radial-gradient(circle at top right, #fff0d9 0, rgba(255, 240, 217, 0) 32rem),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.04em;
  font-size: 24px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent), #ff9bbf);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(230, 79, 143, 0.35);
}
.nav-links { display: flex; gap: 22px; align-items: center; color: var(--muted); font-size: 15px; }
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 14px 32px rgba(230, 79, 143, 0.28); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: rgba(255,255,255,0.72); border-color: var(--line); color: var(--ink); }
.btn-ghost { background: var(--soft); color: var(--accent-dark); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 54px;
  align-items: center;
  padding: 56px 0 70px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  background: rgba(255,255,255,0.66);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-dark);
  font-weight: 750;
  font-size: 14px;
}
h1 {
  margin: 22px 0 18px;
  font-size: clamp(44px, 6.4vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}
.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.55;
  max-width: 650px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.microcopy { color: var(--muted); font-size: 14px; margin-top: 14px; }

.phone-shell {
  width: min(390px, 100%);
  margin: 0 auto;
  border-radius: 38px;
  padding: 14px;
  background: #2b1a22;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.phone-screen {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  min-height: 680px;
}
.profile-hero { height: 190px; background: linear-gradient(135deg, #ffd7e6, #fff2dc); position: relative; }
.profile-hero::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.2), rgba(255,255,255,0)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="320" height="190" viewBox="0 0 320 190"><rect width="320" height="190" fill="%23fff2f7"/><circle cx="70" cy="70" r="46" fill="%23ffb6d0"/><circle cx="165" cy="102" r="58" fill="%23ffd9b3"/><circle cx="245" cy="70" r="50" fill="%23f777ad"/></svg>') center/cover;
}
.profile-body { padding: 22px; }
.avatar { width: 72px; height: 72px; border-radius: 24px; background: linear-gradient(145deg, #e64f8f, #ffb6d0); border: 5px solid white; margin-top: -58px; position: relative; box-shadow: 0 10px 26px rgba(230,79,143,.22); }
.profile-body h2 { margin: 12px 0 4px; letter-spacing: -0.04em; font-size: 26px; }
.profile-body p { margin: 0; color: var(--muted); line-height: 1.45; }
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 18px; }
.pill { background: var(--soft); color: var(--accent-dark); padding: 7px 10px; border-radius: 999px; font-weight: 700; font-size: 13px; }
.service-card { display: flex; justify-content: space-between; gap: 14px; align-items: center; padding: 14px 0; border-top: 1px solid var(--line); }
.service-card strong { display:block; margin-bottom: 3px; }
.service-card span { color: var(--muted); font-size: 13px; }
.price { font-weight: 850; white-space: nowrap; }
.phone-cta { margin-top: 18px; width: 100%; }

.section { padding: 72px 0; }
.section-title { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.section-title h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.04; letter-spacing: -0.055em; margin: 0 0 12px; }
.section-title p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.55; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: rgba(255,255,255,.76); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 26px; box-shadow: 0 18px 50px rgba(81,33,52,.07); }
.card-icon { width: 42px; height: 42px; border-radius: 15px; display: grid; place-items: center; background: var(--soft); margin-bottom: 18px; }
.card h3 { margin: 0 0 8px; font-size: 21px; letter-spacing: -0.03em; }
.card p { margin: 0; color: var(--muted); line-height: 1.55; }

.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 30px; align-items: center; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow); }
.check-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); line-height: 1.45; }
.check { width: 22px; height: 22px; border-radius: 999px; background: var(--accent); color: white; display: grid; place-items: center; flex: 0 0 22px; font-size: 13px; font-weight: 900; }

.story-card { border-radius: 28px; background: linear-gradient(160deg, #ff86b7, #ffcf9d); padding: 26px; color: white; min-height: 390px; display: flex; flex-direction: column; justify-content: space-between; }
.story-card small { text-transform: uppercase; letter-spacing: .12em; font-weight: 900; opacity: .88; }
.story-card h3 { font-size: 46px; line-height: .95; letter-spacing: -0.06em; margin: 24px 0 0; }
.story-date { background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.38); border-radius: 18px; padding: 14px; font-weight: 800; backdrop-filter: blur(12px); }

.pricing-card { max-width: 520px; margin: 0 auto; text-align: center; }
.price-big { font-size: 52px; letter-spacing: -0.07em; font-weight: 900; margin: 12px 0; }
.price-big span { font-size: 18px; letter-spacing: 0; color: var(--muted); font-weight: 700; }

.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
details { background: rgba(255,255,255,.78); border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; }
summary { cursor: pointer; font-weight: 800; }
details p { color: var(--muted); margin: 12px 0 0; line-height: 1.55; }

.footer { padding: 42px 0; color: var(--muted); border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }

.booking-page { min-height: 100vh; padding: 22px 0 48px; }
.booking-card { max-width: 680px; margin: 22px auto 0; background: #fff; border: 1px solid var(--line); border-radius: 32px; overflow: hidden; box-shadow: var(--shadow); }
.booking-cover { height: 220px; background: linear-gradient(135deg, #ffe1ec, #fff1d8); }
.booking-content { padding: 28px; }
.booking-title { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.booking-title .avatar { margin: 0; flex: 0 0 72px; }
.booking-steps { display: grid; gap: 12px; margin-top: 22px; }
.booking-option { border: 1px solid var(--line); border-radius: 18px; padding: 16px; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.booking-option:hover { border-color: #f4a6c5; }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.time-slot { padding: 12px; border-radius: 14px; border: 1px solid var(--line); text-align: center; font-weight: 800; }
.time-slot.featured { background: var(--soft); color: var(--accent-dark); border-color: #ffc1d9; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; background: #fffaf9; }
textarea { min-height: 90px; resize: vertical; }

@media (max-width: 860px) {
  .hero, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 22px; }
  .phone-shell { transform: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .section { padding: 54px 0; }
}
@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1120px); }
  h1 { font-size: 45px; }
  .hero-actions .btn { width: 100%; }
  .phone-screen { min-height: 610px; }
  .time-grid, .input-row { grid-template-columns: 1fr; }
  .booking-content { padding: 20px; }
}
