:root {
  --blue: #5b93ff;
  --yellow: #ffd028;
  --orange: #fe7020;
  --gray: #dbdbdb;
  --dark: #303030;
  --white: #ffffff;
  --ink: var(--dark);
  --ink-soft: var(--dark);
  --muted: var(--dark);
  --line: rgba(48, 48, 48, .12);
  --paper: var(--gray);
  --yellow-dark: var(--orange);
  --teal: var(--blue);
  --coral: var(--orange);
  --shadow: 0 24px 70px rgba(48, 48, 48, .13);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.5;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 14px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 28px));
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  padding: 10px 12px 10px 16px;
  background: rgba(48, 48, 48, .72);
  color: #ffffff;
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 44px;
  height: 44px;
  min-width: 0;
}
.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.08) contrast(1.05) drop-shadow(0 0 10px rgba(255, 255, 255,.18));
}
.site-nav { display: flex; justify-content: center; gap: 18px; color: rgba(255, 255, 255,.82); font-weight: 750; font-size: .92rem; }
.site-nav a:hover { color: #ffffff; }
.header-messengers {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-messengers .messenger-link {
  width: 36px;
  height: 36px;
}
.header-messengers .messenger-link img {
  width: 32px;
  height: 32px;
}
.nav-toggle { display: none; border: 0; background: transparent; color: inherit; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px 0; background: currentColor; }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #303030;
  color: #ffffff;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center right; filter: saturate(1.05) contrast(1.02); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(48, 48, 48, .94) 0%, rgba(48, 48, 48, .76) 38%, rgba(48, 48, 48, .28) 72%, rgba(48, 48, 48, .52) 100%),
    linear-gradient(0deg, rgba(48, 48, 48, .8) 0%, rgba(48, 48, 48, 0) 34%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(280px, 1fr);
  align-items: end;
  gap: 40px;
  min-height: 760px;
  padding: 150px 0 74px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  color: var(--coral);
  font-size: clamp(.9rem, 1vw, 1.05rem);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(1.25rem, 2.7vw, 2.85rem);
  line-height: .98;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255,.82);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 950;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 18px 34px rgba(255, 208, 40,  .24); }
.btn-secondary { border: 1px solid rgba(255, 255, 255,.28); background: rgba(255, 255, 255,.1); color: #ffffff; }
.btn-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(48, 48, 48, .14);
  line-height: 1;
}
.hero-proof {
  align-self: end;
  border-left: 3px solid var(--yellow);
  padding-left: 20px;
}
.proof-line strong { display: block; font-size: 1.2rem; }
.proof-line span { color: rgba(255, 255, 255,.72); }
.proof-stats {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}
.proof-stats span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255,.18);
  padding: 10px 0;
  color: rgba(255, 255, 255,.8);
}
.proof-stats b { color: #ffffff; font-size: 1.5rem; }

.section { padding: 88px 0; }
.intro-band { background: #ffffff; }
.intro-grid, .contact-layout, .result-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: start;
}
.intro-copy p:not(.eyebrow) { max-width: 620px; color: var(--muted); font-size: 1.08rem; }
.intro-copy h2, .section-head h2, .result-copy h2, .contact-copy h2, .about-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(1rem, 1.6vw, 1.8rem);
  line-height: 1.05;
}
.performance-console {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: #303030;
  color: #ffffff;
  box-shadow: var(--shadow);
}
.console-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255,.12);
  padding-bottom: 16px;
}
.console-top span { color: var(--yellow); font-size: .78rem; font-weight: 950; letter-spacing: .06em; text-transform: uppercase; }
.console-top b { color: rgba(255, 255, 255,.82); }
.console-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  min-height: 180px;
  margin: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255,.14);
  padding: 0 4px 14px;
}
.console-chart i {
  display: block;
  height: var(--h);
  min-height: 42px;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, var(--yellow), var(--teal));
}
.console-chart i:nth-child(even) { background: linear-gradient(180deg, var(--coral), var(--yellow)); }
.console-rows { display: grid; gap: 12px; }
.console-rows div {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding-bottom: 16px;
}
.console-rows span { color: rgba(255, 255, 255,.66); font-size: .9rem; }
.console-rows b { color: #ffffff; }
.console-rows em {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255,.12);
  overflow: hidden;
}
.console-rows em::before {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--yellow), var(--teal), var(--coral));
  content: "";
}

