:root {
  --bg: #fff9f1;
  --paper: #fff;
  --paper-warm: #fff3e3;
  --ink: #221b16;
  --muted: #6f6258;
  --line: rgba(34, 27, 22, .12);
  --brand: #f37a24;
  --brand-dark: #c95811;
  --graphite: #332b25;
  --graphite-deep: #29231f;
  --green: var(--graphite);
  --shadow: 0 22px 70px rgba(77, 47, 22, .13);
  --shadow-sm: 0 12px 35px rgba(77, 47, 22, .1);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.45;
  background:
    radial-gradient(circle at 8% 3%, rgba(243, 122, 36, .12), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(51, 43, 37, .11), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, #fff 46%, #fffaf4 100%);
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-140%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(34, 27, 22, .08);
  background: rgba(255, 249, 241, .78);
  backdrop-filter: blur(18px);
}

.header {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-width: 240px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #ff9b46, var(--brand));
  box-shadow: 0 10px 22px rgba(243, 122, 36, .28);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-weight: 800;
  font-size: 18px;
}

.brand-name span:last-child {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}
.header-nav a { transition: color .2s ease; }
.header-nav a:hover { color: var(--ink); }

.menu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(34, 27, 22, .1);
  border-radius: 16px;
  display: none;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255,255,255,.78);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(77,47,22,.08);
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 99px;
  grid-area: 1 / 1;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle::before { transform: translateY(-7px); }
