/* СБ Модуль — выкуп бытовок (industrial deal desk) */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

:root {
  --ink: #14181d;
  --muted: #5c6570;
  --bg: #efeae2;
  --paper: #f7f3ec;
  --panel: #fffdf8;
  --dark: #14181d;
  --dark-2: #1c2229;
  --accent: #c45a12;
  --accent-2: #e06a1a;
  --steel: #8a9199;
  --line: rgba(20, 24, 29, 0.12);
  --line-light: rgba(255, 253, 248, 0.14);
  --shadow: 0 24px 50px rgba(20, 24, 29, 0.16);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --header-h: 72px;
  --wrap: 1180px;
  --wrap-pad: clamp(1.1rem, 4vw, 1.6rem);
  --space-section: clamp(3.2rem, 6vw, 5.2rem);
  --gap: clamp(0.85rem, 1.6vw, 1.15rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 80;
  padding: 0.55rem 0.8rem;
  background: var(--accent);
  color: #fff;
}
.skip-link:focus { top: 0.75rem; }

.wrap {
  width: min(var(--wrap), calc(100% - var(--wrap-pad) * 2));
  margin-inline: auto;
}

.kicker {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.section { padding: var(--space-section) 0; }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.section-head h2,
.split-panel h2,
.valuate-band h2,
.contact-card h2,
.seo-split h2,
.deal-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}

.section-head p,
.split-panel > p,
.valuate-copy > p,
.contact-lead { margin: 0; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-2); }

.btn-ghost,
.btn-line {
  background: transparent;
  border-color: rgba(255, 253, 248, 0.35);
  color: #fffdf8;
}
.btn-line {
  border-color: rgba(20, 24, 29, 0.22);
  color: var(--ink);
}
.btn-ghost:hover { border-color: #fff; color: #fff; }
.btn-line:hover { border-color: var(--accent); color: var(--accent); }

.max-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: block;
  border-radius: 6px;
}
.btn .max-icon { width: 22px; height: 22px; border-radius: 6px; }
.max-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-max { gap: 0.5rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  background: rgba(20, 24, 29, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  color: #fffdf8;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.is-scrolled {
  background: rgba(20, 24, 29, 0.94);
  border-bottom-color: var(--line-light);
}

.header-bar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 253, 248, 0.72);
}
.nav a:hover { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.phone {
  font-weight: 700;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-light);
  background: transparent;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.burger span { width: 18px; height: 2px; background: #fffdf8; }

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 auto;
  z-index: 39;
  background: var(--dark);
  padding: 1rem 1.2rem 1.4rem;
  flex-direction: column;
  gap: 0.85rem;
  color: #fffdf8;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile[hidden] { display: none; }
.nav-mobile.is-open[hidden] { display: flex; }
.nav-mobile a { color: #fffdf8; font-weight: 600; }

.hero {
  position: relative;
  min-height: min(780px, 100svh);
  display: grid;
  align-items: start;
  padding: calc(var(--header-h) + 2.4rem) 0 3.2rem;
  color: #fffdf8;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 24, 29, 0.88) 0%, rgba(20, 24, 29, 0.55) 52%, rgba(20, 24, 29, 0.28) 100%),
    linear-gradient(180deg, rgba(20, 24, 29, 0.25) 0%, rgba(20, 24, 29, 0.55) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 26.5rem);
  gap: clamp(1.6rem, 4vw, 2.8rem);
  align-items: center;
}

.hero-copy { max-width: none; animation: riseIn 0.8s var(--ease) both; }

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5vw, 4.15rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.06;
  text-transform: uppercase;
  max-width: none;
  color: #fffdf8;
  hyphens: none;
}

.lead {
  margin: 0 0 1.3rem;
  max-width: 40rem;
  font-size: 1.05rem;
  color: rgba(255, 253, 248, 0.78);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}
.hero-pills li {
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255, 253, 248, 0.22);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.deal-card {
  align-self: center;
  width: 100%;
  background: var(--panel);
  color: var(--ink);
  padding: 1.65rem 1.55rem 1.5rem;
  border: 1px solid rgba(20, 24, 29, 0.08);
  border-top: 4px solid var(--accent);
  border-radius: 14px;
  box-shadow:
    0 22px 50px rgba(20, 24, 29, 0.28),
    0 1px 0 rgba(255, 253, 248, 0.7) inset;
  animation: riseIn 0.9s 0.08s var(--ease) both;
}
.deal-card .kicker { margin-bottom: 0.45rem; }
.deal-card h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: 0.03em;
  margin: 0 0 0.45rem;
  color: var(--ink);
}
.deal-title-time { white-space: nowrap; }
.deal-card > p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.deal-form {
  display: grid;
  gap: 0.8rem;
}
.valuate-form {
  display: grid;
  gap: 0.65rem;
}
.deal-form input[type="text"],
.deal-form input[type="tel"] {
  width: 100%;
  min-height: 54px;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(20, 24, 29, 0.14);
  border-radius: 10px;
  background: #f7f3ec;
  color: var(--ink);
  font-size: 1.02rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.valuate-form input[type="text"],
.valuate-form input[type="tel"] {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.deal-form input[type="text"]:hover,
.deal-form input[type="tel"]:hover {
  border-color: rgba(20, 24, 29, 0.28);
  background: #fff;
}
.deal-form input[type="text"]::placeholder,
.deal-form input[type="tel"]::placeholder,
.valuate-form input[type="text"]::placeholder,
.valuate-form input[type="tel"]::placeholder {
  color: rgba(20, 24, 29, 0.42);
}
.deal-form input[type="text"]:focus,
.deal-form input[type="tel"]:focus,
.valuate-form input[type="text"]:focus,
.valuate-form input[type="tel"]:focus {
  outline: none;
  border-color: rgba(224, 106, 26, 0.7);
  box-shadow: 0 0 0 3px rgba(196, 90, 18, 0.16);
  background: #fff;
}
.deal-form .check {
  margin: 0.15rem 0 0.1rem;
  font-size: 0.84rem;
}
.deal-form .check input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
}
.deal-note {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
  text-align: center;
}
.check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted);
}
.check input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin: 0.12rem 0 0;
  accent-color: var(--accent);
}
.check a { color: var(--accent); text-decoration: underline; }
.deal-form .btn,
.valuate-form .btn {
  width: 100%;
  justify-content: center;
}
.deal-form .btn {
  min-height: 54px;
  font-size: 1.05rem;
}
.valuate-form .btn { min-height: 48px; }