.advantages-section { background: var(--paper); }
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.advantage-card {
  position: relative;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(48, 48, 48, .06);
  overflow: hidden;
}
.advantage-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--yellow), var(--orange));
  content: "";
}
.advantage-card span {
  display: none;
  place-items: center;
  min-width: 44px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: rgba(91, 147, 255,  .12);
  color: var(--teal);
  font-weight: 950;
}
.advantage-card h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
  line-height: 1.15;
}
.advantage-card p {
  margin: 0;
  color: var(--muted);
}
.timeline div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(48, 48, 48, .06);
}
.timeline span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 30px;
  margin-bottom: 14px;
  border-radius: 99px;
  background: rgba(91, 147, 255,  .12);
  color: var(--teal);
  font-weight: 950;
}
.timeline b { display: block; margin-bottom: 8px; font-size: 1.06rem; }
.timeline p, .service-card p, .result-copy p { margin-bottom: 0; color: var(--muted); }
.result-copy p + p { margin-top: 14px; }

.about-section {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255,.035) 1px, transparent 1px),
    #303030;
  background-size: 36px 36px, 36px 36px, auto;
  color: #ffffff;
  overflow: hidden;
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
}
.about-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255,.14);
  border-radius: var(--radius);
  background: #303030;
  box-shadow: none;
}
.about-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.about-copy {
  border: 1px solid rgba(255, 255, 255,.14);
  border-radius: var(--radius);
  padding: 30px;
  background: #303030;
  box-shadow: 0 18px 42px rgba(48, 48, 48, .2);
}
.about-lead {
  max-width: 740px;
  color: rgba(255, 255, 255,.78);
  font-size: 1.18rem;
}
.about-console {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.about-metric, .about-signal {
  border: 1px solid rgba(255, 255, 255,.14);
  border-radius: var(--radius);
  padding: 18px;
  background: #303030;
  box-shadow: 0 16px 38px rgba(48, 48, 48, .2);
}
.about-metric span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.about-metric b { display: block; margin-bottom: 8px; color: #ffffff; font-size: 1.25rem; }
.about-metric p { margin: 0; color: rgba(255, 255, 255,.66); font-size: .95rem; }
.about-signal {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
}
.about-signal div { position: relative; padding-bottom: 12px; }
.about-signal span { display: block; color: rgba(255, 255, 255,.74); font-weight: 850; }
.about-signal i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255,.12);
}
.about-signal i::before {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--yellow));
  content: "";
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}
.cases-section .section-head {
  max-width: none;
}
.cases-section .section-note {
  max-width: none;
}
.section-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.service-lab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.services-section .section-head h2 {
  white-space: nowrap;
}
.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 16px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(48, 48, 48, .06);
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--yellow);
  font-weight: 950;
}
.service-card h3 { margin-bottom: 4px; font-size: 1.34rem; }
.service-card b { color: var(--teal); font-size: .88rem; }
.service-card p { grid-column: 1 / -1; margin-top: 18px; }
.service-card > i {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 7px;
  border-radius: 99px;
  background: rgba(48, 48, 48, .08);
  overflow: hidden;
}
.service-card > i::before {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--yellow), var(--teal), var(--coral));
  content: "";
}

