:root {
  --bg: #111417;
  --bg-elevated: #181d21;
  --bg-soft: #20262b;
  --surface: #f5f1e8;
  --surface-muted: #e7dfd0;
  --surface-dark: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(17, 20, 23, 0.1);
  --text: #f5f1e8;
  --text-dark: #15181a;
  --muted: rgba(245, 241, 232, 0.72);
  --muted-dark: rgba(21, 24, 26, 0.68);
  --accent: #c6a06d;
  --accent-strong: #b78a50;
  --accent-olive: #59664b;
  --accent-blue: #163549;
  --success: #25d366;
  --success-dark: #128c4f;
  --telegram: #229ed9;
  --telegram-dark: #1278ab;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.14);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1220px;
  --font-body: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Aptos Display", "Aptos", "Segoe UI Semibold", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(20, 53, 73, 0.32), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(89, 102, 75, 0.22), transparent 22%),
    linear-gradient(180deg, #0f1316 0%, #111417 42%, #12171a 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.page-orb,
.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-orb {
  filter: blur(96px);
  opacity: 0.45;
}

.page-orb--blue {
  top: -12%;
  left: -12%;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: rgba(22, 53, 73, 0.62);
}

.page-orb--olive {
  top: 28%;
  right: -10%;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  background: rgba(89, 102, 75, 0.34);
}

.page-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, #000 44%, transparent 100%);
  opacity: 0.28;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px max(16px, calc((100vw - var(--container)) / 2));
  width: 100%;
  margin: 0;
  background: transparent;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 19, 22, 0.92), rgba(15, 19, 22, 0.48));
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 18px;
  min-width: 0;
}

.brand,
h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.05em;
  margin: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 800;
  margin-left: 20px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 20%, rgba(198, 160, 109, 0.38), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.brand-mark__hash {
  position: absolute;
  left: 8px;
  top: 7px;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--accent);
}

.brand-mark__core {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--surface);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text__name,
.brand-text__tag {
  display: block;
  line-height: 1;
}

.brand-text__name {
  font-size: 1rem;
}