.strip {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.04), transparent 40%),
    var(--dark);
  color: #fffdf8;
  padding: 1.7rem 0 1.8rem;
  border-block: 1px solid rgba(255, 253, 248, 0.08);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.strip-item {
  position: relative;
  padding: 0.35rem 1.15rem 0.2rem 0;
}
.strip-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.35rem;
  right: 1rem;
  bottom: 0.35rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(240, 178, 122, 0.45),
    transparent
  );
}
.strip-value {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.28rem 0.4rem;
  margin: 0 0 0.4rem;
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #f0b27a;
  font-variant-numeric: tabular-nums;
}
.strip-num { min-width: 0.7em; }
.strip-unit {
  font-size: 0.62em;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #f6c49a;
}
.strip-label {
  margin: 0;
  max-width: 14rem;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.9rem;
  line-height: 1.4;
}

.section-dark {
  background: var(--dark-2);
  color: #fffdf8;
}
.section-dark .section-head p { color: rgba(255, 253, 248, 0.62); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service {
  padding: 1.4rem 1.2rem 1.5rem;
  border: 1px solid var(--line-light);
  background: rgba(255, 253, 248, 0.03);
}
.service .idx,
.why-grid span,
.steps b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #f0b27a;
  margin-bottom: 0.85rem;
}
.service h3,
.buy-body h3,
.why-grid h3,
.steps h3,
.seo-cols h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.12;
}
.service p { margin: 0; color: rgba(255, 253, 248, 0.68); }

.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.buy-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.buy-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d8d2c8;
}
.buy-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.buy-card:hover .buy-media img { transform: scale(1.06); }
.buy-body { padding: 1.05rem 1.1rem 1.2rem; }
.buy-body p { margin: 0; color: var(--muted); }

.section-paper { background: var(--paper); }
.rate-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.rate-list li {
  padding: 1.15rem 1.1rem;
  background: #fff;
  border-left: 3px solid var(--accent);
}
.rate-list b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.rate-list span { color: var(--muted); }

.section-process { background: #fffdf8; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.steps li {
  padding: 1.3rem 1.05rem;
  background: var(--bg);
  border-top: 3px solid var(--accent);
}
.steps p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.section-logistics { padding-top: var(--space-section); }
.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 380px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(20, 24, 29, 0.16);
}
.split-photo { min-height: 100%; }
.split-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.split-panel {
  display: grid;
  align-content: center;
  gap: 0.95rem;
  padding: clamp(1.7rem, 3.8vw, 2.7rem);
  background: var(--dark);
  color: #fffdf8;
}
.split-lead {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.02rem;
  line-height: 1.5;
}
.split-panel > p { color: rgba(255, 253, 248, 0.7); }
.ticks { display: grid; gap: 0.45rem; margin: 0.3rem 0 0.6rem; }
.ticks li {
  font-weight: 600;
  padding-left: 1.1rem;
  position: relative;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.why-grid article {
  padding: 1.15rem 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
}
.why-grid p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.section-valuate { padding-top: 0; }
.valuate-band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17.5rem, 0.85fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1.7rem, 4vw, 2.6rem);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(196, 90, 18, 0.22), transparent 46%),
    linear-gradient(180deg, #1c2229, var(--dark));
  color: #fffdf8;
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(20, 24, 29, 0.18);
}
.valuate-band .kicker { color: #f0b27a; }
.valuate-copy h2 {
  max-width: 22ch;
  font-size: clamp(1.9rem, 3.6vw, 2.65rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.valuate-copy > p { color: rgba(255, 253, 248, 0.72); }
.valuate-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.15rem;
}
.valuate-points li {
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.82);
}
.valuate-form {
  display: grid;
  gap: 0.7rem;
  padding: 1.3rem 1.25rem 1.2rem;
  background: var(--panel);
  color: var(--ink);
  border-radius: 12px;
  box-shadow:
    0 18px 40px rgba(20, 24, 29, 0.28),
    0 1px 0 rgba(255, 253, 248, 0.7) inset;
}
.valuate-form-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--ink);
}
.valuate-form-note {
  margin: -0.2rem 0 0.15rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--muted);
}