.trigger-section { background: #ffffff; }
.trigger-section .section-head,
.pricing-section .section-head {
  max-width: none;
}
@media (min-width: 981px) {
  .trigger-section .section-head h2 {
    max-width: none;
    font-size: clamp(1.18rem, 1.35vw, 1.42rem);
    line-height: 1.08;
    white-space: nowrap;
  }
  .pricing-section .section-head h2 {
    max-width: 1040px;
    font-size: clamp(1.28rem, 1.8vw, 2rem);
    line-height: 1.12;
  }
}
.trigger-dashboard {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #303030;
  box-shadow: var(--shadow);
}
.trigger-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.trigger-card {
  position: relative;
  min-height: 184px;
  border: 1px solid rgba(255, 255, 255,.14);
  border-radius: var(--radius);
  padding: 18px 18px 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255,.09), rgba(255, 255, 255,.045));
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(48, 48, 48, .18);
}
.trigger-card h3 { min-height: 0; margin-bottom: 8px; font-size: 1.03rem; line-height: 1.14; }
.trigger-card p { margin: 0; color: rgba(255, 255, 255,.66); font-size: .92rem; line-height: 1.45; }
.trigger-card i {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255,.12);
  overflow: hidden;
}
.trigger-card i::before {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--yellow));
  content: "";
}

.cases-section { background: var(--paper); }
.case-showcase {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}
.case-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.case-label {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 99px;
  padding: 7px 12px;
  background: rgba(91, 147, 255,  .12);
  color: #5b93ff;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.cases-section .section-head h2 {
  max-width: none;
}
@media (min-width: 981px) {
  .cases-section .section-head h2 {
    font-size: clamp(1.28rem, 1.55vw, 1.7rem);
    line-height: 1.08;
  }
}
.case-header h3 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.04;
}
.case-header p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}
.case-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}
.case-summary-list {
  display: grid;
  gap: 10px;
  max-width: 1040px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}
