@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Normal.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #f7f7f5;
  --paper: #ffffff;
  --ink: #151515;
  --muted: #686868;
  --line: #e7e4df;
  --blue: #06a9ea;
  --coral: #ff5b61;
  --orange: #ff7847;
  --lime: #c8f35a;
  --green: #5dc08f;
  --dark: #080808;
  --shadow: 0 22px 70px rgba(22, 22, 22, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

.icon {
  display: inline-grid;
  place-items: center;
  width: 1em;
  height: 1em;
  color: inherit;
  line-height: 1;
}

.icon svg {
  display: block;
  width: 1em;
  height: 1em;
}

.icon-blue {
  color: var(--blue) !important;
}

.icon-green {
  color: #2e9d55 !important;
}

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

button,
input {
  font: inherit;
}

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

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.shell {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}

.shell.narrow {
  width: min(760px, calc(100% - 32px));
}

.centered {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 0;
}

.nav {
  min-height: 102px;
  display: grid;
  grid-template-columns: auto auto auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    min-height 0.22s ease,
    padding 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

@media (min-width: 981px) {
  .site-header.is-scrolled {
    top: 12px;
  }

  .site-header.is-scrolled .nav {
    min-height: 74px;
    padding: 10px 18px;
    border: 1px solid rgba(226, 224, 219, 0.88);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
      0 18px 48px rgba(20, 20, 20, 0.1),
      0 2px 0 rgba(255, 255, 255, 0.9) inset;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-header.is-scrolled .nav-links {
    gap: 30px;
  }

  .site-header.is-scrolled .brand-divider {
    height: 34px;
  }

  .site-header.is-scrolled .nav-cta {
    min-height: 48px;
    padding: 0 24px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 2px solid #111;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.brand-mark::before {
  content: "А";
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
}

.brand-divider {
  width: 1px;
  height: 40px;
  background: #dcdad5;
}

.brand-subtitle {
  color: #74716d;
  font-size: 14px;
  line-height: 1.18;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  color: #1f1f1f;
  font-size: 15px;
}

.nav-links a,
.footer-links a,
.nav-phone,
.nav-contact,
.nav-cta {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-links a:hover,
.footer-links a:hover,
.nav-phone:hover,
.nav-contact:hover {
  color: var(--coral);
}

.nav-links a:focus-visible,
.footer-links a:focus-visible,
.nav-phone:focus-visible,
.nav-contact:focus-visible,
.nav-cta:focus-visible,
.brand:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
.modal-close:focus-visible,
.direct-contact__links a:focus-visible,
.quiz-restart:focus-visible,
.footer-links button:focus-visible,
.form-consent button:focus-visible,
.cookie-banner button:focus-visible,
.footer-requisites a:focus-visible,
.legal-modal__content:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(6, 169, 234, 0.45);
  outline-offset: 3px;
}

.nav-phone {
  font-size: 14px;
  font-weight: 700;
}

.nav-contact {
  display: grid;
  justify-items: end;
  gap: 2px;
  white-space: nowrap;
}

.nav-contact strong {
  font-size: 18px;
  line-height: 1;
}

.nav-contact span {
  color: #74716d;
  font-size: 13px;
}

.nav-cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.14);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #101010;
  place-items: center;
  gap: 4px;
  padding: 12px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}

.mesh-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(11, 173, 238, 0.22), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(200, 243, 90, 0.34), transparent 28%),
    radial-gradient(circle at 42% 92%, rgba(255, 91, 97, 0.2), transparent 30%),
    var(--bg);
}

