:root {
  --gold: #f0b429;
  --gold-dark: #d99a12;
  --gold-light: #fff8e6;
  --ink: #151414;
  --ink-soft: #3d3d3d;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f2f5f8;
  --white: #fff;
  --green: #25a244;
  --red: #c41e3a;
  --radius: 14px;
  --radius-pill: 100px;
  --shadow: 0 8px 32px rgba(21, 20, 20, 0.08);
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie */
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--ink);
  color: #e5e5e5;
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  font-size: 14px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie.is-visible { transform: translateY(0); }
.cookie button {
  border: 0;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
}
.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 18px;
}
.logo__sub {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold-dark); }
.header__phone {
  text-decoration: none;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.header__phone:hover { background: var(--gold-dark); color: var(--white); }
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--bg);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 36px 0 48px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: #8a6a00;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.hero__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(37, 162, 68, 0.25);
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 800;
}
.hero__lead {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 17px;
}
.hero__points {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}
.hero__points li {
  padding-left: 28px;
  position: relative;
  font-weight: 600;
}
.hero__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 800;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 26px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(240, 180, 41, 0.45);
}
.btn--gold:hover { background: var(--gold-dark); color: var(--white); }
.btn--outline {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn--outline:hover { border-color: var(--gold); }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat strong {
  display: block;
  font-size: 18px;
  color: var(--gold-dark);
}
.stat span { font-size: 12px; color: var(--muted); }

.hero__visual { position: relative; }
.hero__photo-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.hero__photo-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.hero__card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.hero__card p { margin: 0 0 8px; font-size: 14px; }
.hero__card a {
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
}

/* Perks strip */
.perks {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.perks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.perk__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gold-light);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.perk h3 {
  margin: 0 0 4px;
  font-size: 15px;
}
.perk p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 56px 0;
}
.section--white { background: var(--white); }
.section__head {
  margin-bottom: 32px;
  max-width: 640px;
}
.section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
}
.section__head p {
  margin: 0;
  color: var(--muted);
}

/* Form block */
.callback {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.callback h2 {
  margin: 0 0 10px;
  font-size: 26px;
}
.callback p { margin: 0; color: #cbd5e1; }
.callback__note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
}
.form {
  display: grid;
  gap: 12px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid transparent;
  border-radius: 12px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form__consent {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.4;
}
.form .btn--gold { width: 100%; }

/* Prices */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.price-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.price-item span:first-child { font-weight: 600; }
.price-item span:last-child {
  font-weight: 800;
  color: var(--gold-dark);
  white-space: nowrap;
}
.price-footnote {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
}

/* About + steps */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}
.about-text p { color: var(--ink-soft); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.check-list li {
  padding-left: 26px;
  position: relative;
  font-weight: 600;
}
.check-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 4px;
}
.steps {
  display: grid;
  gap: 14px;
}
.step {
  display: flex;
  gap: 14px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px;
}
.step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}
.step h4 { margin: 0 0 4px; font-size: 15px; }
.step p { margin: 0; font-size: 13px; color: var(--muted); }

/* Reviews */
.reviews-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}
.rating-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.rating-box__score {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-dark);
}
.rating-box__stars { color: var(--gold); font-size: 20px; margin: 8px 0; }
.rating-box__count { font-size: 14px; color: var(--muted); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
}
.review__stars { color: var(--gold); margin-bottom: 8px; }
.review__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
}
.review__meta strong { font-size: 15px; }
.review__meta time { color: var(--muted); }
.review__tag {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}
.review p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.reviews-more {
  margin-top: 20px;
  text-align: center;
}
.link-avito {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
}
.link-avito:hover { text-decoration: underline; }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 760px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__q {
  width: 100%;
  text-align: left;
  border: 0;
  background: none;
  padding: 18px 20px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq__q::after {
  content: "+";
  font-size: 22px;
  color: var(--gold-dark);
  transition: transform 0.2s;
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a {
  display: none;
  padding: 0 20px 18px;
  color: var(--ink-soft);
  font-size: 15px;
}
.faq__item.is-open .faq__a { display: block; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-info h3 { margin: 0 0 12px; }
.contact-phone {
  display: block;
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 8px;
}
.contact-hours { color: var(--muted); margin-bottom: 20px; }
.messengers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.messenger {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}
.messenger--wa { background: #25d366; }
.messenger--tg { background: #229ed9; }

/* Footer */
.footer {
  background: var(--ink);
  color: #cbd5e1;
  padding: 32px 0 24px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.footer a { color: var(--gold); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__copy {
  border-top: 1px solid #374151;
  padding-top: 20px;
  font-size: 12px;
  color: #9ca3af;
}

/* Floating */
.float-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(240, 180, 41, 0.55);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(240, 180, 41, 0.45); }
  50% { box-shadow: 0 6px 32px rgba(240, 180, 41, 0.75); }
}

/* Toast & success */
.toast {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--ink);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 300;
}
.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.success-screen {
  display: none;
  min-height: 100vh;
  place-items: center;
  text-align: center;
  padding: 40px 20px;
  background: var(--bg);
}
.success-screen.is-visible { display: grid; }
.success-screen h1 { font-size: 32px; margin-bottom: 12px; }
.success-screen a { color: var(--gold-dark); font-weight: 700; }

/* Mobile nav */
@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .burger { display: flex; }
  .header__phone { display: none; }
  .hero__grid,
  .callback,
  .about-grid,
  .reviews-layout,
  .contact-grid,
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }
  .perks__grid { grid-template-columns: 1fr; }
  .price-grid,
  .reviews-grid { grid-template-columns: 1fr; }
  .rating-box { position: static; }
}