.case-summary-list p {
  margin: 0;
}
.case-summary-list b {
  color: var(--ink);
}
.case-kpi {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--paper);
}
.case-kpi span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 850;
}
.case-kpi b {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1;
}
.case-kpi em,
.case-badge {
  display: inline-flex;
  border-radius: 99px;
  padding: 5px 10px;
  font-style: normal;
  font-size: .82rem;
  font-weight: 950;
}
.case-kpi .is-good,
.case-badge.is-good {
  background: rgba(91, 147, 255,  .12);
  color: #5b93ff;
}
.case-badge.is-alert {
  background: rgba(254, 112, 32,  .12);
  color: var(--coral);
}
.case-table-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(420px, 100%);
  min-height: 56px;
  margin: 0 auto;
  border: 0;
  border-radius: var(--radius);
  padding: 0 34px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 950;
  cursor: pointer;
}
.case-table-toggle:hover {
  background: var(--yellow);
  color: var(--ink);
}
.case-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}
.case-table-wrap[hidden] {
  display: none;
}
.case-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: .94rem;
}
.case-table th,
.case-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
}
.case-table th {
  background: var(--paper);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.case-table td:first-child { color: var(--ink); font-weight: 900; }
.case-table tr:last-child td { border-bottom: 0; }
.case-metric {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.case-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-style: normal;
  font-size: .88rem;
  font-weight: 950;
  line-height: 1;
}
.icon-cost { background: rgba(255, 208, 40,  .22); color: #303030; }
.icon-views { background: rgba(91, 147, 255,  .14); color: #5b93ff; }
.icon-clicks { background: rgba(254, 112, 32,  .14); color: var(--coral); }
.icon-rate { background: rgba(48, 48, 48, .08); color: var(--ink); }
.icon-cpc { background: rgba(255, 208, 40,  .16); color: #303030; }
.icon-bounce { background: rgba(254, 112, 32,  .16); color: var(--coral); }
.icon-conversions { background: rgba(91, 147, 255,  .18); color: #5b93ff; }
.icon-lead { background: rgba(48, 48, 48, .08); color: var(--ink-soft); }
.case-insights {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(48, 48, 48, .72);
  color: #ffffff;
}
.case-insights h4 {
  margin: 0 0 4px;
  color: var(--yellow);
  font-size: .85rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.case-insights h4 + p { margin-top: 2px; }
.case-insights p + h4 {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255,.14);
  padding-top: 18px;
}
.case-insights p {
  margin: 0;
  color: rgba(255, 255, 255,.74);
}
.case-insights strong { color: #ffffff; }

.case-section {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255,.035) 1px, transparent 1px),
    radial-gradient(circle at 16% 18%, rgba(255, 208, 40,  .16), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(91, 147, 255,  .2), transparent 30%),
    linear-gradient(135deg, #303030, #303030);
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
  color: #ffffff;
  overflow: hidden;
}
.case-section .container {
  width: min(1360px, calc(100% - 40px));
}
.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, .8fr);
  gap: 24px;
  align-items: center;
}
.case-copy {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255,.14);
  border-radius: var(--radius);
  padding: 34px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(48, 48, 48, .24);
  backdrop-filter: blur(10px);
}
.case-copy h2 {
  color: #ffffff;
  white-space: normal;
}
.case-lead {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 1.06rem;
  line-height: 1.65;
}
.case-window-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.case-window {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 152px;
  border: 1px solid rgba(255, 255, 255,.12);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 16px 34px rgba(48, 48, 48, .16);
  overflow: hidden;
}
.case-window::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--teal));
  content: "";
}
.case-window span {
  grid-column: 1 / -1;
  color: #ffffff;
  font-size: .98rem;
  font-weight: 950;
  text-align: center;
}
.case-window div {
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 6px;
  padding: 9px;
  background: rgba(255, 255, 255, .08);
}
.case-window small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255,.58);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}
.case-window b {
  display: block;
  color: #ffffff;
  font-size: .98rem;
  line-height: 1.08;
}
.case-window em {
  position: absolute;
  right: 14px;
  top: 14px;
  border-radius: 99px;
  padding: 6px 9px;
  background: rgba(255, 208, 40,  .16);
  color: #ffd028;
  font-style: normal;
  font-size: .84rem;
  font-weight: 950;
}
.case-image {
  position: relative;
  justify-self: stretch;
  width: 100%;
  max-width: 520px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255,.14);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255,.08);
  box-shadow: var(--shadow);
  transform: translateX(0);
  transition: transform .35s ease, box-shadow .35s ease;
  z-index: 2;
}
.case-image::before {
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255,.18);
  pointer-events: none;
  content: "";
}
.case-image::after {
  display: block;
  height: 32px;
  border-radius: 0 0 calc(var(--radius) - 8px) calc(var(--radius) - 8px);
  background:
    radial-gradient(circle, rgba(255, 255, 255,.58) 0 3px, transparent 4px) 50% 50% / 18px 18px no-repeat,
    #303030;
  content: "";
}
.case-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 90px rgba(48, 48, 48, .34);
}
.case-image img {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius) - 8px) calc(var(--radius) - 8px) 0 0;
  object-fit: cover;
}