.hero {
  min-height: 940px;
  padding: 150px 0 0;
  border: 1px solid #d8d7d2;
  border-radius: 14px;
  background:
    radial-gradient(circle at 58% 48%, rgba(18, 18, 18, 0.09), transparent 27%),
    radial-gradient(circle at 88% 10%, rgba(245, 241, 232, 0.84), transparent 34%),
    radial-gradient(circle at 42% 95%, rgba(255, 91, 97, 0.08), transparent 30%),
    #fff;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, 0.78fr) minmax(720px, 1.22fr);
  align-items: center;
  gap: 18px;
  min-height: 790px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding: 10px 0 86px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(52px, 5.75vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span {
  color: var(--coral);
  white-space: nowrap;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 30px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-eyebrow span {
  width: 34px;
  height: 1px;
  background: #cfcfca;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 45px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-text {
  max-width: 520px;
  margin-bottom: 36px;
  color: #55524f;
  font-size: 19px;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 44px;
}

.btn {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 28px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  box-shadow: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: #fff;
  box-shadow: 0 14px 32px rgba(255, 91, 97, 0.28);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 550px;
}

.trust-row div {
  min-height: 80px;
  display: grid;
  align-content: center;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  padding: 14px 18px;
  border: 1px solid #deddd8;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
}

.trust-icon {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  align-self: center;
  padding: 5px;
  border-radius: 8px;
  background: rgba(255, 91, 97, 0.1);
  color: var(--coral);
  font-size: 17px;
}

.trust-row strong {
  display: block;
  font-size: 17px;
}

.trust-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.client-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 520px;
  margin-top: 58px;
}

.client-avatars {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.client-avatars img {
  width: 56px;
  height: 36px;
  margin-left: -8px;
  padding: 5px 7px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 22px rgba(20, 20, 20, 0.08);
  object-fit: contain;
  object-position: center;
}

.client-avatars img:first-child,
.client-avatars span:first-child {
  margin-left: 0;
}

.client-avatars span {
  width: 38px;
  height: 38px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.client-proof p {
  margin: 0;
  color: #696662;
  font-size: 14px;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 790px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 24%;
  bottom: 0;
  z-index: 0;
  height: 74%;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(180deg, rgba(226, 221, 213, 0.9), rgba(246, 242, 237, 0));
  filter: blur(0.2px);
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 22%;
  bottom: -2px;
  z-index: 2;
  width: 38%;
  height: 40px;
  border-radius: 50%;
  background: rgba(24, 22, 20, 0.18);
  filter: blur(18px);
}

.stats-board {
  position: absolute;
  right: 0;
  top: 108px;
  z-index: 1;
  width: min(540px, 57%);
  max-width: none;
  opacity: 0.9;
  filter: drop-shadow(0 26px 64px rgba(25, 25, 25, 0.14));
}

.hero-person {
  position: absolute;
  left: 34%;
  bottom: -78px;
  z-index: 3;
  width: min(440px, 48%);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.22));
}

.expert-card {
  position: absolute;
  right: 11%;
  bottom: 118px;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  width: 248px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 91, 97, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 22px 50px rgba(20, 20, 20, 0.13),
    0 16px 42px rgba(255, 91, 97, 0.12);
  backdrop-filter: blur(16px);
}

.expert-card > span {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255, 91, 97, 0.1);
}

.expert-card strong {
  display: block;
  margin-bottom: 2px;
}

.expert-card p {
  margin: 0;
  color: #6d6965;
  font-size: 12px;
  line-height: 1.28;
}

@media (min-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(460px, 0.76fr) minmax(760px, 1.24fr);
    gap: 12px;
  }

  .hero-visual {
    min-height: 800px;
    margin-left: 0;
  }

  .hero-visual::before {
    left: 15%;
    right: 20%;
    height: 76%;
  }

  .hero-visual::after {
    left: 21%;
    width: 40%;
  }

  .stats-board {
    right: -12px;
    top: 122px;
    width: min(600px, 63%);
    opacity: 0.94;
    filter: drop-shadow(0 28px 68px rgba(25, 25, 25, 0.15));
  }

  .hero-person {
    left: 35%;
    bottom: -82px;
    width: min(470px, 50%);
    filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.23));
  }

  .expert-card {
    right: 11%;
    bottom: 112px;
    width: 260px;
    padding: 16px 18px;
  }

  .expert-card strong {
    font-size: 17px;
  }

  .expert-card p {
    font-size: 12.5px;
  }
}

.profile-panel {
  position: absolute;
  right: 0;
  top: 36px;
  z-index: 2;
  width: min(420px, 68%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(20, 20, 20, 0.15);
  backdrop-filter: blur(16px);
}

.mock-toolbar {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
}

.mock-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.mock-toolbar span:nth-child(2) {
  background: #ffc442;
}

.mock-toolbar span:nth-child(3) {
  background: var(--green);
}

.profile-cover {
  min-height: 190px;
  display: grid;
  align-content: end;
  padding: 18px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5, 172, 234, 0.16), rgba(255, 255, 255, 0) 48%),
    linear-gradient(225deg, rgba(200, 243, 90, 0.36), rgba(255, 255, 255, 0) 50%),
    #f7faf4;
}

.cover-house {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 210px;
  height: 102px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(20, 20, 20, 0.12);
  transform: translate(-50%, -30%);
}

.cover-house::before {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 84px;
  border-left: 76px solid transparent;
  border-right: 76px solid transparent;
  border-bottom: 72px solid #ee5f54;
}

.cover-copy {
  position: relative;
  display: grid;
  gap: 3px;
}

.cover-copy strong {
  font-size: 22px;
}

.cover-copy span {
  color: var(--muted);
  font-size: 13px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.profile-stats div {
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 10px;
  border-radius: 8px;
  background: #f4f4f1;
}

.profile-stats strong {
  font-size: 21px;
}

.profile-stats span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.listing-stack {
  display: grid;
  gap: 9px;
}

.listing-row {
  min-height: 66px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #ededeb;
  border-radius: 8px;
  background: #fff;
}

.listing-row > span {
  width: 48px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(6, 169, 234, 0.24), rgba(200, 243, 90, 0.36));
}

.listing-row b,
.listing-row small,
.listing-row em {
  display: block;
}

.listing-row b {
  font-size: 13px;
  line-height: 1.2;
}

.listing-row small {
  color: var(--muted);
  font-size: 11px;
}