.brand-text__tag {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-meta,
.hero-actions,
.signal-row,
.form-actions,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.header-meta {
  justify-content: flex-end;
  flex: 0 0 auto;
  min-width: 0;
}

.header-badge,
.header-phone,
.header-link,
.trust-ribbon__item,
.signal-pill,
.proof-stat,
.review-card,
.faq-item,
.field input,
.field textarea {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.header-badge,
.header-phone,
.header-link {
  min-height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--surface);
}

.header-link--telegram {
  background: rgba(34, 158, 217, 0.14);
  border-color: rgba(34, 158, 217, 0.34);
  color: #8fd8ff;
}

.header-link--avito {
  background: rgba(198, 160, 109, 0.14);
  border-color: rgba(198, 160, 109, 0.3);
  color: #f2c88f;
}

.header-link--call-mobile {
  display: none;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.copy-button {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  color: var(--surface);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.copy-button:hover,
.copy-button:focus-visible,
.switch-button:hover,
.switch-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button--large {
  min-height: 58px;
  padding-inline: 24px;
}

.button--primary {
  color: #07140d;
  background: linear-gradient(135deg, #44f08f, var(--success));
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.24);
}

.button--secondary {
  color: var(--surface);
  background: linear-gradient(135deg, rgba(34, 158, 217, 0.92), rgba(18, 120, 171, 0.92));
  border: 1px solid rgba(143, 216, 255, 0.22);
  box-shadow: 0 18px 34px rgba(34, 158, 217, 0.18);
}

.button--ghost,
.copy-button {
  color: var(--surface);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.button--avito {
  color: var(--surface);
  background: linear-gradient(135deg, rgba(198, 160, 109, 0.32), rgba(111, 83, 49, 0.46));
  border: 1px solid rgba(198, 160, 109, 0.28);
  box-shadow: 0 18px 34px rgba(198, 160, 109, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 32px;
  padding: 14px 0 18px;
  align-items: start;
  scroll-margin-top: 96px;
}

.hero-followup {
  display: grid;
  gap: 18px;
  padding-bottom: 28px;
}

.hero-followup__media {
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero-followup__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 32px;
  align-items: start;
}

.eyebrow,
.section-kicker,
.card-kicker,
.hero-proof__label {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  color: var(--accent);
}

.hero-switch {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 24px;
}

.hero-switch--header {
  width: min(100%, 540px);
  margin: 0;
  flex: 1 1 540px;
}

.switch-button {
  min-height: 148px;
  padding: 18px 20px 20px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  border-radius: 28px;
  color: var(--muted);
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.switch-button--header {
  min-height: 84px;
  padding: 14px 18px;
  gap: 6px;
  border-radius: 22px;
}

.switch-button--header .switch-button__title {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.switch-button--header .switch-button__meta {
  max-width: none;
  font-size: 0.9rem;
  line-height: 1.35;
}

.switch-button.is-active {
  color: var(--surface);
  background:
    radial-gradient(circle at top right, rgba(198, 160, 109, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(198, 160, 109, 0.48);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(198, 160, 109, 0.18);
}

.switch-button__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.02;
  color: var(--surface);
}

.switch-button__meta {
  max-width: 24ch;
  line-height: 1.45;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.95;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 0.98;
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.08;
}

.hero-lead,
.intro-copy p,
.section-head p,
.hero-panel__text,
.relief-card p,
.advantage-card p,
.process-step p,
.messenger-card p,
.capture-form__head p,
.review-card p,
.faq-item p,
.field span,
.form-note,
.footer-brand p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-lead {
  max-width: 60ch;
  margin: 18px 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 18px;
}

.hero-panel--desktop-hidden .hero-actions--aside {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hero-panel--desktop-hidden .hero-actions--aside .button {
  width: 100%;
}

.hero-panel--stacked .hero-actions--aside {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-panel--stacked .hero-actions--aside .button,
.hero-actions__logo {
  width: 100%;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 18px;
}

.button--compact {
  min-height: 58px;
  padding: 14px 16px;
  font-size: 1rem;
}

.hero-actions__logo {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-actions__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 191, 102, 0.22), rgba(255, 255, 255, 0.06));
  color: var(--surface);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero-actions__logo-name {
  color: var(--text);
  font-weight: 700;
  line-height: 1.1;
}

.hero-actions .button--ghost {
  background: rgba(255, 255, 255, 0.03);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 16px;
  margin-top: 28px;
}

.hero-panel--stacked {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.hero-panel--desktop-hidden {
  display: none;
}

.hero-panel__main,
.hero-panel__aside,
.hero-card,
.relief-card,
.advantage-card,
.process-step,
.messenger-card,
.capture-form,
.proof-stat,
.review-card,
.faq-item,
.final-card,
.brand-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.hero-panel__main,
.hero-panel__aside,
.relief-card,
.advantage-card,
.process-step,
.messenger-card,
.capture-form,
.review-card,
.faq-item,
.final-card {
  padding: 24px;
}

.hero-panel__title {
  margin: 0 0 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--surface);
}

.hero-summary-list,
.brief-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-summary-list {
  display: grid;
  gap: 12px;
}

.hero-panel__list {
  display: grid;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 18px;
}

.hero-summary-list li,
.brief-list li {
  position: relative;
  padding-left: 18px;
  color: var(--surface);
  line-height: 1.45;
}

.hero-summary-list li::before,
.brief-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.copy-button {
  margin-top: 14px;
}

.copy-status {
  display: block;
  min-height: 1.1em;
  margin-top: 10px;
  color: var(--accent);
}

.signal-row {
  margin-top: 20px;
}

.signal-pill {
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--surface);
}

.hero-media,
.hero-stack {
  display: grid;
  gap: 16px;
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-card--main {
  min-height: 640px;
}

.hero-card--main img,
.hero-card--trust img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--main img {
  position: absolute;
  inset: 0;
}

.hero-card__overlay {
  position: relative;
  z-index: 1;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(180deg, rgba(17, 20, 23, 0.18), rgba(17, 20, 23, 0.38) 48%, rgba(17, 20, 23, 0.86));
}

.hero-proof,
.hero-visual-tag,
.hero-card__caption {
  backdrop-filter: blur(12px);
}

.hero-proof {
  width: min(330px, 100%);
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(0, 185, 255, 0.22), transparent 38%),
    radial-gradient(circle at left center, rgba(255, 97, 74, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(18, 31, 56, 0.92), rgba(37, 48, 78, 0.84));
  border: 1px solid rgba(132, 176, 255, 0.18);
  margin-top: auto;
}

.hero-proof--link {
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-proof--link:hover,
.hero-proof--link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(198, 160, 109, 0.38);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
  outline: none;
}

.hero-proof strong,
.proof-stat strong {
  display: block;
  margin: 8px 0 6px;
  font-family: var(--font-display);
}

.hero-proof__stats {
  display: grid;
  gap: 4px;
  line-height: 1.25;
}

.hero-proof__stats span {
  display: block;
}

.hero-proof__label {
  align-items: center;
  gap: 10px;
  color: #ffb35c;
}

.avito-logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.avito-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.avito-dot--blue {
  background: #00aaff;
}

.avito-dot--green {
  background: #97cf26;
}

.avito-dot--red {
  background: #ff6154;
}

.hero-visual-tag {
  margin-left: auto;
  margin-bottom: auto;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--text-dark);
  background: rgba(245, 241, 232, 0.92);
}

.hero-stack {
  grid-template-columns: minmax(0, 1fr);
}

.hero-card--trust {
  min-height: 264px;
}

.hero-card--trust-inline {
  margin-top: 0;
}

.hero-card__caption {
  position: absolute;
  left: 18px;
  right: auto;
  bottom: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(17, 20, 23, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brief-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.section {
  padding: 86px 0;
}

.section--light {
  background: linear-gradient(180deg, rgba(245, 241, 232, 0.98), rgba(231, 223, 208, 0.96));
  color: var(--text-dark);
}

.section--light .section-kicker,
.section--light .card-kicker {
  color: var(--accent-strong);
}

.section--light .section-head p,
.section--light .intro-copy p,
.section--light .relief-card p,
.section--light .process-step p,
.section--light .review-card p,
.section--light .faq-item p,
.section--light .proof-stat span,
.section--light .field span,
.section--light .form-note {
  color: var(--muted-dark);
}

.section--light .relief-card,
.section--light .process-step,
.section--light .review-card,
.section--light .faq-item,
.section--light .proof-stat {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(21, 24, 26, 0.1);
}

.section--light .signal-pill,
.section--light .header-badge,
.section--light .header-phone,
.section--light .header-link,
.section--light .trust-ribbon__item,
.section--light .field input,
.section--light .field textarea {
  border-color: rgba(21, 24, 26, 0.1);
}

.section--dark-accent {
  background:
    radial-gradient(circle at top right, rgba(22, 53, 73, 0.28), transparent 28%),
    radial-gradient(circle at left center, rgba(89, 102, 75, 0.18), transparent 30%),
    #151a1d;
}

.section-grid {
  display: grid;
  gap: 24px;
}

.section-grid--intro {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.trust-ribbon--followup {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-ribbon__item {
  min-height: 88px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.35;
}

.service-grid,
.relief-grid,
.advantage-grid,
.process-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 26px 24px 24px 92px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 160, 109, 0.16), transparent 64%);
}

.service-card__icon,
.relief-card span,
.process-step span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(198, 160, 109, 0.14);
  color: var(--accent);
  font-weight: 800;
}

.service-card__icon {
  position: absolute;
  left: 22px;
  top: 22px;
}

.service-card h3,
.service-card p {
  text-align: left;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.relief-layout,
.audience-layout,
.capture-layout,
.faq-layout {
  display: grid;
  gap: 24px;
}

.relief-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.relief-card span,
.process-step span {
  margin-bottom: 18px;
}

.audience-layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.audience-panel,
.brand-panel__copy {
  display: grid;
  gap: 18px;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-item {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-panel {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(198, 160, 109, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.04);
}

.brand-panel img {
  width: 100%;
  min-height: 360px;
  border-radius: 22px;
  object-fit: cover;
  margin-top: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.advantage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advantage-card span {
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--surface);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.case-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__body {
  padding: 24px;
}

.case-card__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.case-card__body p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.case-card__result {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--surface);
}

.case-card--text {
  background:
    linear-gradient(180deg, rgba(22, 53, 73, 0.16), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capture-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: start;
}

.capture-actions-card {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
}

.capture-actions-card__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.2;
}

.capture-actions-card__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.capture-actions-card__list {
  margin-top: 18px;
}

.capture-form {
  background:
    radial-gradient(circle at top right, rgba(198, 160, 109, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.04);
}

.capture-form__head {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.field {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--surface);
}

.field textarea {
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(245, 241, 232, 0.42);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.proof-stat {
  min-height: 150px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  min-height: 240px;
  background: rgba(255, 255, 255, 0.72);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 24px;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 24px;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 24px 24px;
  margin: 0;
}

.final-section {
  padding-top: 24px;
  padding-bottom: 64px;
}

.final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background:
    radial-gradient(circle at 85% 10%, rgba(198, 160, 109, 0.16), transparent 24%),
    rgba(255, 255, 255, 0.04);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 110px;
}

.footer-links--muted a,
.footer-brand p {
  color: var(--muted);
}

.mobile-dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(15, 19, 22, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}

.mobile-dock__item {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--surface);
  font-weight: 700;
}

.mobile-dock__item--accent {
  color: #07140d;
  background: linear-gradient(135deg, #44f08f, var(--success));
}

.mobile-dock__item--avito {
  color: #f2c88f;
  background: linear-gradient(135deg, rgba(198, 160, 109, 0.24), rgba(111, 83, 49, 0.34));
  border: 1px solid rgba(198, 160, 109, 0.26);
}

.mobile-dock__item--telegram {
  color: #f4fbff;
  background: linear-gradient(135deg, var(--telegram), var(--telegram-dark));
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1160px) {
  .hero,
  .hero-followup__grid,
  .capture-layout,
  .audience-layout,
  .section-grid--intro,
  .final-card {
    grid-template-columns: 1fr;
  }

  .hero-card--main,
  .hero-card__overlay {
    min-height: 560px;
  }

  .hero-stack {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .advantage-grid,
  .case-grid,
  .process-grid,
  .proof-row,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-ribbon {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-ribbon--followup {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-header {
    align-items: flex-start;
  }

  .header-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-switch--header,
  .header-meta {
    width: 100%;
  }

  .hero-switch--header {
    max-width: none;
    flex: 0 0 auto;
  }

  .switch-button--header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .switch-button--header .switch-button__title {
    font-size: 1rem;
    line-height: 1.15;
  }

  .switch-button--header .switch-button__meta {
    font-size: 0.82rem;
    line-height: 1.25;
  }
}

@media (max-width: 860px) {
  .hide-mobile {
    display: none;
  }

  .shell {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    width: 100%;
    padding: 14px 12px;
    gap: 14px;
  }

  .site-header,
  .header-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .header-controls {
    width: 100%;
    min-width: 0;
  }

  .header-meta,
  .hero-actions,
  .form-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .header-meta {
    justify-content: stretch;
  }

  .button,
  .copy-button,
  .header-badge,
  .header-phone,
  .header-link {
    width: 100%;
  }

  .header-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 8px;
    min-width: 0;
    width: 100%;
  }

  .header-meta .header-phone,
  .header-meta .header-link--call-mobile {
    width: auto;
    min-height: 44px;
    min-width: 0;
  }

  .header-meta .header-phone {
    grid-column: 1;
    justify-self: start;
    justify-content: flex-start;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-meta .header-link--call-mobile {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    justify-content: center;
    padding-inline: 14px;
  }

  .hero-switch--header {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-followup {
    padding-bottom: 18px;
  }

  .switch-button--header {
    min-height: 48px;
    padding: 10px 12px;
    border-radius: 16px;
    justify-items: center;
    min-width: 0;
    text-align: center;
  }

  .switch-button--header .switch-button__title {
    font-size: 0.95rem;
    line-height: 1.15;
  }

  .switch-button--header .switch-button__meta {
    display: none;
  }

  .hero-panel--desktop-hidden {
    display: grid;
  }

  .hero-panel--stacked {
    display: none;
  }

  .hero-panel,
  .hero-stack,
  .hero-followup__media,
  .service-grid,
  .relief-grid,
  .advantage-grid,
  .case-grid,
  .process-grid,
  .proof-row,
  .review-grid,
  .trust-ribbon,
  .trust-ribbon--followup {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 180px;
    padding: 24px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-content: center;
    align-items: center;
    column-gap: 16px;
  }

  .service-card__icon {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1;
    grid-row: 1 / span 2;
    z-index: 1;
  }

  .service-card h3,
  .service-card p {
    grid-column: 2;
    min-width: 0;
    position: relative;
    z-index: 1;
  }

  .service-card p {
    margin-top: 8px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-card--main,
  .hero-card__overlay {
    min-height: 440px;
  }

  .mobile-dock {
    display: grid;
  }
}

@media (max-width: 560px) {
  h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 11vw, 4rem);
  }

  h2 {
    max-width: 100%;
  }

  .hero,
  .section {
    padding-top: 28px;
  }

  .service-card {
    min-height: 200px;
  }

  .hero-card__overlay,
  .hero-panel__main,
  .hero-panel__aside,
  .service-card,
  .relief-card,
  .advantage-card,
  .process-step,
  .messenger-card,
  .capture-form,
  .review-card,
  .faq-item summary,
  .faq-item p,
  .final-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-card__overlay,
  .hero-card--brief,
  .brand-panel,
  .final-card {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .brand {
    gap: 10px;
    margin-left: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .brand-mark__core {
    font-size: 1.35rem;
  }
}