.pricing-section {
  position: relative;
  background:
    linear-gradient(rgba(255, 255, 255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255,.035) 1px, transparent 1px),
    radial-gradient(circle at 16% 18%, rgba(255, 208, 40,  .16), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(91, 147, 255,  .2), transparent 30%),
    linear-gradient(135deg, #303030, #303030);
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
  color: #ffffff;
  overflow: hidden;
}
.pricing-section .section-head h2 { color: #ffffff; }
.pricing-intro {
  display: grid;
  gap: 16px;
  margin: -8px 0 22px;
}
.pricing-description {
  position: relative;
  max-width: 1040px;
  border: 1px solid rgba(255, 255, 255,.14);
  border-radius: var(--radius);
  padding: 22px 24px 22px 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255,.09), rgba(255, 255, 255,.035));
  box-shadow: 0 18px 44px rgba(48, 48, 48, .16);
  overflow: hidden;
}
.pricing-description::before {
  position: absolute;
  inset: 18px auto 18px 0;
  width: 5px;
  border-radius: 0 99px 99px 0;
  background: linear-gradient(180deg, var(--coral), var(--yellow));
  content: "";
}
.pricing-description p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255,.78);
  font-size: 1.04rem;
  line-height: 1.68;
}
.pricing-description p + p {
  margin-top: 10px;
}
.pricing-description b {
  color: #ffffff;
  font-weight: 950;
}
.pricing-shell {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 18px;
}
.tariff-list {
  display: grid;
  gap: 10px;
}
.tariff-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 70px;
  border: 1px solid rgba(255, 255, 255,.14);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #303030;
  color: #ffffff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(48, 48, 48, .16);
}
.tariff-tab:hover {
  border-color: rgba(255, 208, 40,  .5);
  background: #303030;
}
.tariff-tab span { font-weight: 950; }
.tariff-tab b { color: rgba(255, 255, 255,.72); white-space: nowrap; }
.tariff-tab.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}
.tariff-tab.is-active b { color: var(--ink); }
.tariff-panel {
  min-height: 480px;
  border: 1px solid rgba(255, 255, 255,.16);
  border-radius: var(--radius);
  padding: 34px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.panel-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.panel-label { margin-bottom: 8px; color: var(--coral); font-weight: 950; }
.panel-top h3 { margin-bottom: 0; font-size: clamp(2rem, 4vw, 4.4rem); line-height: 1; }
.panel-price { margin: 0; text-align: right; }
.panel-price span { display: block; font-size: clamp(1.9rem, 3.2vw, 3.4rem); font-weight: 950; line-height: 1; }
.panel-price small { color: var(--muted); font-weight: 850; }
.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .85fr);
  gap: 22px;
  margin: 26px 0;
}
.panel-grid h4 { margin: 0 0 10px; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; }
.panel-grid ul { display: grid; gap: 9px; margin: 0; padding-left: 20px; color: var(--ink-soft); }
.panel-result {
  border-left: 4px solid var(--teal);
  padding-left: 18px;
}
.panel-result p { margin-bottom: 0; color: var(--muted); }
.choose-tariff { width: min(320px, 100%); }