.listing-row em {
  color: #158356;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.portrait-card {
  position: absolute;
  left: 4px;
  bottom: 10px;
  z-index: 3;
  width: 310px;
  height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 38%),
    linear-gradient(145deg, #eef9ff 0%, #f5f5ef 48%, #fbe0df 100%);
  box-shadow: 0 28px 80px rgba(20, 20, 20, 0.18);
}

.portrait-card::after {
  content: "";
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 18px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
  filter: blur(14px);
}

.portrait-label {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.portrait-label span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.metric-card {
  position: absolute;
  z-index: 4;
  width: 182px;
  display: grid;
  gap: 4px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(20, 20, 20, 0.12);
  backdrop-filter: blur(16px);
}

.metric-card strong {
  font-size: 22px;
}

.metric-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.metric-card-top {
  left: 210px;
  top: 8px;
}

.metric-card-bottom {
  right: 56px;
  bottom: 30px;
}

.phone-mockup {
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 2;
  width: min(320px, 60vw);
  padding: 12px;
  border-radius: 38px;
  background: #101010;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.phone-top {
  width: 86px;
  height: 20px;
  margin: 0 auto 8px;
  border-radius: 0 0 14px 14px;
  background: #101010;
}

.phone-screen {
  min-height: 490px;
  padding: 18px;
  border-radius: 28px;
  background: #f9faf8;
}

.listing-photo {
  height: 190px;
  margin-bottom: 14px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #d8f3ff 0 32%, #f8d9d2 32% 58%, #dff2a8 58% 100%);
  position: relative;
  overflow: hidden;
}

.listing-photo::before {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 24px;
  width: 154px;
  height: 82px;
  border-radius: 8px 8px 4px 4px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.listing-photo::after {
  content: "";
  position: absolute;
  left: 56px;
  bottom: 98px;
  border-left: 58px solid transparent;
  border-right: 58px solid transparent;
  border-bottom: 58px solid #e45c4f;
}

.rating-line {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.rating-line span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffc442;
}

.phone-screen h2 {
  margin-bottom: 8px;
  font-size: 23px;
}

.phone-screen p {
  color: var(--muted);
  font-size: 14px;
}

.mini-card {
  margin-top: 22px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: var(--radius);
  background: #101010;
  color: #fff;
}

.mini-card b {
  font-size: 26px;
}

.mini-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: 80px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 60px;
}

.need-card {
  min-height: 220px;
  padding: 28px;
  border-radius: var(--radius);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.need-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 190px;
  height: 190px;
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(28deg);
}

.need-blue {
  background: linear-gradient(140deg, #01a7eb, #008bd6);
}

.need-red {
  background: linear-gradient(140deg, #ff6067, #ff4354);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 20px;
}

.need-card p {
  color: rgba(255, 255, 255, 0.86);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: end;
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}

.intro-copy {
  padding-bottom: 40px;
}

.intro-copy p {
  color: #4f4f4f;
}

.intro-photo-wrap {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.intro-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 80px 20px 0;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(135deg, rgba(6, 169, 234, 0.2), rgba(255, 255, 255, 0) 48%),
    linear-gradient(225deg, rgba(200, 243, 90, 0.24), rgba(255, 255, 255, 0) 48%),
    #f1f0ec;
}

.intro-photo {
  position: relative;
  z-index: 2;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 26px 40px rgba(20, 20, 20, 0.13));
}

.floating-note {
  position: absolute;
  right: 16px;
  top: 170px;
  z-index: 3;
  width: 154px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  color: var(--muted);
  font-size: 13px;
}

.quiz-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(6, 169, 234, 0.08), transparent 30%),
    linear-gradient(225deg, rgba(200, 243, 90, 0.12), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f8f7f4 100%);
  overflow: hidden;
}

.quiz-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 318px;
  width: min(960px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 91, 97, 0.38), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.quiz-section .shell {
  position: relative;
  z-index: 1;
}

.quiz-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.quiz-card,
.messenger-preview,
.price-card,
.case-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 45px rgba(20, 20, 20, 0.06);
}

.quiz-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-color: rgba(222, 218, 211, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(6, 169, 234, 0.08), rgba(255, 91, 97, 0.08));
  box-shadow:
    0 24px 70px rgba(20, 20, 20, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.quiz-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--lime), var(--coral), var(--orange));
}

.quiz-card::after {
  content: "";
  position: absolute;
  inset: 72px 24px auto auto;
  width: 120px;
  height: 120px;
  border-top: 1px solid rgba(255, 91, 97, 0.16);
  border-right: 1px solid rgba(255, 91, 97, 0.16);
  border-radius: 0 8px 0 0;
  pointer-events: none;
}

.quiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.quiz-top > span {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 91, 97, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #5f5b56;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(20, 20, 20, 0.04);
}

.quiz-top b {
  color: var(--coral);
  margin: 0 3px;
}

.progress {
  flex: 1;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #ece9e4;
  box-shadow: inset 0 1px 4px rgba(20, 20, 20, 0.08);
}

.progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--lime), var(--coral));
  box-shadow: 0 0 18px rgba(6, 169, 234, 0.24);
  transition: width 0.2s ease;
}

.quiz-card > h3 {
  max-width: 620px;
  margin-bottom: 8px;
  font-size: clamp(30px, 3vw, 42px);
}

.quiz-options {
  counter-reset: quiz-options;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 28px;
}

.option-button {
  counter-increment: quiz-options;
  min-height: 84px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(222, 218, 211, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: #232323;
  cursor: pointer;
  padding: 16px;
  text-align: left;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.045);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.option-button::before {
  content: counter(quiz-options);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f5f3ef;
  color: var(--coral);
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 91, 97, 0.16);
}

.option-button:hover,
.option-button[aria-pressed="true"] {
  border-color: rgba(255, 91, 97, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 91, 97, 0.09), rgba(255, 255, 255, 0.82)),
    #fff;
  box-shadow:
    0 18px 42px rgba(20, 20, 20, 0.07),
    0 12px 30px rgba(255, 91, 97, 0.09);
  transform: translateY(-2px);
}

.option-button[aria-pressed="true"]::before {
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 91, 97, 0.22);
}

.option-button:focus-visible {
  outline: 3px solid rgba(6, 169, 234, 0.45);
  outline-offset: 3px;
}

.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(226, 222, 216, 0.78);
}

.quiz-result[hidden] {
  display: none;
}

.quiz-card.is-complete .quiz-top,
.quiz-card.is-complete #quiz-question,
.quiz-card.is-complete #quiz-options,
.quiz-card.is-complete .quiz-actions {
  display: none;
}

.quiz-result {
  display: grid;
  gap: 14px;
}

.quiz-result h3 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 34px;
}

.quiz-result > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 4px;
  color: #5f5c58;
}

.quiz-contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #5f5c58;
  font-size: 14px;
  font-weight: 700;
}

.quiz-contact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.quiz-contact-row input {
  border-color: #dcd8d2;
  background: #fff;
  color: var(--ink);
}

.quiz-contact-row input::placeholder {
  color: #8a8580;
}

.quiz-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: #5f5c58;
  font-size: 14px;
}

.quiz-direct {
  margin-top: 8px;
}

.quiz-restart {
  justify-self: start;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #5f5c58;
  cursor: pointer;
  font-weight: 700;
}

.quiz-actions .btn:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}

.messenger-preview {
  position: relative;
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(6, 169, 234, 0.16), transparent 32%),
    linear-gradient(225deg, rgba(200, 243, 90, 0.12), transparent 34%),
    linear-gradient(160deg, #0d1012 0%, #080808 58%, #181208 100%);
  color: #fff;
  box-shadow: 0 24px 70px rgba(20, 20, 20, 0.16);
}

.messenger-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 78%);
  pointer-events: none;
}

.messenger-preview > * {
  position: relative;
  z-index: 1;
}

.preview-badge {
  justify-self: start;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 91, 97, 0.34);
  border-radius: 999px;
  background: rgba(255, 91, 97, 0.1);
  color: #ff8b82;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.messenger-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.messenger-head img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.messenger-head span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.preview-stats div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-stats strong {
  font-size: 25px;
  line-height: 1;
}

.preview-stats span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.25;
}

.bubble {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.bubble-accent {
  background: rgba(255, 91, 97, 0.16);
}

.benefits {
  padding: 84px 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 900px;
  margin: 0 auto 54px;
}

.benefit-grid article {
  text-align: center;
}

.benefit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 91, 97, 0.26);
  border-radius: 50%;
  background: #fff;
  color: var(--coral);
  font-size: 22px;
  font-weight: 700;
}

.benefit-grid p {
  color: var(--muted);
}

.lead-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(340px, 1fr);
  align-items: center;
  gap: 34px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 44px 48px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 86%, rgba(255, 91, 97, 0.24), transparent 28%),
    radial-gradient(circle at 36% 22%, rgba(6, 169, 234, 0.16), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(200, 243, 90, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    #141416;
  color: #fff;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(18, 18, 18, 0.18),
    0 34px 70px rgba(255, 91, 97, 0.14);
}

.lead-banner::before,
.lead-banner::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(30px);
}

.lead-banner::before {
  left: 62px;
  bottom: -44px;
  width: 360px;
  height: 120px;
  background: rgba(255, 91, 97, 0.36);
}

.lead-banner::after {
  left: 120px;
  top: 34px;
  width: 300px;
  height: 170px;
  background: rgba(6, 169, 234, 0.16);
}

