:root{
  --bg:#ffffff;
  --text:#1e2a3a;
  --muted:#5c6b7a;
  --line:rgba(20,40,60,.12);
  --blue:#3c6fa6;          /* основная синяя */
  --blue-dark:#2f5f93;
  --btn:#3c6fa6;
  --btn-hover:#2f5f93;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --r: 14px;
  --container: 1200px;
  --header-h: 82px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* HEADER */
.header{
  position:sticky; top:0; z-index:50;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.header__inner{
  height: var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.logo{ display:flex; align-items:center; gap:12px; }
.logo__mark{
  width:56px; height:42px;
  border-radius: 6px;
  border:2px solid var(--blue);
  display:flex; align-items:center; justify-content:center;
  font-weight:900;
  color: var(--blue);
  letter-spacing:.5px;
}
.logo__text{ display:flex; flex-direction:column; line-height:1.05; }
.logo__text b{ font-size:14px; letter-spacing:.2px; }
.logo__text span{ font-size:11px; color:var(--muted); }

.nav{ display:flex; align-items:center; gap:12px; }
.nav__toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
}
.nav__menu{
  display:flex; align-items:center; gap:16px;
}
.nav__menu a{
  font-weight:600;
  font-size:14px;
  color: #334455;
  padding:8px 6px;
}
.nav__menu a:hover{ color: var(--blue); text-decoration:none; }

.header__contacts{
  display:flex;
  align-items:center;
  gap:16px;
}

.hero .header__phone{ color:#fff; }

/* HERO (как на скриншоте) */
.hero{
  position:relative;
  min-height: 720px;
  overflow:hidden;
  background:
    linear-gradient(90deg, #ffffff 0 72%, var(--blue) 72% 100%);
}
.hero__bg{
  position:absolute;
  left:0; top:0; bottom:0;
  width:72%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.92)),
    url("../img/city.jpg");
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.hero__inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:0;
  min-height: 720px;
  padding-top: 48px;
}

/* левый контент */
.hero__content{
  padding-right: 30px;
}
.hero__kicker{
  display:flex;
  align-items:center;
  gap:14px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size:14px;
}
.hero__kicker .twentyfour{
  font-size:46px;
  font-weight:900;
  color: var(--blue);
  line-height:1;
}
.hero__kicker .ico{
  width:58px; height:58px;
  border-radius:50%;
  border:2px solid rgba(60,111,166,.35);
  display:flex; align-items:center; justify-content:center;
}
.hero__kicker .ico:before{
  content:"";
  width:28px; height:28px;
  border-radius:50%;
  border:2px solid rgba(60,111,166,.75);
  display:block;
}

.hero h1{
  margin: 0 0 16px;
  font-size: 46px;
  line-height:1.08;
  letter-spacing:-.4px;
  text-transform:uppercase;
  color:#2a3a4d;
}
.hero h1 .blue{ color: var(--blue); }

.hero__lead{
  margin:0 0 26px;
  color: var(--muted);
  font-size:16px;
  line-height:1.65;
  max-width: 520px;
}
.hero__actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:54px;
  padding:0 28px;
  border-radius: 6px;
  border:2px solid transparent;
  font-weight:900;
  font-size:13px;
  letter-spacing:.2px;
  text-transform:uppercase;
  cursor:pointer;
}
.btn--primary{
  background: var(--btn);
  color:#fff;
  box-shadow: var(--shadow);
}
.btn--primary:hover{ background: var(--btn-hover); }

.btn--ghost{
  background: transparent;
  border-color: rgba(60,111,166,.35);
  color: var(--blue);
}
.btn--ghost:hover{
  border-color: rgba(60,111,166,.65);
  text-decoration:none;
}

/* правая колонка (синяя) и фото */
.hero__right{ position:relative; }

.hero__rightTopWrap{
  position:absolute;
  top: 16px;
  right: 18px;
  width:auto;
  height:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  z-index:5;
}

.hero__rightTopWrap{
  position:absolute;
  right: 0;
  top: -48px; /* под шапку */
  height: var(--header-h);
  display:flex;
  align-items:center;
  justify-content:flex-end;
  width:100%;
  padding-right: 0;
}
.hero__rightTopWrap .header__contacts{
  padding-right: 0;
}
.hero__person{
  position:absolute;
  right: 24px;
  bottom: 0;
  width: min(430px, 92%);
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.20));
}