.extras-section {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255,.12);
  padding-top: 34px;
  background: transparent;
  color: #ffffff;
}
.extras-section .section-head {
  margin-bottom: 22px;
}
.extras-section .section-head h2 {
  color: #ffffff;
}
.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.extra-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255,.14);
  border-radius: var(--radius);
  padding: 20px;
  background: #303030;
  box-shadow: 0 18px 42px rgba(48, 48, 48, .2);
}
.extra-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.extra-top b {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 208, 40,  .13);
  color: var(--yellow);
  font-size: 1.08rem;
  text-align: right;
}
.extra-card h3 {
  margin-bottom: 8px;
  font-size: 1.16rem;
  line-height: 1.12;
}
.extra-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255,.7);
}
.process-section { background: #ffffff; }
.process-layout {
  display: block;
}
.process-section .section-head {
  max-width: 100%;
  margin-bottom: 28px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.timeline div {
  position: relative;
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(48, 48, 48, .05);
  overflow: hidden;
}
.timeline div::after {
  position: absolute;
  right: 18px;
  bottom: 10px;
  z-index: 0;
  color: rgba(48, 48, 48, .075);
  font-size: clamp(4.8rem, 7vw, 7.1rem);
  font-weight: 950;
  line-height: 1;
  content: attr(data-step);
}
.timeline div:nth-child(1),
.timeline div:nth-child(4),
.timeline div:nth-child(5) {
  background: var(--paper);
}
.timeline div:nth-child(2),
.timeline div:nth-child(3),
.timeline div:nth-child(6) {
  background: #ffffff;
}
.timeline div:nth-child(2) span { background: rgba(254, 112, 32, .13); color: var(--coral); }
.timeline div:nth-child(3) span { background: rgba(255, 208, 40, .22); color: #303030; }
.timeline div:nth-child(4) span { background: rgba(48, 48, 48, .09); color: var(--ink); }
.timeline div:nth-child(5) span { background: rgba(91, 147, 255, .13); color: var(--teal); }
.timeline div:nth-child(6) span { background: rgba(254, 112, 32, .13); color: var(--coral); }
.timeline span {
  display: none;
}
.timeline b {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.14;
}
.timeline p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.faq-section { background: #ffffff; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}
.faq-item {
  align-self: start;
  min-height: 102px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(48, 48, 48, .05);
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100px;
  padding: 20px 52px 20px 20px;
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  content: "+";
  transform: translateY(-50%);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { min-height: 74px; }
.faq-item p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0 20px 20px;
  color: var(--muted);
}
.problem-item {
  border-color: var(--line);
  background: var(--paper);
}
@media (hover: hover) and (pointer: fine) {
  .faq-item:hover {
    border-color: rgba(91, 147, 255,  .38);
    background: rgba(91, 147, 255,  .06);
    box-shadow: 0 18px 42px rgba(48, 48, 48, .08);
    transform: translateY(-2px);
  }
  .faq-item:hover summary::after {
    background: var(--yellow);
    color: var(--ink);
  }
}

.result-section { background: var(--paper); }
.result-grid {
  align-items: stretch;
}
.result-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(48, 48, 48, .05);
}
.specialty-list {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: #ffffff;
  box-shadow: var(--shadow);
}
.specialty-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--paper);
}
.specialty-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.specialty-item b {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
}
.specialty-item p {
  margin: 0;
  color: var(--muted);
}

.contact-section { background: var(--paper); }
.contact-copy p { color: var(--muted); }
.contact-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(48, 48, 48, .05);
}
.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.contact-badges a {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 950;
}
.contact-badges a:hover { transform: translateY(-2px); }
.messenger-link {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
}
.messenger-link img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.contact-phone {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 950;
}
.contact-phone:hover { color: #5b93ff; }
.contact-hours {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 850;
}
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: #ffffff;
  box-shadow: var(--shadow);
  scroll-margin-top: 110px;
}
.contact-form label, .form-tariff-group { display: block; margin-bottom: 15px; }
.contact-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 14px;
}
.contact-field-wide { grid-column: 1 / -1; }
.contact-form label span, .form-tariff-group > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 900;
}
.form-tariff-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.form-tariff-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
  text-align: left;
}
.form-tariff-option b {
  color: var(--muted);
  font-size: .86rem;
  white-space: nowrap;
}
.form-tariff-option.is-selected {
  border-color: var(--teal);
  background: rgba(91, 147, 255,  .1);
  color: #5b93ff;
}
.form-tariff-option.is-selected b { color: #5b93ff; }
.form-tariff-group select { display: none; }
.request-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}
.request-options label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: #ffffff;
  cursor: pointer;
}
.request-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}
.contact-form .request-options span {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 900;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(91, 147, 255,  .12);
}
.consent-row {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}
.consent-row input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--teal); }
.contact-form .consent-row span { margin: 0; color: var(--muted); font-size: .86rem; font-weight: 650; }
.form-submit { width: 100%; }
.form-submit:disabled { cursor: not-allowed; opacity: .62; transform: none; }
.form-note { min-height: 24px; margin: 14px 0 0; color: var(--muted); font-size: .92rem; }

.site-footer { background: #303030; color: #ffffff; padding: 30px 0 24px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-main p { margin: 0; color: #ffffff; }
.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 560px;
}
.footer-contacts a, .footer-policy {
  border: 1px solid rgba(255, 255, 255,.16);
  border-radius: 99px;
  padding: 9px 12px;
  background: rgba(255, 255, 255,.06);
  color: #ffffff;
  cursor: pointer;
}
.footer-policy {
  appearance: none;
  border-radius: var(--radius);
}
.footer-contacts a:hover, .footer-policy:hover { color: #ffffff; border-color: rgba(255, 255, 255,.32); }
.footer-note {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255,.1);
  padding-top: 18px;
  color: #ffffff;
  font-size: .92rem;
  text-align: center;
}