.tablet-stage {
  position: relative;
  z-index: 1;
  min-height: 290px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.tablet-stage::before,
.tablet-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.tablet-stage::before {
  width: 88%;
  height: 46%;
  left: 6%;
  bottom: 4%;
  background:
    radial-gradient(circle at 26% 72%, rgba(255, 91, 97, 0.48), transparent 48%),
    radial-gradient(circle at 70% 35%, rgba(200, 243, 90, 0.18), transparent 42%);
  filter: blur(26px);
}

.tablet-stage::after {
  width: 54%;
  height: 38%;
  left: 18%;
  top: 16%;
  background: rgba(255, 255, 255, 0.13);
  filter: blur(34px);
}

.tablet-stage img {
  width: min(470px, 112%);
  max-width: none;
  transform: rotate(-8deg) translateX(-10px);
  filter:
    drop-shadow(0 24px 42px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 34px rgba(255, 91, 97, 0.18));
}

.lead-copy {
  position: relative;
  z-index: 2;
}

.lead-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.lead-form label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.form-consent {
  max-width: 620px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.form-consent button {
  display: inline;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quiz-contact-form .form-consent,
.modal-consent {
  color: #77716d;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0 14px;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.case-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 284px;
  padding: 26px;
  border: 1px solid #ebe8e2;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 91, 97, 0.08), transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(200, 243, 90, 0.1), transparent 32%),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 54px rgba(20, 20, 20, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.case-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 91, 97, 0.07);
  pointer-events: none;
}

.case-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.case-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 91, 97, 0.1);
  color: var(--coral);
  font-size: 22px;
}

.case-icon.icon-home {
  background: rgba(6, 169, 234, 0.1);
  color: var(--blue);
}

.case-icon.icon-tools {
  background: rgba(255, 120, 71, 0.12);
  color: var(--orange);
}

.case-icon.icon-window-layout {
  background: rgba(46, 157, 85, 0.12);
  color: #2e9d55;
}

.case-head h3 {
  flex: 1;
  margin: 0;
  font-size: 18px;
}

.case-pill {
  flex: 0 0 auto;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #e7f3dc;
  color: #2e7a31;
  font-size: 13px;
  font-weight: 700;
}

.case-change {
  display: grid;
  gap: 2px;
}

.case-change strong {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: 0;
}

.case-change span {
  color: #706c67;
  font-size: 15px;
}

.case-metrics {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 1fr;
  gap: 10px;
}

.case-metric {
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #e9e5df;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.case-metric > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 91, 97, 0.1);
  color: var(--coral);
  font-size: 17px;
  font-weight: 700;
}

.case-metric-good > span {
  background: rgba(46, 122, 49, 0.12);
  color: #2e7a31;
}

.case-metric p {
  margin: 0;
  color: #6d6965;
  font-size: 12px;
  line-height: 1.24;
}

.case-metric strong {
  color: var(--ink);
  font-size: 14px;
}

.case-note {
  max-width: 520px;
  margin: 0;
  color: #68635f;
  font-size: 17px;
  line-height: 1.42;
}

.cases-cta {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.cases-cta .btn {
  min-width: 310px;
}

.dark-section {
  overflow: hidden;
  color: #fff;
}

.process.dark-section {
  position: relative;
  min-height: 920px;
  padding: 56px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 145, 255, 0.34), transparent 24%),
    radial-gradient(circle at 100% 18%, rgba(111, 151, 45, 0.24), transparent 31%),
    radial-gradient(circle at 32% 100%, rgba(255, 77, 72, 0.22), transparent 28%),
    linear-gradient(115deg, #071018 0%, #050607 42%, #111808 100%);
}

.process.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 69% 78%, rgba(255, 81, 67, 0.18), transparent 17%),
    radial-gradient(circle at 73% 78%, rgba(119, 179, 73, 0.16), transparent 24%);
  pointer-events: none;
}

.process.dark-section::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -22%;
  width: 620px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.dark-section .shell {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 64px));
}

.dark-section .section-heading {
  margin-bottom: 54px;
}

.dark-section .section-heading .eyebrow {
  margin-bottom: 12px;
  color: var(--coral);
  letter-spacing: 0.28em;
}

.dark-section .section-heading h2 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(40px, 4vw, 58px);
}

.dark-section .section-heading p:not(.eyebrow),
.dark-section p {
  color: rgba(255, 255, 255, 0.68);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 64px;
  margin-bottom: 70px;
}

.process-steps article {
  position: relative;
  padding-top: 56px;
}

.process-steps article::before {
  content: "";
  position: absolute;
  left: 68px;
  right: -50px;
  top: 25px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16));
}

.process-steps article::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 22px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 12px rgba(255, 91, 97, 0.9);
}

.process-steps article:last-child::before,
.process-steps article:last-child::after {
  display: none;
}

.process-steps span {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 91, 97, 0.96);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow:
    0 0 0 1px rgba(255, 91, 97, 0.12),
    0 0 28px rgba(255, 91, 97, 0.24);
}

.process-steps h3 {
  margin-bottom: 14px;
  font-size: 27px;
}

.process-steps p {
  max-width: 280px;
  font-size: 18px;
  line-height: 1.45;
}

.contract-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(420px, 1.15fr);
  align-items: end;
  gap: 24px;
  min-height: 430px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 68px;
}

.contract-block > div {
  max-width: 560px;
  padding: 92px 0 92px;
}