/* секции ниже – делаем светлыми и “плоскими” */
.section{
  padding: 70px 0;
  background:#fff;
}
.section--alt{
  background:#f6f8fb;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{ margin-bottom: 18px; }
.section__head h2{
  margin:0 0 8px;
  font-size:30px;
  letter-spacing:-.2px;
}
.muted{ color:var(--muted); }
.small{ font-size:12px; }

/* сетки */
.grid{ display:grid; gap:18px; }
.grid--4{ grid-template-columns: repeat(4, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--2{ grid-template-columns: repeat(2, 1fr); }

/* карточки в светлом стиле */
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--r);
  padding:22px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}
.card h3{ margin:0 0 10px; font-size:18px; color:#2a3a4d; }
.hr{ border:0; border-top:1px solid var(--line); margin:18px 0; }

.form{ display:flex; flex-direction:column; gap:12px; margin-top: 8px; }
label span{
  display:block;
  font-weight:800;
  font-size:12px;
  color:#415466;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.2px;
}
input, textarea{
  width:100%;
  border-radius: 8px;
  border:1px solid rgba(20,40,60,.18);
  background:#fff;
  color:var(--text);
  padding:12px 12px;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(60,111,166,.55);
  box-shadow: 0 0 0 4px rgba(60,111,166,.12);
}
.checkbox{ display:flex; gap:10px; align-items:flex-start; }
.checkbox input{ width:18px; height:18px; margin-top:2px; }
.checkbox span{ font-weight:600; font-size:12px; color:var(--muted); line-height:1.45; }

.list{ margin:0; padding-left: 18px; color: var(--muted); }
.list li{ margin: 6px 0; }

.note{
  padding:12px 14px;
  border-radius:10px;
  border:1px dashed rgba(60,111,166,.35);
  color: #38506a;
  background: rgba(60,111,166,.06);
}

/* footer */
.footer{
  background:#0f2f4f;
  color:#fff;
  padding: 34px 0;
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
  gap:16px;
}
.footer__brand{ font-weight:900; }
.footer__title{ font-weight:900; margin-bottom:8px; }
.footer__text{ color: rgba(255,255,255,.78); font-size:13px; line-height:1.6; }
.footer__bottom{
  grid-column: 1 / -1;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding-top:16px;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 8px;
}
.footer a{ color:#fff; }

/* mobile */
@media (max-width: 980px){
  :root{ --header-h: 72px; }
  .grid--4{ grid-template-columns: repeat(2, 1fr); }
  .grid--3, .grid--2{ grid-template-columns: 1fr; }

  .hero{ background:#fff; }
  .hero__bg{ width:100%; opacity:.9; }
  .hero__inner{ grid-template-columns: 1fr; padding-top: 20px; min-height: 700px; }
  .hero__right{ min-height: 360px; }
  .hero__person{ position:relative; right:auto; bottom:auto; margin: 18px auto 0; display:block; }
  .header__contacts{ display:none; }
}

@media (max-width: 720px){
  .nav__toggle{ display:inline-flex; }
  .nav__menu{
    position:absolute;
    right: 20px;
    top: calc(var(--header-h) - 10px);
    display:none;
    flex-direction:column;
    gap:8px;
    width:min(320px, calc(100% - 40px));
    background:#fff;
    border:1px solid var(--line);
    border-radius: 12px;
    padding:12px;
    box-shadow: var(--shadow);
  }
  .nav__menu.is-open{ display:flex; }
  .hero h1{ font-size: 34px; }
}
.avatar-img{
  width: 175px;
  height: 175px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(20,40,60,.12);
}

/* ===== CTA: "Заказать звонок" (glass) ===== */
/* Берём именно первую ссылку в контактах — это и есть кнопка */
.header__contacts a:first-child{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 10px 18px;
  border-radius: 12px;

  background: rgba(39, 105, 248, 0.411);
  border: 1px solid rgba(255,255,255,.45);
  color: #0f2a44;

  text-decoration:none !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2px;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);

  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* На синей части (в HERO) делаем текст белым */
.hero .header__contacts a:first-child{
  color:rgb(0, 0, 0);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.65);
}

/* Hover — "живая" */
.header__contacts a:first-child:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.32);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.75);
}