.cookie-strip {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: min(620px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255,.16);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(48, 48, 48, .92);
  color: #ffffff;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.cookie-strip.is-hidden { display: none; }
.cookie-strip p { margin: 0; color: rgba(255, 255, 255,.78); font-size: .92rem; }
.cookie-accept { min-height: 42px; padding: 0 16px; }

.modal {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
}
.modal.is-open { display: grid; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(48, 48, 48, .62);
}
.policy-dialog,
.service-dialog,
.success-dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  overflow: auto;
  border-radius: var(--radius);
  padding: 30px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.policy-dialog h2 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2.5vw, 2.4rem);
  line-height: 1.08;
}
.service-dialog { width: min(560px, 100%); }
.service-dialog h2 { margin-bottom: 18px; font-size: clamp(1.4rem, 2.8vw, 2.3rem); line-height: 1.08; }
.success-dialog {
  width: min(580px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255,.14);
  background:
    linear-gradient(rgba(255, 255, 255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255,.035) 1px, transparent 1px),
    #303030;
  background-size: 36px 36px, 36px 36px, auto;
  color: #ffffff;
  text-align: center;
}
.success-dialog .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  float: none;
  border-color: rgba(255, 255, 255,.18);
  background: #303030;
  color: #ffffff;
}
.success-dialog .eyebrow {
  display: block;
  margin: 8px 48px 12px;
  text-align: center;
}
.success-dialog h2 {
  max-width: 460px;
  margin: 0 auto 24px;
  color: #ffffff;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.05;
}
.success-caption {
  margin-bottom: 8px;
  color: rgba(255, 255, 255,.64);
  font-weight: 850;
}
.success-number {
  display: block;
  margin-bottom: 22px;
  color: var(--yellow);
  font-size: clamp(2.8rem, 8vw, 5rem);
  line-height: 1;
}
.success-dialog > p:not(.eyebrow):not(.success-caption) {
  max-width: 460px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255,.76);
}
.success-close-button {
  width: min(300px, 100%);
}
.modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}
.policy-content {
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.62;
}
.policy-content h3 {
  margin: 18px 0 2px;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}
.policy-content h3:first-child { margin-top: 0; }
.policy-content p {
  width: 100%;
  margin: 0;
}
.policy-content a { color: #5b93ff; font-weight: 900; }
.service-form {
  display: grid;
  gap: 14px;
}
.service-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 900;
}
.service-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}
.service-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(91, 147, 255,  .12);
}
.service-form input[readonly] {
  background: var(--paper);
  color: var(--ink-soft);
  font-weight: 900;
}
.service-consent {
  margin: 2px 0;
}
.service-form .service-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}
.service-form .service-consent span {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 650;
}
.service-submit {
  width: 100%;
}
.service-submit:disabled {
  cursor: not-allowed;
  opacity: .62;
  transform: none;
}
.service-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255,.035) 1px, transparent 1px),
    linear-gradient(135deg, #303030, #303030);
  background-size: 36px 36px, 36px 36px, auto;
  color: #ffffff;
}
.thanks-screen {
  display: grid;
  min-height: 100vh;
  padding: 32px 20px;
  place-items: center;
}
.thanks-card {
  width: min(680px, 100%);
  border: 1px solid rgba(255, 255, 255,.14);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 48px);
  background: #303030;
  box-shadow: 0 24px 70px rgba(48, 48, 48, .24);
}
.thanks-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  object-fit: contain;
}
.thanks-card h1 {
  max-width: 620px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}