.contract-block .eyebrow {
  color: var(--coral);
  letter-spacing: 0.24em;
}

.contract-block h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(38px, 4vw, 56px);
}

.contract-block p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 18px;
  line-height: 1.5;
}

.process-btn {
  min-width: 260px;
  justify-content: space-between;
  box-shadow:
    0 18px 42px rgba(255, 91, 97, 0.26),
    0 0 58px rgba(255, 91, 97, 0.18);
}

.process-btn::after {
  content: "→";
  margin-left: 28px;
  font-size: 28px;
  line-height: 1;
}

.contract-block img {
  position: relative;
  z-index: 1;
  justify-self: center;
  align-self: end;
  width: min(470px, 58vw);
  max-width: none;
  max-height: 540px;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 54px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 34px rgba(255, 91, 97, 0.12));
}

.pricing {
  background:
    radial-gradient(circle at 10% 8%, rgba(200, 243, 90, 0.14), transparent 26%),
    radial-gradient(circle at 92% 92%, rgba(255, 91, 97, 0.08), transparent 30%),
    #fbfaf8;
}

.pricing-heading {
  max-width: 780px;
}

.pricing-heading .eyebrow {
  margin-bottom: 12px;
  letter-spacing: 0.18em;
}

.pricing-heading h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.pricing-heading p:not(.eyebrow) {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: #66615d;
  font-size: 20px;
  line-height: 1.42;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  min-height: 570px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid #e4e1dc;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    #fff;
  box-shadow: 0 24px 70px rgba(20, 20, 20, 0.07);
}

.price-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8e4de;
}

.price-top h3 {
  margin: 0 0 12px;
  font-size: 34px;
}

.price-top p {
  max-width: 260px;
  margin: 0;
  color: #66615d;
  font-size: 18px;
  line-height: 1.42;
}

.price-top span {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border-radius: 999px;
  background: rgba(255, 91, 97, 0.1);
  color: var(--coral);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.price-features {
  display: grid;
  gap: 18px;
  margin: 30px 0 32px;
  padding: 0;
  list-style: none;
}

.price-features li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  color: #151515;
  font-size: 19px;
  line-height: 1.25;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 91, 97, 0.09);
  color: var(--coral);
  font-size: 20px;
  line-height: 1;
}

.feature-icon.icon-target-dollar,
.feature-icon.icon-wallet {
  background: rgba(143, 92, 246, 0.11);
  color: #8f5cf6;
}

.feature-icon.icon-pie-chart,
.feature-icon.icon-search-category,
.feature-icon.icon-sliders {
  background: rgba(6, 169, 234, 0.1);
  color: var(--blue);
}

.feature-icon.icon-check-square,
.feature-icon.icon-graph-increase {
  background: rgba(46, 157, 85, 0.12);
  color: #2e9d55;
}

.feature-icon.icon-flask,
.feature-icon.icon-flash {
  background: rgba(255, 120, 71, 0.12);
  color: var(--orange);
}

.price-card .btn {
  width: 100%;
  min-height: 64px;
  margin-top: auto;
  font-size: 18px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(12px);
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 243, 90, 0.16), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(255, 91, 97, 0.12), transparent 32%),
    #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.contact-modal__dialog h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 48px);
}

.contact-modal__dialog h2 span {
  color: var(--coral);
}

.modal-lead {
  max-width: 520px;
  margin-bottom: 26px;
  color: #5f5c58;
  font-size: 18px;
}

.modal-contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #5f5c58;
  font-size: 14px;
  font-weight: 700;
}

.modal-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.modal-form-row input {
  border-color: #dcd8d2;
  background: #fff;
  color: var(--ink);
}

.modal-form-row input::placeholder {
  color: #8a8580;
}

.modal-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: #5f5c58;
  font-size: 14px;
}

.direct-contact {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #e7e2dc;
}

.direct-contact p {
  margin-bottom: 12px;
  color: #5f5c58;
  font-weight: 700;
}

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

.direct-contact__links a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ded9d2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.direct-contact__links a:hover {
  border-color: rgba(255, 91, 97, 0.52);
  transform: translateY(-2px);
}

.seo-info {
  background:
    radial-gradient(circle at 10% 8%, rgba(6, 169, 234, 0.08), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(200, 243, 90, 0.12), transparent 30%),
    #f8f7f4;
}

.seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto 24px;
}

.seo-panel,
.seo-process,
.seo-text-block {
  border: 1px solid #e7e3dc;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 45px rgba(20, 20, 20, 0.045);
}

.seo-panel {
  padding: 28px;
}

.seo-panel-main {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 91, 97, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.88);
}

.seo-panel p,
.seo-process li,
.seo-text-block p {
  color: #5f5a55;
  font-size: 17px;
  line-height: 1.55;
}

.seo-process {
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: start;
  margin: 0 auto 24px;
  padding: 28px;
}

.seo-process ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.seo-process li::marker {
  color: var(--coral);
  font-weight: 700;
}

.seo-text-block {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px;
}

.faq {
  background: #fff;
}

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