/* Active — легкое нажатие */
.header__contacts a:first-child:active{
  transform: translateY(0px) scale(.98);
  box-shadow: 0 8px 18px rgba(0,0,0,.14);
}

/* ===== Контакты: центрирование формы ===== */
.section#contacts,
.section--contacts {
  text-align: center;
}

/* Правая колонка — форма */
.section#contacts .card:last-child,
.section--contacts .card:last-child {
  text-align: center;
}

/* Заголовки и текст */
.section#contacts h3,
.section#contacts p,
.section--contacts h3,
.section--contacts p {
  text-align: center;
}

/* Форма */
.section#contacts form,
.section--contacts form {
  align-items: center;
}

/* Лейблы */
.section#contacts label,
.section--contacts label {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

/* Инпуты и textarea */
.section#contacts input,
.section#contacts textarea,
.section--contacts input,
.section--contacts textarea {
  text-align: center;
  max-width: 420px;
}

/* Кнопка отправки */
.section#contacts .btn,
.section--contacts .btn {
  margin: 12px auto 0;
}

/* ===== Контакты: усиленная типографика ===== */

/* Карточка контактов */
.section#contacts .card,
.section--contacts .card {
  padding: 32px 36px;
}

/* Заголовки (Адрес / Телефон / Email) */
.section#contacts h3,
.section--contacts h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

/* Основной текст */
.section#contacts p,
.section--contacts p {
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.7;
  color: #1e2a3a;
}

/* Сам адрес — делаем акцент */
.section#contacts p strong,
.section--contacts p strong {
  font-weight: 700;
}

/* Телефон */
.section#contacts a[href^="tel"],
.section--contacts a[href^="tel"] {
  display: block;
  font-size: 20px;
  font-weight: 800;
  margin-top: 10px;
  letter-spacing: 0.3px;
}

/* Email */
.section#contacts a[href^="mailto"],
.section--contacts a[href^="mailto"] {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-top: 6px;
  color: var(--blue);
}

/* Мелкий поясняющий текст */
.section#contacts .small,
.section--contacts .small {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

/* ===== Центрирование контента: Преимущества → Этапы ===== */

/* Заголовки секций */
.section h2,
.section h3 {
  text-align: center;
}

/* Описания под заголовками */
.section p,
.section .muted {
  text-align: auto;
  margin-left: auto;
  margin-right: auto;
}

/* Карточки (Преимущества, Услуги, Этапы) */
.section .card {
  text-align: auto;
}

/* Иконки внутри карточек */
.section .card svg,
.section .card img {
  display: block;
  margin: 0 auto 12px;
}

/* Списки — делаем аккуратный центр */
.section ul,
.section ol {
  list-style-position: inside;
  text-align: auto;
  padding-left: 0;
}

/* Этапы работ — центрируем номера и текст */
.section .step,
.section .steps,
.section .grid {
  text-align: auto;
}

/* Ограничиваем ширину текста, чтобы не было "стены" */
.section p,
.section li {
  max-width: 720px;
}

/* ===== Блок "Что подготовить" — компактно и премиально ===== */

/* Находим секцию консультации по заголовку и правим левую карточку */
.section .grid--2 .card:first-child{
  min-height: auto !important;
  padding: 26px 28px !important;
  text-align: left !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

/* Заголовок внутри карточки */
.section .grid--2 .card:first-child h3{
  margin: 0 0 6px !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: -0.2px;
}

/* Если есть абзац-описание */
.section .grid--2 .card:first-child p{
  margin: 0 !important;
  font-size: 14.5px !important;
  line-height: 1.55 !important;
  color: var(--muted);
  max-width: none !important;
}

/* Список: убираем буллеты, делаем "галочки" */
.section .grid--2 .card:first-child ul{
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  text-align: left !important;
}

.section .grid--2 .card:first-child li{
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: #2a3a4d;
  line-height: 1.45;
}

/* Галочка */
.section .grid--2 .card:first-child li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(60,111,166,.12);
  color: var(--blue);
  font-weight: 900;
}

/* ===== FAQ Accordion ===== */
.faq{
  max-width: 860px;
  margin: 18px auto 0;
  display: grid;
  gap: 12px;
}

.faq__item{
  background:#fff;
  border:1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  overflow:hidden;
}

.faq__q{
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 800;
  font-size: 15px;
  color:#2a3a4d;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
}

.faq__q::-webkit-details-marker{ display:none; }

/* стрелка справа */
.faq__q::after{
  content:"";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(20,40,60,.55);
  border-bottom: 2px solid rgba(20,40,60,.55);
  transform: rotate(45deg);
  transition: transform .18s ease;
  flex: 0 0 auto;
}

/* раскрытие */
.faq__item[open] .faq__q::after{
  transform: rotate(-135deg);
}

.faq__a{
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  border-top: 1px solid rgba(20,40,60,.08);
}

/* hover эффект */
.faq__item:hover{
  box-shadow: 0 14px 34px rgba(0,0,0,.10);
  border-color: rgba(60,111,166,.28);
}

.faq__item:hover .faq__q{
  color: var(--blue-dark);
}

/* ===== SUCCESS MODAL ===== */
.modal-success {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal-success.show {
  display: block;
}

.modal-success__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 40, 0.55);
  backdrop-filter: blur(4px);
}

.modal-success__box {
  position: relative;
  max-width: 420px;
  margin: 15vh auto;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  animation: modalFade .35s ease;
}

@keyframes modalFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-success h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.modal-success p {
  margin: 0 0 22px;
  color: #5c6b7a;
  font-size: 14px;
  line-height: 1.6;
}

.modal-success__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: #9aa4b2;
}

