:root {
  --navy: #08142d;
  --navy-2: #101b3b;
  --blue: #142548;
  --green: #88b72f;
  --green-dark: #5f8d19;
  --text: #10182d;
  --muted: #6c7280;
  --paper: #f7f8f8;
  --white: #ffffff;
  --shadow: 0 18px 32px rgba(8, 20, 45, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Roboto, Arial, sans-serif;
  line-height: 1.45;
}

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

.container {
  width: min(1010px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  color: var(--navy);
  background: rgba(247, 248, 248, .95);
  border-bottom: 1px solid rgba(8, 20, 45, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  text-transform: uppercase;
  font-family: Montserrat, Arial, sans-serif;
}

.logo-img {
  display: block;
  width: 122px;
  height: 44px;
  object-fit: contain;
}

.logo b,
.logo small { display: block; line-height: 1; }
.logo b { font-size: 16px; letter-spacing: .02em; }
.logo small { margin-top: 3px; color: var(--green); font-size: 10px; letter-spacing: .12em; }

.main-nav {
  display: flex;
  gap: 21px;
  margin-left: auto;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.main-nav a { opacity: .82; padding: 28px 0 23px; }
.main-nav a:hover,
.main-nav .is-active { color: var(--green); opacity: 1; border-bottom: 2px solid var(--green); }

.header-phone {
  white-space: nowrap;
  color: rgba(8,20,45,.9);
  font-size: 13px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  color: var(--white);
  background: linear-gradient(180deg, #9ac93a, #76a823);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 8px 18px rgba(95,141,25,.22);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.button-small { min-height: 38px; padding: 0 20px; font-size: 10px; }
.button-outline { background: transparent; border-color: rgba(255,255,255,.55); box-shadow: none; }

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background: url("img/Главная_фон.webp") center / cover no-repeat;
}

.hero-bg {
  display: none;
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 45%;
  height: 425px;
  z-index: 1;
  opacity: .92;
}

.tower {
  position: absolute;
  bottom: 0;
  display: block;
  width: 70px;
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(72,116,145,.9) 36%, rgba(18,47,77,.95));
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: inset 12px 0 26px rgba(255,255,255,.14), 0 0 30px rgba(255,255,255,.1);
}

.tower::before {
  content: "";
  position: absolute;
  inset: 16px 10px;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.22) 0 2px, transparent 2px 16px);
}

.tower-a { left: 2%; height: 260px; clip-path: polygon(0 8%, 72% 0, 100% 100%, 0 100%); }
.tower-b { left: 18%; height: 340px; width: 88px; clip-path: polygon(20% 0, 100% 10%, 78% 100%, 0 100%); }
.tower-c { left: 38%; height: 390px; width: 78px; background: linear-gradient(180deg, #d57a5e, #555b80 34%, #12304d); clip-path: polygon(18% 0, 77% 0, 100% 100%, 0 100%); }
.tower-d { left: 58%; height: 300px; width: 90px; clip-path: polygon(0 20%, 100% 0, 70% 100%, 8% 100%); }
.tower-e { left: 75%; height: 210px; width: 95px; }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  max-width: 1010px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,
h2,
h3 { font-family: Montserrat, Arial, sans-serif; margin: 0; }

h1 {
  max-width: 560px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.78);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-text {
  max-width: 505px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 15px;
}

.hero-actions { display: flex; gap: 18px; margin-top: 32px; }

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -58px;
  background: var(--white);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 0 44%, 11% 44%);
  box-shadow: 0 -12px 30px rgba(0,0,0,.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  padding: 32px 0 34px;
  justify-items: center;
}

.trust-item { display: flex; align-items: center; gap: 18px; }
.icon-box {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
}
.trust-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.trust-item p { margin: 0 0 1px; color: #3e4350; font-family: Montserrat, Arial, sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; }
.trust-item strong { font-family: Montserrat, Arial, sans-serif; font-size: 29px; line-height: 1; }

.news-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 72px;
  color: var(--white);
  background: url("img/Фон_новости.webp") center top / cover no-repeat;
}

.news-section h2,
.steps-section h2,
.stories-section h2 {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.news-section h2 {
  position: relative;
  z-index: 1;
}

.news-section .container {
  position: relative;
  z-index: 1;
}

.news-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  margin: 28px auto 0;
  padding: 4px 0 12px;
}

.news-carousel { position: relative; }
.news-grid::-webkit-scrollbar { display: none; }

.news-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 240px;
  min-height: 250px;
  padding: 36px 34px 30px;
  background: linear-gradient(180deg, #132145, #0b1734);
  border-radius: 8px;
  box-shadow: none;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: none;
}
.news-card time { color: rgba(255,255,255,.42); font-size: 14px; }
.news-card h3 { margin-top: 14px; font-size: 22px; line-height: 1.2; }
.news-card-image { display: block; width: 100%; max-height: 150px; margin-top: 18px; border-radius: 6px; object-fit: cover; }
.news-card p { margin: 16px 0 22px; color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.5; }
.news-card-preview {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: pre-line;
  text-overflow: ellipsis;
}

.news-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(8,20,45,.86);
  color: #fff;
  box-shadow: 0 12px 28px rgba(8,20,45,.18);
  font: 700 26px/1 Arial, sans-serif;
  transform: translateY(-50%);
  cursor: pointer;
}
.news-carousel-arrow:hover { background: rgba(8,20,45,.95); }
.news-carousel-arrow:disabled { opacity: .3; cursor: default; }
.news-carousel-arrow-prev { left: 6px; }
.news-carousel-arrow-next { right: 6px; }

.news-modal-open { overflow: hidden; }
.news-modal[hidden] { display: none; }
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,20,45,.68);
  backdrop-filter: blur(2px);
}
.news-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 48px));
  max-height: min(86vh, 860px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow);
  outline: none;
}
.news-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(8,20,45,.08);
}
.news-modal-header h3 {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.14;
}
.news-modal-date {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.news-modal-close {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  color: var(--navy);
  font: 300 30px/1 Arial, sans-serif;
  cursor: pointer;
}
.news-modal-content {
  overflow-y: auto;
  padding: 22px 26px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.68;
}
.news-modal-content p,
.news-modal-text {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.news-modal-media { margin-bottom: 18px; }
.news-modal-media img { display: block; width: 100%; height: auto; border-radius: 10px; }
.news-modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 0 26px 24px;
}
.news-modal-footer a { color: var(--green); font-weight: 800; text-decoration: underline; }

.problem-section { padding: 0 0 56px; background: var(--paper); }
.problem-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 405px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.problem-side { position: relative; padding: 70px 56px 56px; text-align: center; }
.problem-dark {
  color: #072850;
  background: #fff;
}
.problem-light {
  color: #072850;
  background: #fff;
  border-left: 1px solid rgba(8,20,45,.08);
}
.line-icon { position: relative; z-index: 1; color: #072850; font-size: 58px; font-family: Montserrat, Arial, sans-serif; font-weight: 500; }
.problem-icon {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin: 0 auto;
}
.problem-side h2 { position: relative; z-index: 1; margin: 28px 0; font-size: 37px; line-height: 1.13; font-weight: 900; text-transform: uppercase; }
.problem-side p { position: relative; z-index: 1; margin: 13px 0; font-size: 21px; }

.steps-section {
  position: relative;
  overflow: hidden;
  padding: 66px 0 80px;
  background: #f5f6f6;
}
.steps-section h2 { color: #072850; margin-bottom: 34px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step-card {
  min-height: 278px;
  padding: 18px 22px 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.step-num { color: var(--green); font-family: Montserrat, Arial, sans-serif; font-size: 58px; font-weight: 800; line-height: 1; }
.step-icon { height: 128px; margin-top: -8px; display: grid; place-items: center; }
.step-icon img { display: block; width: 128px; height: 128px; object-fit: contain; }
.step-card h3 { margin-top: 8px; font-size: 18px; line-height: 1.18; }
.step-card p { color: #555b65; font-size: 14px; line-height: 1.35; }

.catalog-section {
  position: relative;
  overflow: hidden;
  padding: 68px 0 76px;
  background: url("img/Фон_услуги.webp") center top / cover no-repeat;
}
.catalog-section h2 {
  margin-bottom: 30px;
  color: var(--green);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.catalog-section .container {
  position: relative;
  z-index: 1;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 26px;
  background: #f7f8f8;
  border: 1px solid rgba(8,20,45,.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.catalog-icon {
  display: block;
  width: 128px;
  height: 128px;
  object-fit: contain;
  margin: 0 auto 14px;
}
.catalog-mark {
  margin: 0 0 14px;
  color: #072850;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}
.catalog-card .catalog-mark {
  font-size: 18px;
}
.catalog-card p {
  margin: 0 0 12px;
  color: #334055;
  font-size: 15px;
  line-height: 1.5;
}
.catalog-benefit { margin-bottom: 20px; }
.catalog-benefit strong { color: #072850; }

.stories-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 88px;
  text-align: center;
  background: var(--white);
}
.stories-section::before {
  content: "";
  position: absolute;
  left: 44%;
  top: 108px;
  width: 270px;
  height: 360px;
  background: linear-gradient(118deg, var(--green) 0 50%, transparent 50.2%);
}
.stories-section h2 { position: relative; color: var(--navy); margin-bottom: 46px; }
.stories-wrap { position: relative; display: flex; align-items: center; justify-content: center; gap: 22px; }
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 650px; }
.story-card {
  position: relative;
  z-index: 1;
  padding: 12px 13px 18px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow);
  text-align: left;
}
.story-card.is-featured { transform: translateY(-14px); }
.avatar {
  height: 145px;
  border-radius: 3px;
  background:
    radial-gradient(circle at 50% 32%, #f3c8b2 0 19%, transparent 20%),
    linear-gradient(90deg, transparent 0 38%, #1f3761 38% 62%, transparent 62%),
    linear-gradient(180deg, #dce8f2, #f8fafc);
}
.avatar-two { background: radial-gradient(circle at 50% 31%, #e2ad91 0 20%, transparent 21%), linear-gradient(90deg, transparent 0 36%, #192f58 36% 64%, transparent 64%), linear-gradient(180deg, #dce8f2, #fff); }
.avatar-three { background: radial-gradient(circle at 50% 31%, #f1c4ac 0 19%, transparent 20%), linear-gradient(90deg, transparent 0 35%, #f1f7fb 35% 65%, transparent 65%), linear-gradient(180deg, #dce8f2, #fff); }
.story-card h3 { margin-top: 14px; font-size: 15px; }
.story-card .role { margin: 2px 0 9px; color: var(--muted); font-size: 11px; }
.story-card p:last-child { margin: 0; color: #515867; font-size: 12px; line-height: 1.35; }
.slider-arrow {
  width: 42px;
  height: 42px;
  color: rgba(8,20,45,.28);
  background: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(8,20,45,.12);
  font-size: 35px;
  line-height: 1;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(180deg, #07132d, #050d21);
  text-align: center;
}
.site-footer::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -82px;
  width: 190px;
  height: 230px;
  background: linear-gradient(118deg, var(--green) 0 34%, rgba(255,255,255,.08) 34.5% 48%, transparent 48.5%);
  transform: skewX(-14deg);
}
.footer-cta { position: relative; z-index: 1; padding: 48px 0 30px; }
.footer-cta h2 { font-size: 25px; font-weight: 900; text-transform: uppercase; }
.footer-cta p { margin: 8px 0 4px; color: rgba(255,255,255,.55); }
.footer-cta > a:not(.button) { display: block; margin-bottom: 18px; color: rgba(255,255,255,.8); }
.socials { display: flex; justify-content: center; gap: 20px; margin-top: 25px; color: rgba(255,255,255,.45); font-size: 13px; }
.footer-brand { position: relative; z-index: 1; padding: 6px 0 28px; }
.footer-logo { display: block; width: min(73px, 22vw); height: auto; margin: 0 auto; }
.footer-bottom { padding: 20px 0 28px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.32); font-size: 12px; text-align: left; }

.footer-cta a[href="privacy.html"],
.footer-cta a[href="/privacy"] { color: var(--green); text-decoration: underline; }

.policy-page { background: var(--paper); }
.policy-hero {
  padding: 120px 0 80px;
  color: #072850;
}
.policy-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}
.policy-content {
  max-width: 900px;
  margin-top: 28px;
  padding: 28px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.policy-content p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
}
.policy-content ul {
  margin: 0 0 14px 20px;
  padding: 0;
}
.policy-content li {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.6;
}
.policy-content p:last-child { margin-bottom: 0; }

@media (max-width: 980px) {
  .header-inner { flex-wrap: wrap; padding: 14px 0; gap: 14px; }
  .main-nav { order: 3; width: 100%; justify-content: center; margin-left: 0; }
  .main-nav a { padding: 8px 0; }
  .hero-bg { right: -10%; width: 52%; opacity: .55; }
  .trust-grid,
  .news-grid,
  .steps-grid { gap: 18px; }
  .problem-side { padding: 48px 34px; }
  .problem-light { margin-left: -35px; padding-left: 70px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 560px); }
  .site-header { position: relative; background: rgba(247, 248, 248, .98); }
  .header-inner { justify-content: center; gap: 12px; padding: 12px 0 14px; }
  .logo { min-width: auto; }
  .logo-img { width: 112px; height: 40px; }
  .main-nav {
    order: 3;
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 16px;
    padding: 8px 0 0;
    margin-left: 0;
    overflow-x: auto;
    font-size: 10px;
    scrollbar-width: none;
  }
  .main-nav::-webkit-scrollbar { display: none; }
  .main-nav a { flex: 0 0 auto; padding: 6px 0; }
  .header-phone { width: 100%; text-align: center; font-size: 12px; }
  .header-inner > .button-small { order: 4; width: 100%; }
  .hero { min-height: auto; }
  .hero::after,
  .hero-bg { display: none; }
  .hero-content { padding: 58px 0 95px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .trust-strip { margin-top: 0; clip-path: none; }
  .trust-grid,
  .news-grid,
  .steps-grid,
  .catalog-grid,
  .stories-grid,
  .problem-panel { grid-template-columns: 1fr; }
  .trust-grid { padding: 24px 0; justify-items: start; }
  .news-grid { padding: 4px 0 12px; }
  .news-carousel-arrow { width: 34px; height: 34px; font-size: 24px; }
  .news-carousel-arrow-prev { left: -8px; }
  .news-carousel-arrow-next { right: -8px; }
  .news-card { flex-basis: calc(100vw - 64px); padding: 28px 24px 26px; }
  .news-card h3 { font-size: 20px; }
  .news-card-preview { font-size: 15px; }
  .news-modal { display: block; padding: 0; }
  .news-modal-backdrop { display: none; }
  .news-modal-panel { width: 100vw; height: 100dvh; max-height: none; border-radius: 0; }
  .news-modal-header { position: sticky; top: 0; z-index: 2; background: #fff; padding: 16px 18px 14px; }
  .news-modal-header h3 { font-size: 24px; }
  .news-modal-close { font-size: 32px; }
  .news-modal-content { flex: 1; padding: 18px; font-size: 16px; line-height: 1.62; }
  .news-modal-footer { padding: 0 18px 18px; }
  .news-section { background: url("img/Фон_новости.webp") center top / cover no-repeat; }
  .problem-light { margin-left: 0; padding-left: 34px; background: #fff; border-left: 0; border-top: 1px solid rgba(8,20,45,.08); }
  .problem-dark { background: #fff; }
  .problem-side h2 { font-size: 28px; }
  .problem-icon { width: 60px; height: 60px; }
  .catalog-section { padding: 56px 0 64px; }
  .catalog-section h2 { font-size: 28px; }
  .catalog-card { padding: 22px 20px 20px; }
  .catalog-icon { width: 96px; height: 96px; }
  .steps-section { background: #f5f6f6; }
  .steps-section h2 { color: var(--navy); }
  .stories-section::before { left: 55%; top: 130px; }
  .stories-wrap { gap: 8px; }
  .slider-arrow { display: none; }
  .story-card.is-featured { transform: none; }
}

@media (max-width: 420px) {
  h1 { font-size: 34px; }
  .news-section h2,
  .steps-section h2,
  .stories-section h2 { font-size: 26px; }
  .trust-item strong { font-size: 24px; }
  .button { width: 100%; padding: 0 18px; }
  .container { width: min(100% - 22px, 560px); }
  .hero-content { padding: 42px 0 72px; }
  .hero-lead { font-size: 15px; }
  .hero-text { font-size: 14px; }
  .trust-item { width: 100%; justify-content: flex-start; }
  .problem-side { padding: 36px 20px; }
  .step-card { min-height: auto; }
  .footer-cta h2 { font-size: 22px; }
}

.lead-popup {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lead-popup:target { display: flex; }

.lead-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 45, .72);
}

.lead-popup__form {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 34px;
  color: var(--text);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-popup__form h2 {
  margin-bottom: 22px;
  color: #072850;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-popup__form input,
.lead-popup__form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 13px 14px;
  color: var(--text);
  background: #f7f8f8;
  border: 1px solid rgba(8,20,45,.12);
  border-radius: 3px;
  font: inherit;
}

.lead-popup__form textarea {
  min-height: 104px;
  resize: vertical;
}

.lead-popup__form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.lead-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  color: rgba(8,20,45,.54);
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 420px) {
  .lead-popup { padding: 14px; }
  .lead-popup__form { padding: 28px 20px 22px; }
  .lead-popup__form h2 { font-size: 24px; }
}