.thanks-card p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255,.76);
  font-size: 1.08rem;
}
.thanks-request {
  display: inline-flex;
  margin: 0 0 18px;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 208, 40,  .14);
  color: var(--yellow);
  font-weight: 950;
}
.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .case-layout {
    grid-template-columns: 1fr;
  }
  .case-image {
    justify-self: center;
    max-width: 720px;
  }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .header-messengers { grid-column: 2; grid-row: 1; justify-self: end; }
  .nav-toggle { display: block; grid-column: 3; grid-row: 1; justify-self: end; }
  .site-nav {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(255, 255, 255,.16);
    border-radius: var(--radius);
    padding: 18px;
    background: rgba(48, 48, 48, .96);
  }
  .site-header.menu-open .site-nav { display: flex; }
  .site-nav a { padding: 12px 0; }
  .hero, .hero-inner { min-height: 720px; }
  .hero-inner { grid-template-columns: 1fr; align-items: end; }
  .hero-proof { max-width: 520px; }
  .intro-grid, .case-layout, .contact-layout, .result-grid, .process-layout, .pricing-shell, .about-layout, .trigger-dashboard { grid-template-columns: 1fr; }
  .service-lab, .trigger-main, .advantages-grid, .case-kpi-grid, .extras-grid { grid-template-columns: repeat(2, 1fr); }
  .case-header { display: block; }
  .case-header p { max-width: 100%; margin-top: 14px; }
  .case-image {
    justify-self: stretch;
    width: 100%;
    max-width: 680px;
  }
  .case-image:hover { transform: translateX(0) scale(1.01); }
  .about-media { max-width: 560px; }
  .tariff-list { grid-template-columns: repeat(3, 1fr); }
  .tariff-tab { flex-direction: column; align-items: start; min-height: 84px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { top: 8px; gap: 12px; width: calc(100% - 16px); min-height: 58px; }
  .brand { width: 38px; height: 38px; }
  .footer-inner {
    justify-content: center;
    text-align: center;
  }
  .footer-contacts {
    width: 100%;
    justify-content: center;
  }
  .footer-policy {
    margin-inline: auto;
  }
  .hero, .hero-inner { min-height: 680px; }
  .hero-media img { object-position: 64% center; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(48, 48, 48, .95), rgba(48, 48, 48, .72)),
      linear-gradient(0deg, rgba(48, 48, 48, .82), rgba(48, 48, 48, 0) 42%);
  }
  .hero-inner { padding: 118px 0 42px; }
  h1 { font-size: clamp(1.18rem, 6vw, 1.85rem); }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .section { padding: 62px 0; }
  .intro-copy h2, .case-copy h2, .section-head h2, .result-copy h2, .contact-copy h2, .about-copy h2 { font-size: clamp(1rem, 4.5vw, 1.4rem); }
  .case-copy h2 { white-space: normal; }
  .services-section .section-head h2 { font-size: clamp(.92rem, 4vw, 1.16rem); }
  .trigger-section .section-head h2,
  .pricing-section .section-head h2 {
    font-size: clamp(.98rem, 3.7vw, 1.14rem);
    line-height: 1.12;
  }
  .console-rows div { grid-template-columns: 1fr; gap: 4px; }
  .service-lab, .case-window-grid, .trigger-main, .timeline, .tariff-list, .panel-grid, .about-console, .faq-grid, .advantages-grid, .case-kpi-grid, .request-options, .extras-grid { grid-template-columns: 1fr; }
  .case-copy { padding: 22px; }
  .trigger-dashboard { padding: 14px; }
  .trigger-card {
    min-height: 150px;
    padding: 16px 16px 44px;
  }
  .trigger-card h3 { font-size: 1rem; }
  .trigger-card p { font-size: .9rem; }
  .trigger-card i {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .pricing-description {
    padding: 18px 18px 18px 22px;
  }
  .pricing-description p {
    font-size: .96rem;
    line-height: 1.58;
  }
  .service-card { grid-template-columns: 48px 1fr; min-height: 240px; }
  .pricing-shell { gap: 14px; }
  .tariff-tab { flex-direction: row; min-height: 62px; }
  .tariff-panel, .contact-form, .specialty-list, .case-showcase, .policy-dialog { padding: 22px; }
  .panel-top { display: block; }
  .panel-price { margin-top: 16px; text-align: left; }
  .contact-fields { grid-template-columns: 1fr; }
  .contact-field-wide { grid-column: auto; }
  .form-tariff-buttons { display: none; }
  .form-tariff-group select { display: block; }
  .footer-inner { align-items: center; flex-direction: column; text-align: center; }
  .footer-main { width: 100%; text-align: center; }
  .footer-contacts { width: 100%; justify-content: center; }
  .cookie-strip {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    grid-template-columns: 1fr;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .cookie-accept { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