/* ===== ADVANTAGES NEW BLOCK ===== */
.advantages-new {
  background: #fff;
}

.advantages-new__inner {
  display: grid;
  grid-template-columns: 1.2fr 1px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT */
.advantages-new__title {
  margin: 0 0 24px;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--blue);
  text-transform: uppercase;
}

.advantages-new__title span {
  color: #b9b9b9;
  font-weight: 300;
}

.advantages-new__desc {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: #48607a;
}

/* DIVIDER */
.advantages-new__divider {
  width: 1px;
  height: 100%;
  background: rgba(60,111,166,.35);
}

/* RIGHT */
.advantages-new__right {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.adv-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.adv-num {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #2a3a4d;
}

/* MOBILE */
@media (max-width: 900px) {
  .advantages-new__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .advantages-new__divider {
    display: none;
  }

  .advantages-new__title {
    font-size: 34px;
  }
}

/* ===== SERVICES PRO (как на скриншотах) ===== */
.services-pro{
  background:#fff;
  padding: 90px 0;
}

.services-pro__head{
  text-align:center;
  margin-bottom: 52px;
}

.services-pro__title{
  margin:0 0 16px;
  font-size: 44px;
  font-weight: 300;              /* тонкий заголовок как на скрине */
  text-transform: uppercase;
  letter-spacing: 1px;
  color:#2a3a4d;
}

.services-pro__title .blue{ color: var(--blue); }

.services-pro__sub{
  margin:0 auto;
  max-width: 720px;
  color:#6b7a88;
  font-size: 14px;
  line-height: 1.8;
}

.services-pro__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: stretch;
}

/* Карточка */
.svc-card{
  position:relative;
  height: 500px;
  border-radius: 10px;
  overflow:hidden;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
  transform: translateZ(0);
}

/* Синий “фильтр” как на скрине */
.svc-card__overlay{
  position:absolute;
  inset:0;
  background: rgba(52, 98, 150, .72);
}