.section-faq { background: var(--paper); }
.faq-list { display: grid; gap: 0.65rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.1rem 1rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.95rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0 0 1rem; color: var(--muted); }

.seo-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.3rem;
  align-items: center;
  margin-bottom: 1.2rem;
}
.seo-split p { color: var(--muted); margin: 0 0 0.9rem; }
.seo-shot {
  margin: 0;
  background: transparent;
  border: 0;
  padding: 0;
}
.seo-shot img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(20, 24, 29, 0.16));
}
.seo-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.seo-cols article {
  padding: 1.2rem 1.1rem;
  background: var(--panel);
  border-top: 3px solid var(--accent);
}
.seo-cols p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.seo-cols a { color: var(--accent); text-decoration: underline; }

.contact-stage {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  overflow: hidden;
  min-height: 420px;
  background: var(--panel);
  border: 1px solid rgba(20, 24, 29, 0.08);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(20, 24, 29, 0.12);
}
.contact-visual { min-height: 100%; }
.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: 35% center;
  display: block;
  filter: saturate(1.08) contrast(1.06);
}
.contact-card {
  display: grid;
  gap: 0.75rem;
  align-content: center;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.contact-card h2 { margin-bottom: 0.15rem; }
.contact-lead { max-width: 34rem; }
.contact-phone {
  width: fit-content;
  margin-top: 0.25rem;
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.18rem;
}
.contact-phone:hover { color: var(--accent); }
.contact-mail {
  width: fit-content;
  font-weight: 600;
  color: var(--accent);
}
.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.contact-meta span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.28rem;
}
.contact-meta p { margin: 0; font-size: 0.94rem; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.site-footer {
  background: #0d1013;
  color: rgba(255, 253, 248, 0.72);
  padding: 2.6rem 0 1.3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}
.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 0.7rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-grid h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
}
.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 0.4rem;
  color: rgba(255, 253, 248, 0.68);
}
.footer-grid a.max-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 253, 248, 0.1);
  font-size: 0.86rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  background: rgba(13, 16, 19, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal-dialog {
  position: relative;
  width: min(420px, calc(100% - 2rem));
  background: #fffdf8;
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  border: 0;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
}
.modal-dialog h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-transform: uppercase;
}
.modal-note { margin: 0 0 1rem; color: var(--muted); font-size: 0.92rem; }
.modal-contacts { display: grid; gap: 0.65rem; }
.modal-contacts a { font-weight: 700; color: var(--accent); }
.modal-contacts a.max-link { width: fit-content; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .phone { display: none; }

  .hero-grid,
  .strip-grid,
  .service-grid,
  .buy-grid,
  .rate-list,
  .steps,
  .split,
  .why-grid,
  .valuate-band,
  .seo-split,
  .seo-cols,
  .contact-stage,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero { min-height: auto; align-items: start; }
  .hero-grid { align-items: start; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .strip-grid { gap: 1.1rem 0.5rem; }
  .strip-item { padding: 0.2rem 0.8rem 0.2rem 0; }
  .strip-item:nth-child(2n)::after { display: none; }
  .strip-item:nth-child(n + 3) { padding-top: 0.55rem; }
}

@media (max-width: 720px) {
  .header-actions .btn-accent { display: none; }

  .hero-grid,
  .strip-grid,
  .service-grid,
  .buy-grid,
  .rate-list,
  .steps,
  .split,
  .why-grid,
  .valuate-band,
  .seo-split,
  .seo-cols,
  .contact-stage,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-bottom: 1.4rem; }
  .hero h1 {
    font-size: clamp(2.2rem, 9.5vw, 2.9rem);
    letter-spacing: 0.025em;
    line-height: 1.08;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .strip { padding: 1.35rem 0; }
  .strip-grid { gap: 1rem; }
  .strip-item {
    padding: 0.15rem 0 0.85rem;
    border-bottom: 1px solid rgba(255, 253, 248, 0.08);
  }
  .strip-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .strip-item::after { display: none; }
  .strip-item:nth-child(n + 3) { padding-top: 0.15rem; }
  .split-photo img,
  .contact-visual img { min-height: 240px; }
  .contact-meta { grid-template-columns: 1fr; }
  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
}
