/* Call surveyor / вызов замерщика — oknaminsk24 */
:root {
  --zm-ink: #152029;
  --zm-muted: #5d6b78;
  --zm-steel: #1f3a52;
  --zm-green: #19b27f;
  --zm-green-deep: #149a74;
  --zm-accent: #e07a1f;
  --zm-font: "Manrope", system-ui, sans-serif;
  --zm-max: 1380px;
}

* { box-sizing: border-box; }

body.zamer-page {
  margin: 0;
  font-family: var(--zm-font);
  color: var(--zm-ink);
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(25, 178, 127, 0.14), transparent 55%),
    radial-gradient(700px 360px at 0% 8%, rgba(224, 122, 31, 0.1), transparent 50%),
    linear-gradient(180deg, #f7f3ec 0%, #eef2f6 52%, #f5f1ea 100%);
  min-height: 100vh;
}

.zm-wrap {
  width: min(var(--zm-max), calc(100% - 2rem));
  margin: 0 auto;
}

.zm-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  color: var(--zm-muted);
}

.zm-crumbs a {
  color: var(--zm-muted);
  text-decoration: none;
}

.zm-crumbs a:hover { color: var(--zm-green-deep); }

.zm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(25, 178, 127, 0.12);
  color: var(--zm-green-deep);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.zm-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--zm-green);
}

.zm-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  border-radius: 12px;
  border: 0;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.15s;
}

.zm-btn:hover { transform: translateY(-1px); }

.zm-btn--green {
  background: linear-gradient(90deg, #31a375, #19b27f);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(25, 178, 127, 0.28);
}

.zm-btn--orange {
  background: linear-gradient(90deg, #ef9340, #e07a1f);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(224, 122, 31, 0.28);
}

.zm-btn--ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--zm-ink) !important;
  border: 1px solid rgba(25, 178, 127, 0.35);
}

/* Hero */
.zm-hero { padding: 1.35rem 0 1.5rem; }

.zm-hero__grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .zm-hero__grid {
    grid-template-columns: 1.3fr 0.9fr;
    gap: 1.75rem;
  }
}

.zm-hero h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 4.2vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--zm-steel);
}

.zm-hero__lead {
  margin: 0 0 1.15rem;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--zm-muted);
}

.zm-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.zm-hero__side {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 1.45rem 1.35rem;
  color: #fff;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(25, 178, 127, 0.5), transparent 55%),
    linear-gradient(145deg, #1a3348 0%, #16384a 45%, #0f2a38 100%);
  box-shadow: 0 18px 40px rgba(21, 40, 55, 0.22);
}

.zm-hero__side strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.zm-hero__side .zm-side-title {
  margin: 0.4rem 0 0.85rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.zm-hero__side p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.84);
}

.zm-steps {
  display: grid;
  gap: 0.9rem;
  counter-reset: zmstep;
}

@media (min-width: 700px) {
  .zm-steps { grid-template-columns: repeat(3, 1fr); }
}

.zm-step {
  position: relative;
  padding: 1.15rem 1.05rem 1.15rem 1.15rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 58, 82, 0.08);
  box-shadow: 0 8px 22px rgba(21, 32, 41, 0.05);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.zm-step.is-in {
  opacity: 1;
  transform: none;
}

.zm-step::before {
  counter-increment: zmstep;
  content: counter(zmstep);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.7rem;
  border-radius: 10px;
  background: rgba(25, 178, 127, 0.14);
  color: var(--zm-green-deep);
  font-weight: 800;
  font-size: 0.95rem;
}

.zm-step h2 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--zm-steel);
  letter-spacing: -0.02em;
}

.zm-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--zm-muted);
}

.zm-reasons {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .zm-reasons { grid-template-columns: repeat(2, 1fr); }
}

.zm-reason {
  padding: 1.1rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 58, 82, 0.08);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.zm-reason.is-in {
  opacity: 1;
  transform: none;
}

.zm-reason h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: var(--zm-steel);
}

.zm-reason p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--zm-muted);
}

.zm-panel {
  margin: 1.5rem 0 0;
  padding: 1.35rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 58, 82, 0.08);
}

.zm-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--zm-steel);
}

.zm-panel p {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--zm-muted);
}

.zm-panel p:last-child { margin-bottom: 0; }

.zm-panel strong { color: var(--zm-ink); }

.zm-contact {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.2rem;
  border-radius: 18px;
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(25, 178, 127, 0.14), transparent 50%),
    rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(31, 58, 82, 0.08);
}

@media (min-width: 800px) {
  .zm-contact {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }
}

.zm-contact h2 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  color: var(--zm-steel);
}

.zm-contact p {
  margin: 0;
  color: var(--zm-muted);
  line-height: 1.5;
}

.zm-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 0.75rem;
}

.zm-phones a {
  font-weight: 750;
  color: var(--zm-green-deep);
  text-decoration: none;
}

.zm-phones a:hover { text-decoration: underline; }

.zm-hours {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--zm-muted);
}

.zm-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
  padding: 1.35rem 1.4rem;
  border-radius: 20px;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(25, 178, 127, 0.22), transparent 55%),
    linear-gradient(120deg, #1a3348, #163d4f);
  color: #fff;
  box-shadow: 0 16px 36px rgba(21, 40, 55, 0.2);
}

.zm-cta h2 {
  margin: 0 0 0.35rem;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.zm-cta p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.zm-foot {
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(31, 58, 82, 0.08);
  font-size: 0.88rem;
  color: var(--zm-muted);
}

.zm-foot__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.zm-foot a {
  color: var(--zm-muted);
  text-decoration: none;
}

.zm-foot a:hover { color: var(--zm-green-deep); }

@media (prefers-reduced-motion: reduce) {
  .zm-step, .zm-reason, .zm-btn { transition: none !important; }
  .zm-step, .zm-reason { opacity: 1; transform: none; }
}