.faq-list details {
  padding: 0;
  box-shadow: none;
}

.faq-list summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 0 18px;
  font-weight: 700;
}

.faq-list summary::after {
  content: "+";
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: -4px 18px 18px;
  color: var(--muted);
}

.final-cta {
  padding: 74px 0;
}

.final-cta h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p:not(.eyebrow) {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
}

.footer {
  padding: 36px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(260px, 1fr) minmax(260px, 0.9fr);
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  color: #343434;
}

.footer-brand-block p {
  max-width: 330px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-requisites {
  display: grid;
  gap: 5px;
  color: #5f5c58;
  font-size: 14px;
}

.footer-requisites strong {
  color: var(--ink);
  font-size: 15px;
}

.footer-requisites a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer-requisites a:hover {
  color: var(--coral);
}

.footer-links {
  display: grid;
  justify-items: start;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links button,
.footer-links a {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.footer-links button:hover,
.footer-links a:hover {
  color: var(--coral);
}

.legal-modal[hidden],
.cookie-banner[hidden] {
  display: none;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
}

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(12px);
}

.legal-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(78vh, 760px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 243, 90, 0.16), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(255, 91, 97, 0.12), transparent 32%),
    #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.legal-modal__dialog h2 {
  max-width: calc(100% - 58px);
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
}