/* Контент внутри */
.svc-card__content{
  position:absolute;
  inset:0;
  padding: 34px 28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;  /* по умолчанию заголовок снизу */
  color:#fff;
}

.svc-card__content--bottom{
  justify-content:flex-end;
}

.svc-card__h{
  margin:0 0 14px;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.25;
  letter-spacing: .2px;
}

.svc-card__line{
  width: 72%;
  height: 1px;
  background: rgba(255,255,255,.65);
  margin-bottom: 14px;
}

/* Блок, который выезжает */
.svc-card__more{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: max-height .35s ease, opacity .25s ease, transform .35s ease;
}

/* список */
.svc-card__more ul{
  margin: 0 0 18px;
  padding-left: 18px;
  list-style: disc;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  line-height: 1.7;
}
.svc-card__more li{ margin: 6px 0; }

/* ссылка “подробнее” */
.svc-card__link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing:.2px;
  text-transform: uppercase;
  text-decoration:none !important;
}

/* Поведение: только при hover раскрываем */
.svc-card:hover .svc-card__more{
  max-height: 340px;      /* достаточно, чтобы поместился список */
  opacity: 1;
  transform: translateY(0);
}

/* Небольшой “живой” эффект при hover */
.svc-card:hover{
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

/* На первом скрине видно: в обычном состоянии у крайних карточек текста нет (кроме заголовка).
   У нас так и будет — список скрыт до hover. */

/* Адаптив */
@media (max-width: 980px){
  .services-pro__grid{ grid-template-columns: 1fr; gap: 22px; }
  .svc-card{ height: 460px; }
  .services-pro__title{ font-size: 34px; }
}

/* === ABOUT NEW (как на скриншоте) === */
.about-new__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-new__photo img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.15);
  object-fit: cover;
}

.about-new__title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: #2a3a4d;
}

.about-new__subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 18px;
}

.about-new__line {
  width: 120px;
  height: 3px;
  background: var(--blue);
  margin: 18px 0 26px;
}

.about-new__content p {
  font-size: 15px;
  line-height: 1.7;
  color: #2e3f52;
  margin-bottom: 16px;
}

.about-new__sign {
  font-style: italic;
  color: var(--muted);
  margin-top: 20px;
}

.about-new__btn {
  margin-top: 26px;
  padding: 14px 34px;
}

/* адаптив */
@media (max-width: 980px) {
  .about-new__inner {
    grid-template-columns: 1fr;
  }

  .about-new__title {
    font-size: 30px;
  }
}

/* ===== CONSULT VISUAL (правая часть) — под ваш index.php ===== */

/* контейнер правой части */
.consult-visual{
  position: relative;
  height: 520px;
  margin-right: calc(50% - 50vw); /* прижимаем к правому краю экрана */
}

/* синяя панель */
.consult-visual__panel{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;

  width: 440px;
  background: var(--blue);

  border-radius: 22px 0 0 22px;
  overflow: hidden;

  z-index: 3; /* панель выше руки */
}

/* точки */
.consult-visual__panel::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(255,255,255,.18) 1.3px, transparent 1.3px);
  background-size: 26px 26px;
  opacity: .7;
}

/* вертикальный текст */
.consult-visual__panelText{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);

  color: #fff;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 26px;
  white-space: nowrap;

  z-index: 4;
  pointer-events: none;
}

/* рука/телефон */
.consult_visual__phone{
  position: absolute;
  right: 220px;      /* ближе к панели: уменьшайте (220→180→150) */
  bottom: -10px;

  width: 560px;      /* размер руки */
  height: auto;

  z-index: 2;        /* рука ПОД панелью */
  pointer-events: none;

  filter: drop-shadow(0 16px 36px rgba(0,0,0,.12));
}

/* адаптив */
@media (max-width: 980px){
  .consult-visual{
    height: 440px;
    margin-right: 0; /* на мобилке не выталкиваем за край */
  }

  .consult-visual__panel{
    width: 320px;
  }

  .consult_visual__phone{
    right: 90px;
    width: 430px;
  }
}