.menu-toggle::after { transform: translateY(7px); }
.header.is-menu-open .menu-toggle span { opacity: 0; }
.header.is-menu-open .menu-toggle::before { transform: rotate(45deg); }
.header.is-menu-open .menu-toggle::after { transform: rotate(-45deg); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.worktime {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
  line-height: 1.25;
}
.worktime strong { display: block; color: var(--ink); font-size: 14px; }

.phone, .submit, .callback-link {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(34, 27, 22, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.phone:hover, .submit:hover, .callback-link:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(34, 27, 22, .28); background: #17120f; }
.phone:active, .submit:active, .callback-link:active { transform: translateY(0) scale(.98); }
.phone.orange, .submit { background: linear-gradient(135deg, #ff9141, var(--brand)); box-shadow: 0 18px 38px rgba(243, 122, 36, .28); }
.phone.orange:hover, .submit:hover { background: linear-gradient(135deg, #ff9c53, #df6519); }
.callback-link {
  background: rgba(255,255,255,.76);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(77,47,22,.08);
}
.callback-link:hover { background: #fff; }

.hero { padding: 68px 0 70px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  align-items: center;
  gap: 62px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(243, 122, 36, .22);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .72);
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(243, 122, 36, .12);
  animation: client-pulse 1.6s ease-out infinite;
}

@keyframes client-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(243, 122, 36, .32), 0 0 0 6px rgba(243, 122, 36, .12);
  }
  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(243, 122, 36, 0), 0 0 0 6px rgba(243, 122, 36, .12);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(243, 122, 36, 0), 0 0 0 6px rgba(243, 122, 36, .12);
  }
}

.hero h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .94;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero h1 span { color: var(--brand-dark); }
.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.trust-pill {
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(34, 27, 22, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 24px rgba(77, 47, 22, .06);
}
.trust-pill b { display: block; margin-bottom: 4px; font-size: 22px; line-height: 1; }
.trust-pill span { color: var(--muted); font-size: 13px; }

.visual-wrap { position: relative; min-height: 620px; }
.hero-card {
  position: absolute;
  inset: 0 0 42px 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 34px;
  background: var(--paper-warm);
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,27,22,.06), rgba(34,27,22,.18));
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 50%;
}

.photo-hint {
  position: absolute;
  left: 28px;
  right: auto;
  top: 30px;
  z-index: 2;
  width: min(258px, calc(100% - 56px));
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 10px 24px rgba(77,47,22,.07);
  backdrop-filter: blur(10px);
}
.photo-hint strong { display: block; margin-bottom: 6px; font-size: 18px; line-height: 1.12; }
.photo-hint span { color: var(--muted); font-size: 14px; line-height: 1.35; }

.floating-price, .floating-guarantee {
  position: absolute;
  z-index: 3;
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 18%, rgba(243,122,36,.18), transparent 88px),
    linear-gradient(145deg, rgba(51,43,37,.96), rgba(41,35,31,.96));
  color: #fff;
  box-shadow: 0 18px 42px rgba(34,27,22,.24);
}
.floating-price { right: -18px; bottom: 18px; width: 220px; padding: 18px; }
.floating-price span, .floating-guarantee span { display: block; color: #f28a35; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.floating-price strong { display: block; margin: 4px 0; font-size: 30px; line-height: 1; }
.floating-price small { color: rgba(255,255,255,.72); line-height: 1.25; }
.floating-guarantee { left: -14px; bottom: 44px; width: 212px; padding: 18px; }
.floating-guarantee strong { display: block; margin-top: 4px; font-size: 20px; line-height: 1.05; }

.section { padding: 86px 0; }
.section.compact { padding: 58px 0; }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .75fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 34px;
}
.section-kicker {
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h2 { margin-bottom: 0; font-size: clamp(32px, 4.2vw, 56px); line-height: .98; letter-spacing: 0; text-wrap: balance; }
.section-text { margin-bottom: 0; color: var(--muted); font-size: 18px; }

.cards, .process, .testimonials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.card, .step, .quote {
  min-height: 240px;
  padding: 26px;
  border: 1px solid rgba(34,27,22,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 30px rgba(77,47,22,.06);
}
.icon {
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(243,122,36,.1);
  color: var(--brand-dark);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(243,122,36,.08);
}
.card h3, .step h3 { margin-bottom: 10px; font-size: 23px; line-height: 1.05; letter-spacing: 0; }
.card p, .step p, .quote p { margin-bottom: 0; color: var(--muted); }

.conversion-strip {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 34px;
  background: rgba(46,40,36,.92);
  color: #fff;
  box-shadow: 0 18px 42px rgba(34,27,22,.24);
}
.conversion-strip h2 { font-size: clamp(28px, 3.2vw, 42px); }
.conversion-strip p, .mini-points { margin: 12px 0 0; color: rgba(255,255,255,.72); }
.intro-strip {
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 20%, rgba(243,122,36,.18), transparent 10rem),
    linear-gradient(145deg, var(--graphite), var(--graphite-deep));
  box-shadow: 0 18px 42px rgba(41,35,31,.2);
}
.intro-strip h2 {
  max-width: 710px;
  font-size: clamp(28px, 3.1vw, 38px);
}
.intro-strip p {
  color: rgba(255,255,255,.72);
  font-weight: 700;
}
.intro-strip .call-panel { justify-items: end; }
.intro-strip .phone.orange {
  width: auto;
  min-width: 156px;
  background: #fff;
  color: var(--graphite-deep);
  box-shadow: none;
}
.intro-strip .phone.orange:hover {
  background: #f6f1e9;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.call-panel { display: grid; gap: 16px; }
.call-panel .phone { width: 100%; }
.mini-points { display: grid; gap: 8px; font-size: 14px; }
.mini-points div::before { content: "•"; margin-right: 8px; color: var(--brand); }

.price-section, .guarantee, .faq {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
}
.price-main, .guarantee-card, .lead-form {
  min-height: 100%;
  padding: 34px;
  border: 1px solid rgba(34,27,22,.08);
  border-radius: 30px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 30px rgba(77,47,22,.06);
}
.label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(243,122,36,.16);
  color: var(--brand-dark);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price-number { margin-bottom: 16px; font-size: clamp(52px, 8vw, 94px); line-height: .85; font-weight: 900; color: var(--brand-dark); }
.price-main p { color: var(--muted); font-size: 17px; }
.price-main .phone { margin-top: 24px; }
.price-factors { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.factor { padding: 22px; border-radius: 24px; background: #fff; box-shadow: 0 10px 24px rgba(77,47,22,.05); }
.factor span { color: var(--brand-dark); font-weight: 900; }
.factor h3 { margin: 12px 0 8px; }
.factor p { margin-bottom: 0; color: var(--muted); }

.guarantee-card.dark {
  background: radial-gradient(circle at 84% 16%, rgba(243,122,36,.2), transparent 16rem), var(--graphite);
  color: #fff;
}
.guarantee-card h2 { margin-bottom: 16px; }
.guarantee-card.dark p, .guarantee-card.dark li { color: rgba(255,255,255,.72); }
.guarantee-card p { color: var(--muted); font-size: 18px; }
.checklist { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 34px; color: var(--muted); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(243,122,36,.14);
  box-shadow: inset 0 0 0 7px var(--brand);
}
.guarantee-card.dark .checklist li::before { background: rgba(255,255,255,.13); box-shadow: inset 0 0 0 7px var(--brand); }

.process { grid-template-columns: repeat(4, minmax(0, 1fr)); counter-reset: step; }
.step { position: relative; counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 44px;
  color: rgba(243,122,36,.26);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.photo-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.mini-photo-stack { display: grid; gap: 20px; }
.photo-slot {
  position: relative;
  overflow: hidden;
  min-height: 276px;
  padding: 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,0)), linear-gradient(145deg, #f3d5b7, #c88e62);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow-sm);
}
.photo-slot.tall { min-height: 578px; }
.photo-slot.dark { background: linear-gradient(145deg, #514238, #2e2824); color: #fff; }
.photo-slot.green {
  background:
    radial-gradient(circle at 82% 18%, rgba(243,122,36,.18), transparent 9rem),
    linear-gradient(145deg, #4a3d34, var(--graphite-deep));
  color: #fff;
}
.photo-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-slot.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,27,22,.08) 0%, rgba(34,27,22,.72) 100%);
}
.photo-slot.has-image { color: #fff; }
.photo-slot::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(255,255,255,.62);
  border-radius: 24px;
  z-index: 1;
}
.photo-slot strong, .photo-slot span { position: relative; z-index: 2; max-width: 520px; }
.photo-slot strong { margin-bottom: 8px; font-size: clamp(24px, 3.4vw, 40px); line-height: 1; }
.photo-slot span { color: rgba(34,27,22,.66); font-size: 17px; }
.photo-slot.has-image span { color: rgba(255,255,255,.72); }
.photo-slot.dark span { color: rgba(255,255,255,.68); }
.photo-slot.green span { color: rgba(255,255,255,.68); }

.testimonials { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quote { min-height: 270px; display: flex; flex-direction: column; }
.stars { margin-bottom: 20px; color: var(--brand); letter-spacing: .12em; }
.quote p { flex: 1; font-size: 18px; }
.quote-user { display: flex; align-items: center; gap: 12px; margin-top: 24px; color: var(--muted); font-weight: 700; }
.avatar { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: rgba(243,122,36,.14); color: var(--brand-dark); font-weight: 900; }

.faq { align-items: start; }
details {
  margin-bottom: 14px;
  border: 1px solid rgba(34,27,22,.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(77,47,22,.05);
}
summary { cursor: pointer; padding: 20px 22px; font-weight: 850; }
details p { padding: 0 22px 20px; color: var(--muted); }

@media (max-width: 640px) {
  .photo-hint { display: none; }
  .floating-price { right: 16px; bottom: 16px; width: 165px; padding: 14px; }
  .floating-price strong { font-size: 24px; }
  .floating-guarantee { left: 16px; bottom: 96px; width: 180px; padding: 14px; }
  .floating-guarantee strong { font-size: 18px; }
}

@media (max-width: 340px) {
  .hero h1 { font-size: 34px; }
  h2 { font-size: 29px; }
  .eyebrow {
    width: 100%;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.2;
  }
  .hero-lead,
  .section-text,
  .conversion-strip p,
  .price-main p,
  .guarantee-card p,
  .photo-slot span {
    font-size: 15px;
  }
  .visual-wrap { min-height: 420px; }
  .floating-price {
    right: 8px;
    bottom: 10px;
    width: 128px;
    padding: 12px;
    border-radius: 18px;
  }
  .floating-price strong { font-size: 19px; }
  .floating-price small { font-size: 11px; }
  .floating-guarantee {
    left: 8px;
    top: 14px;
    bottom: auto;
    width: 126px;
    padding: 12px;
    border-radius: 18px;
  }
  .floating-price span,
  .floating-guarantee span {
    font-size: 10px;
  }
  .floating-guarantee strong { font-size: 14px; }
  .trust-pill,
  .card,
  .step,
  .quote,
  .factor,
  .price-main,
  .guarantee-card {
    padding: 20px;
  }
  .price-number { font-size: 48px; }
  summary { padding: 18px; }
  details p { padding: 0 18px 18px; }
}