.legal-modal__content {
  overflow: auto;
  padding-right: 12px;
  color: #4f4b47;
  font-size: 15px;
  line-height: 1.62;
  white-space: pre-wrap;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: min(960px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(226, 224, 219, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(20, 20, 20, 0.15);
  backdrop-filter: blur(16px);
}

.cookie-banner p {
  margin: 0;
  color: #5f5c58;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner > div {
  display: flex;
  gap: 10px;
}

.cookie-banner button:not(.btn) {
  min-height: 44px;
  border: 1px solid #ded9d2;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  padding: 0 16px;
  font-weight: 700;
}

.cookie-banner .btn {
  min-height: 44px;
  padding: 0 18px;
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 32px, 1120px);
  }

  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 66px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 50px rgba(21, 21, 21, 0.08);
    backdrop-filter: blur(18px);
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links,
  .nav-contact,
  .nav-cta,
  .brand-divider,
  .brand-subtitle {
    display: none;
  }

  body.nav-open .nav-links,
  body.nav-open .nav-contact,
  body.nav-open .nav-cta {
    display: flex;
  }

  body.nav-open .nav {
    border-radius: 24px;
    grid-template-columns: auto auto;
  }

  body.nav-open .nav-links {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 4px;
  }

  body.nav-open .nav-links a {
    padding: 11px 8px;
  }

  body.nav-open .nav-contact,
  body.nav-open .nav-cta {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    background: #f5f5f2;
  }

  body.nav-open .nav-contact {
    display: grid;
    justify-items: center;
  }

  body.nav-open .nav-cta {
    background: #111;
  }

  .hero-grid,
  .intro-grid,
  .lead-banner,
  .case-card,
  .contract-block {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero-visual {
    width: min(760px, 100%);
    min-height: 690px;
    margin: 0 auto;
  }

  .stats-board {
    right: 0;
    top: 30px;
    width: min(430px, 58%);
  }

  .hero-person {
    left: 42%;
    width: min(420px, 56vw);
  }

  .expert-card {
    left: auto;
    right: 64px;
    bottom: 56px;
  }

  .intro-copy {
    padding-bottom: 0;
  }

  .quiz-layout,
  .pricing-grid,
  .case-list {
    grid-template-columns: 1fr;
  }

  .messenger-preview {
    min-height: 260px;
  }

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

  .process.dark-section {
    min-height: auto;
    padding-top: 52px;
  }

  .dark-section .shell {
    width: min(100% - 32px, 1120px);
  }

  .process-steps {
    gap: 32px;
  }

  .process-steps article:nth-child(2)::before,
  .process-steps article:nth-child(2)::after {
    display: none;
  }

  .contract-block {
    grid-template-columns: minmax(0, 1fr);
    min-height: 640px;
    padding-top: 42px;
  }

  .contract-block > div {
    max-width: 560px;
    padding: 36px 0 0;
  }

  .contract-block img {
    justify-self: end;
    width: min(430px, 62vw);
    margin-top: -120px;
  }

  .lead-banner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 34px;
  }

  .tablet-stage {
    min-height: 260px;
  }

  .tablet-stage img {
    width: min(440px, 92vw);
    transform: rotate(-6deg);
  }

  .price-card.featured {
    transform: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 1 / -1;
  }

  .seo-grid,
  .seo-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .shell,
  .shell.narrow {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    top: 8px;
  }

  .nav {
    min-height: 54px;
  }

  .hero {
    min-height: auto;
    padding: 82px 0 0;
    border-radius: 0 0 14px 14px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-text {
    font-size: 17px;
  }

  .trust-row,
  .need-grid,
  .quiz-options,
  .benefit-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process.dark-section {
    padding-top: 44px;
    border-radius: 0;
  }

  .process.dark-section::after {
    right: -40%;
    bottom: -12%;
    width: 430px;
  }

  .dark-section .shell {
    width: min(100% - 24px, 1120px);
  }

  .dark-section .section-heading {
    margin-bottom: 36px;
  }

  .dark-section .section-heading h2 {
    font-size: 34px;
  }

  .process-steps {
    gap: 22px;
    margin-bottom: 42px;
  }

  .process-steps article {
    min-height: 0;
    padding-top: 0;
    padding-left: 64px;
  }

  .process-steps article::before,
  .process-steps article::after {
    display: none;
  }

  .process-steps span {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .process-steps h3 {
    font-size: 23px;
  }

  .process-steps p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: -18px;
    overflow: hidden;
  }

  .hero-visual::before {
    left: 8%;
    right: 8%;
    bottom: -10px;
    height: 76%;
  }

  .hero-visual::after {
    left: 26%;
    bottom: -12px;
    width: 48%;
    height: 36px;
  }

  .stats-board {
    top: 54px;
    right: -74px;
    width: min(350px, 82vw);
    opacity: 0.42;
  }

  .hero-person {
    left: 50%;
    bottom: -92px;
    width: min(310px, 74vw);
  }

  .expert-card {
    left: 18px;
    right: auto;
    bottom: 26px;
    width: min(230px, calc(100% - 36px));
    padding: 11px 13px;
  }

  .section {
    padding: 58px 0;
  }

  .intro-photo-wrap {
    min-height: 500px;
  }

  .floating-note {
    right: 4px;
    top: 130px;
  }

  .quiz-card,
  .case-card,
  .lead-banner {
    padding: 18px;
  }

  .quiz-card::after {
    display: none;
  }

  .quiz-card > h3 {
    font-size: 27px;
  }

  .quiz-top {
    align-items: stretch;
  }

  .quiz-top > span {
    justify-content: center;
  }

  .option-button {
    min-height: 74px;
  }

  .lead-banner {
    gap: 0;
  }

  .tablet-stage {
    min-height: 210px;
    margin: -8px 0 6px;
  }

  .tablet-stage img {
    width: min(330px, 106vw);
    transform: rotate(-6deg) translateX(-6px);
  }

  .lead-copy h2 {
    font-size: 29px;
  }

  .pricing-heading h2 {
    font-size: 36px;
  }

  .pricing-heading p:not(.eyebrow) {
    font-size: 17px;
  }

  .price-card {
    min-height: auto;
    padding: 22px;
  }

  .price-top {
    display: grid;
    gap: 16px;
    padding-bottom: 22px;
  }

  .price-top h3 {
    font-size: 30px;
  }

  .price-top p {
    font-size: 16px;
  }

  .price-top span {
    width: max-content;
    max-width: 100%;
    font-size: 16px;
  }

  .price-features {
    gap: 14px;
    margin: 24px 0 28px;
  }

  .price-features li {
    grid-template-columns: 38px 1fr;
    font-size: 16px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .contact-modal {
    align-items: end;
    padding: 12px;
  }

  .contact-modal__dialog {
    padding: 24px 18px 18px;
  }

  .legal-modal {
    align-items: end;
    padding: 12px;
  }

  .legal-modal__dialog {
    max-height: 86vh;
    padding: 24px 18px 18px;
  }

  .modal-close {
    right: 12px;
    top: 12px;
  }

  .modal-form-row,
  .quiz-contact-row,
  .direct-contact__links {
    grid-template-columns: 1fr;
  }

  .modal-form-row,
  .quiz-contact-row {
    display: grid;
  }

  .quiz-top,
  .quiz-actions,
  .form-row,
  .footer-inner {
    flex-direction: column;
    display: flex;
    align-items: stretch;
  }

  .form-row .btn {
    width: 100%;
  }

  .case-card {
    min-height: auto;
    padding: 20px;
  }

  .seo-panel,
  .seo-process,
  .seo-text-block {
    padding: 20px;
  }

  .seo-panel p,
  .seo-process li,
  .seo-text-block p {
    font-size: 16px;
  }

  .case-head {
    flex-wrap: wrap;
  }

  .case-head h3 {
    min-width: calc(100% - 58px);
  }

  .case-pill {
    margin-left: 58px;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .case-change strong {
    font-size: 30px;
  }

  .cases-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .contract-block {
    min-height: 620px;
    padding-top: 36px;
  }

  .contract-block > div {
    padding-top: 24px;
  }

  .contract-block h2 {
    font-size: 34px;
  }

  .contract-block p:not(.eyebrow) {
    font-size: 16px;
  }

  .contract-block img {
    justify-self: center;
    width: min(330px, 86vw);
    max-height: 430px;
    margin-top: -40px;
  }

  .process-btn {
    width: 100%;
    min-width: 0;
  }

  .footer-links {
    display: grid;
    gap: 10px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .cookie-banner > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner .btn,
  .cookie-banner button:not(.btn) {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
