:root{
  --bg:#f7fbff;
  --paper:#ffffff;
  --paper2:#f3fbfb;

  --text:#0f172a;
  --muted:rgba(15,23,42,.68);

  --line:rgba(15,23,42,.12);
  --line2:rgba(15,23,42,.08);

  --brand:#12b3c7;  /* голубой */
  --brand2:#22c55e; /* зелёный */

  --shadow: 0 18px 55px rgba(15,23,42,.12);
  --shadow2: 0 10px 26px rgba(15,23,42,.10);

  --r:16px;
  --r2:24px;

  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(18,179,199,.22), transparent 55%),
    radial-gradient(900px 520px at 90% 10%, rgba(34,197,94,.16), transparent 55%),
    linear-gradient(180deg, #f7fbff, #f4fbfb 40%, #ffffff);
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--container); margin:0 auto; padding:0 20px}
.main{padding-bottom:72px}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.72);
  border-bottom:1px solid var(--line2);
  backdrop-filter:saturate(160%) blur(10px);
}
.header__inner{
  display:flex; align-items:center; gap:18px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width:240px}
.brand__mark{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(18,179,199,.95), rgba(34,197,94,.85));
  color:#063a26; font-weight:900;
  box-shadow: 0 10px 22px rgba(18,179,199,.18);
}
.brand__name{font-weight:900; letter-spacing:.2px}
.brand__sub{display:block; font-size:12px; color:var(--muted); margin-top:2px}

.nav{display:flex; gap:14px; margin-left:auto}
.nav__link{
  padding:10px 12px; border-radius:12px;
  color:rgba(15,23,42,.70);
  transition:.15s ease;
}
.nav__link:hover{background:rgba(15,23,42,.04); color:var(--text)}

.header__cta{display:flex; align-items:center; gap:12px}
.link{color:var(--text); text-decoration:underline; text-underline-offset:3px}
.link--muted{color:rgba(15,23,42,.68); text-decoration:none}
.link--muted:hover{color:var(--text)}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  font-weight:800;
  cursor:pointer;
  transition:.15s ease;
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
}
.btn:hover{transform:translateY(-1px); box-shadow: 0 12px 24px rgba(15,23,42,.10)}
.btn--primary{
  border-color:rgba(18,179,199,.35);
  background: linear-gradient(135deg, rgba(18,179,199,.95), rgba(34,197,94,.88));
  color:#053225;
}
.btn--ghost{
  background: rgba(255,255,255,.55);
}
.btn--wide{width:100%}

/* Burger / mobile */
.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px; height:2px;
  margin:4px auto;
  background:rgba(15,23,42,.78);
  border-radius:2px;
}
.burger--open span:nth-child(2){opacity:.2}

.mobile{
  display:none;
  border-top:1px solid var(--line2);
  background: rgba(255,255,255,.92);
}
.mobile--open{display:block}
.mobile__inner{padding:12px 0 18px}
.mobile__link{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  color:rgba(15,23,42,.72);
}
.mobile__link:hover{background:rgba(15,23,42,.04); color:var(--text)}
.mobile__hr{height:1px; background:var(--line2); margin:10px 0}

/* Typography */
.pill{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(18,179,199,.10);
  border:1px solid rgba(18,179,199,.20);
  color:rgba(15,23,42,.82);
  font-weight:800;
  font-size:12px;
}
.h1{
  font-size:40px;
  line-height:1.08;
  margin:12px 0 10px;
  letter-spacing:-.5px;
}
.h1--small{font-size:34px}
.h2{font-size:28px; margin:0}
.h3{font-size:18px; margin:0 0 10px}
.lead{font-size:16px; color:var(--muted); max-width:70ch}
.muted{color:var(--muted)}
.small{font-size:12px}

/* Sections */
.section{padding:34px 0}
.section--alt{
  background: linear-gradient(135deg, rgba(18,179,199,.06), rgba(34,197,94,.06));
  border-top:1px solid var(--line2);
  border-bottom:1px solid var(--line2);
}
.section__head{display:grid; gap:8px; margin-bottom:16px}
.section__actions{margin-top:14px; display:flex; justify-content:flex-start}

/* Cards */
.card{
  border:1px solid var(--line2);
  border-radius:var(--r2);
  padding:18px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}
.card--soft{
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
}
.card--glass{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.70));
}
.card__title{font-weight:900; font-size:18px}
.card__text{color:var(--muted); margin-top:6px}

/* Grid */
.grid{display:grid; gap:14px}
.grid--3{grid-template-columns: repeat(3, minmax(0,1fr))}
.grid--2{grid-template-columns: repeat(2, minmax(0,1fr))}

/* Feature */
.feature{
  border:1px solid var(--line2);
  background: rgba(255,255,255,.78);
  border-radius:var(--r2);
  padding:16px;
  box-shadow: var(--shadow2);
}
.feature__icon{
  width:34px; height:34px;
  border-radius:14px;
  display:grid; place-items:center;
  background: rgba(18,179,199,.10);
  border:1px solid rgba(18,179,199,.18);
  margin-bottom:10px;
}
.feature__title{font-weight:900; margin-bottom:6px}
.feature__text{color:var(--muted); font-size:14px}

/* Forms */
.form{display:grid; gap:10px; margin-top:14px}
.field{display:grid; gap:6px}
.field__label{font-size:12px; color:var(--muted); font-weight:700}
.field__input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  outline:none;
}
.field__input:focus{border-color: rgba(18,179,199,.50); box-shadow: 0 0 0 4px rgba(18,179,199,.10)}

.hr{height:1px; background:var(--line2); margin:14px 0}

/* Breadcrumbs */
.breadcrumbs{padding:14px 0 0}
.breadcrumbs__list{list-style:none; padding:0; margin:0; display:flex; flex-wrap:wrap; gap:6px; color:var(--muted); font-size:12px}
.breadcrumbs__link{text-decoration:underline; text-underline-offset:3px}
.breadcrumbs__sep{opacity:.6}
.breadcrumbs__current{color:var(--text)}

/* CTA */
.cta{
  border:1px solid rgba(18,179,199,.22);
  background: linear-gradient(135deg, rgba(18,179,199,.10), rgba(34,197,94,.10));
  border-radius:var(--r2);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.cta__title{font-weight:900; font-size:18px}
.cta__sub{color:var(--muted); margin-top:4px}
.cta__actions{display:flex; gap:10px; flex-wrap:wrap}

/* Service page: hero */
.service-hero{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:14px;
  align-items:start;
}
.service-hero__bullets{display:grid; gap:8px; margin:14px 0}
.bullet{color:rgba(15,23,42,.86); font-weight:700}
.service-hero__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

/* Calculator layout */
.calc-wrap{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}
.sticky{
  position:sticky;
  top:90px;
}
.badge{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(34,197,94,.10);
  border:1px solid rgba(34,197,94,.22);
  font-weight:900;
  font-size:12px;
}

.pricebox__label{color:var(--muted); font-size:12px; font-weight:800}
.pricebox__value{font-size:28px; font-weight:1000; margin-top:4px}
.pricebox__hint{color:var(--muted); margin-top:6px; font-size:13px}

.list{margin:0; padding-left:18px; color:rgba(15,23,42,.86)}
.list li{margin:8px 0}

.kv{
  display:grid;
  gap:8px;
}
.kv__row{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:10px;
  padding:10px 0;
  border-bottom:1px dashed var(--line2);
}
.kv__row:last-child{border-bottom:none}
.kv__k{color:var(--muted); font-size:13px; font-weight:800}
.kv__v{font-weight:950}

/* Service cards / posts (если используете) */
.service-card, .post-card{
  display:block;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.78);
  border-radius:var(--r2);
  padding:16px;
  transition:.15s ease;
  box-shadow: var(--shadow2);
}
.service-card:hover, .post-card:hover{transform:translateY(-2px); box-shadow: var(--shadow)}
.service-card__top{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px}
.service-card__cat{font-size:12px; color:rgba(15,23,42,.75); font-weight:800}
.service-card__price{font-weight:950}
.service-card__title, .post-card__title{font-weight:950; margin-bottom:6px}
.service-card__text, .post-card__text{color:var(--muted); font-size:14px}
.service-card__more, .post-card__more{margin-top:10px; color:rgba(18,179,199,.95); font-weight:950}

/* FAQ */
.faq{display:grid; gap:10px}
.faq__item{
  border:1px solid var(--line2);
  background: rgba(255,255,255,.78);
  border-radius:var(--r2);
  padding:12px 14px;
  box-shadow: var(--shadow2);
}
.faq__q{cursor:pointer; font-weight:950}
.faq__a{margin-top:10px; color:var(--muted)}

/* Footer */
.footer{
  border-top:1px solid var(--line2);
  background: rgba(255,255,255,.76);
  padding:26px 0;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap:16px;
}
.footer__brand{font-weight:950; font-size:16px}
.footer__title{font-weight:950; margin-bottom:10px}
.footer__link{display:block; padding:6px 0; color:rgba(15,23,42,.72)}
.footer__link:hover{color:var(--text)}
.footer__muted{color:var(--muted); margin-top:8px; font-size:12px}

/* Alerts */
.alert{
  margin:10px 0 0;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.22);
  color: rgba(15,23,42,.90);
  font-weight:800;
}

/* Responsive */
@media (max-width: 980px){
  .nav, .header__cta{display:none}
  .burger{display:inline-block; margin-left:auto}
  .grid--3{grid-template-columns: 1fr}
  .grid--2{grid-template-columns: 1fr}
  .service-hero{grid-template-columns: 1fr}
  .calc-wrap{grid-template-columns: 1fr}
  .sticky{position:static}
  .footer__grid{grid-template-columns: 1fr 1fr}
  .h1{font-size:34px}
}
/* ===== HERO COVER (в стиле светлого сайта + фото на всю площадь) ===== */
.hero-cover{
  position:relative;
  padding:64px 0 46px;
  border-bottom: 1px solid var(--line2);
  overflow:hidden;
}

/* Градиент сайта (голубой → зелёный) поверх фото для “стиля сайта” */
.hero-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(18,179,199,.30), transparent 55%),
    radial-gradient(900px 520px at 85% 20%, rgba(34,197,94,.22), transparent 60%),
    linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,.72) 55%, rgba(255,255,255,.55));
}

/* Контент выше слоёв */
.hero-cover > .container{
  position:relative;
  z-index:2;
}

.hero-cover__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}

.hero-cover__left{
  border-radius: var(--r2);
  padding:22px;
  background: rgba(255,255,255,.70);
  border: 1px solid var(--line2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px) saturate(140%);
}

.hero-cover__kicker{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(18,179,199,.10);
  border:1px solid rgba(18,179,199,.18);
  color: rgba(15,23,42,.85);
  font-weight:900;
  font-size:12px;
}

.hero-cover__h1{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.6px;
  color: var(--text);
}

.hero-cover__accent{
  background: linear-gradient(135deg, rgba(18,179,199,1), rgba(34,197,94,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-cover__list{
  display:grid;
  gap:12px;
  margin:16px 0 12px;
}

.hero-cover__item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid var(--line2);
}

.hero-cover__icon{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background: rgba(18,179,199,.10);
  border:1px solid rgba(18,179,199,.18);
  color: rgba(15,23,42,.9);
  flex:0 0 auto;
}

.hero-cover__itemTitle{
  font-weight:950;
  color: var(--text);
}

.hero-cover__itemText{
  margin-top:4px;
  color: var(--muted);
}

.hero-cover__promo{
  margin:14px 0 16px;
  padding:14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(18,179,199,.10), rgba(34,197,94,.10));
  border:1px solid rgba(18,179,199,.18);
  color: rgba(15,23,42,.88);
  font-weight:850;
}

.hero-cover__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 12px 0 12px;
}

/* Теги */
.hero-cover__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 10px;
  margin-top:12px;
}
.hero-cover__tag{
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.72);
  border:1px solid var(--line2);
  color: rgba(15,23,42,.80);
  font-weight:900;
  font-size:12px;
}

/* Правая часть — “подпись” основателя на фоне фото */
.hero-cover__right{
  position:relative;
  border-radius: var(--r2);
  min-height: 420px;
}

.hero-cover__badge{
  position:absolute;
  right:14px;
  bottom:14px;
  max-width: 360px;
  padding:12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border:1px solid var(--line2);
  box-shadow: var(--shadow2);
  backdrop-filter: blur(10px) saturate(140%);
}

.hero-cover__name{
  font-weight:1000;
}
.hero-cover__role{
  margin-top:4px;
  color: var(--muted);
  font-weight:850;
  font-size:13px;
}

/* Responsive */
@media (max-width: 980px){
  .hero-cover{
    padding:46px 0 28px;
  }
  .hero-cover__grid{
    grid-template-columns: 1fr;
  }
  .hero-cover__h1{
    font-size:34px;
  }
  .hero-cover__right{
    min-height: 260px;
  }
  .hero-cover::after{
    background:
      radial-gradient(700px 420px at 15% 0%, rgba(18,179,199,.26), transparent 55%),
      radial-gradient(700px 420px at 90% 10%, rgba(34,197,94,.18), transparent 60%),
      linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.62));
  }
}

/* ===== HERO COVER (картинка ТОЛЬКО справа) ===== */

.hero-cover{
  position:relative;
  padding:64px 0 46px;
  border-bottom:1px solid var(--line2);
  overflow:hidden;
}

/* Градиент фирменного стиля по всему hero */
.hero-cover::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(18,179,199,.30), transparent 55%),
    radial-gradient(900px 520px at 85% 20%, rgba(34,197,94,.22), transparent 60%),
    linear-gradient(
      90deg,
      rgba(255,255,255,.92) 0%,
      rgba(255,255,255,.86) 55%,
      rgba(255,255,255,.72) 100%
    );
  z-index:1;
}

/* Контент поверх */
.hero-cover > .container{
  position:relative;
  z-index:2;
}

.hero-cover__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}

/* ЛЕВАЯ часть — текст */
.hero-cover__left{
  border-radius:var(--r2);
  padding:22px;
  background: rgba(255,255,255,.75);
  border:1px solid var(--line2);
  box-shadow:var(--shadow);
  backdrop-filter: blur(10px) saturate(140%);
}

/* ПРАВАЯ часть — ФОТО */
.hero-cover__right{
  position:relative;
  min-height:440px;
  border-radius:var(--r2);
  overflow:hidden;

  background-image: url("/assets/hero-founder.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Лёгкий затемняющий слой на фото (для читаемости бейджа) */
.hero-cover__right::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      rgba(15,23,42,.10),
      rgba(15,23,42,.35)
    );
}

/* Бейдж основателя */
.hero-cover__badge{
  position:absolute;
  right:16px;
  bottom:16px;
  z-index:2;

  max-width:360px;
  padding:12px 14px;
  border-radius:18px;

  background: rgba(255,255,255,.80);
  border:1px solid var(--line2);
  box-shadow:var(--shadow2);
  backdrop-filter: blur(10px) saturate(140%);
}

.hero-cover__name{
  font-weight:1000;
}

.hero-cover__role{
  margin-top:4px;
  color:var(--muted);
  font-weight:850;
  font-size:13px;
}

/* Адаптив */
@media (max-width: 980px){
  .hero-cover{
    padding:46px 0 28px;
  }

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

  .hero-cover__right{
    min-height:280px;
    background-position: center top;
  }
}


/* ===== WHY (десктоп-версия как эталон) ===== */

#why{padding-top:38px}

.why-head{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:18px;
}

.why-head__icon{
  width:74px;
  height:54px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(18,179,199,.95), rgba(34,197,94,.88));
  color:#053225;
  font-weight:1000;
  box-shadow: 0 16px 40px rgba(15,23,42,.10);
}

.why-head__title{
  margin:0;
  font-size:48px;          /* было слишком много — режем */
  line-height:1.02;
  letter-spacing:-.8px;
  font-weight:1000;
}

/* Десктоп-сетка как на эталоне: слева большая, справа 3х2 */
.why-grid{
  display:grid;
  grid-template-columns: 460px 1fr; /* фикс ширина слева = стабильный вид */
  gap:18px;
  align-items:stretch;
}

/* Левая карточка */
.why-big{
  border-radius:26px;
  overflow:hidden;
  border:1px solid var(--line2);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  display:grid;
  grid-template-rows: 240px 1fr;
  min-height: 520px; /* чтобы слева было “как на фото” */
}

.why-big__photo{
  background-image: url("/assets/why-photo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
}

.why-big__panel{
  padding:20px;
  background: linear-gradient(135deg, rgba(18,179,199,.92), rgba(34,197,94,.88));
  color:#fff;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.why-big__title{
  font-size:40px;
  line-height:1.06;
  font-weight:1000;
  margin:0;
}

.why-big__text{
  margin:0;
  color: rgba(255,255,255,.92);
  font-weight:750;
  line-height:1.35;
}

.why-big__chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:auto; /* чипы всегда внизу — как в эталоне */
}

.why-chip{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.26);
  color: rgba(255,255,255,.95);
  font-weight:900;
  font-size:12px;
}

/* Правая сетка: строго 3 колонки, 2 ряда, одинаковые высоты */
.why-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
  align-content:stretch;
}

.why-card{
  border-radius:26px;
  background: rgba(255,255,255,.82);
  border:1px solid var(--line2);
  box-shadow: var(--shadow2);
  padding:18px;
  min-height: 250px;        /* фиксируем высоту карточек */
  display:flex;
  flex-direction:column;
}

.why-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

/* Главная правка: заголовки ограничиваем, чтобы не ломали сетку */
.why-card__title{
  font-size:28px;
  line-height:1.04;
  font-weight:1000;
  margin:0;
  max-width: 16ch;          /* как в эталоне: не уезжает */
  word-break: normal;
  hyphens: auto;
}

.why-card__num{
  font-weight:1000;
  color: rgba(18,179,199,.95);
  font-size:12px;
  letter-spacing:.12em;
  margin-top:6px;
  flex:0 0 auto;
}

.why-card__text{
  margin:0;
  color: rgba(15,23,42,.70);
  font-weight:750;
  line-height:1.35;
  font-size:16px;
}

/* CTA карточка */
.why-card--cta{
  background: linear-gradient(135deg, rgba(18,179,199,.10), rgba(34,197,94,.10));
  border:1px solid rgba(18,179,199,.18);
}

.why-card__actions{
  margin-top:auto;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Внутри CTA делаем кнопки компактнее на десктопе */
.why-card--cta .btn{
  padding:11px 12px;
  border-radius:14px;
}

/* Адаптив */
@media (max-width: 1200px){
  .why-grid{grid-template-columns: 420px 1fr}
  .why-head__title{font-size:42px}
  .why-card__title{font-size:26px; max-width: 15ch}
}

@media (max-width: 1040px){
  .why-grid{grid-template-columns: 1fr}
  .why-big{min-height: 480px}
  .why-cards{grid-template-columns: repeat(2, minmax(0,1fr))}
}

@media (max-width: 700px){
  .why-head__title{font-size:34px}
  .why-cards{grid-template-columns: 1fr}
  .why-card{min-height: unset}
}


/* =========================================================
   MOBILE STYLE PATCH — единый стиль (<= 980px)
   Добавить в самый конец styles.css
   ========================================================= */
@media (max-width: 980px){

  /* 1) ЕДИНЫЕ ТОКЕНЫ ДЛЯ МОБИЛКИ */
  :root{
    --r:14px;
    --r2:20px;
  }

  body{
    background:
      radial-gradient(760px 520px at 10% 0%, rgba(18,179,199,.20), transparent 55%),
      radial-gradient(760px 520px at 90% 10%, rgba(34,197,94,.14), transparent 55%),
      linear-gradient(180deg, #f7fbff, #f4fbfb 40%, #ffffff);
  }

  .container{padding:0 16px}
  .section{padding:26px 0}

  /* 2) ТИПОГРАФИКА (один масштаб везде) */
  .h1{font-size:30px; line-height:1.08}
  .h2{font-size:22px}
  .lead{font-size:15px}
  .muted{font-size:14px}

  /* 3) КАРТОЧКИ — одинаковые радиусы/тени/фон */
  .card, .feature, .service-card, .post-card, .faq__item{
    border-radius: var(--r2) !important;
    background: rgba(255,255,255,.86) !important;
    border: 1px solid rgba(15,23,42,.10) !important;
    box-shadow: 0 12px 28px rgba(15,23,42,.10) !important;
  }

  /* 4) КНОПКИ — одинаковая высота и вид */
  .btn{
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 950;
  }
  .btn--wide{width:100%}
  .btn--ghost{
    background: rgba(255,255,255,.70);
  }

  /* 5) HERO — чтобы не выглядел “разными кусками” */
  .hero-cover{padding:18px 0 16px}
  .hero-cover__grid{gap:12px}
  .hero-cover__left{
    padding:16px;
    background: rgba(255,255,255,.82);
  }
  .hero-cover__kicker{font-size:11px}
  .hero-cover__h1{font-size:28px}
  .hero-cover__promo{padding:12px 12px; border-radius:18px}
  .hero-cover__actions{gap:10px}
  .hero-cover__actions .btn{width:100%} /* на мобилке кнопки одна под одной */
  .hero-cover__meta{gap:8px}
  .hero-cover__tag{
    font-size:11px;
    padding:7px 10px;
    background: rgba(255,255,255,.78);
  }

  /* Правая часть с фото: делаем “картинку-карту”, без странных отступов */
  .hero-cover__right{
    min-height: 220px;
    border-radius: var(--r2);
    background-position: center 20%;
  }
  .hero-cover__badge{
    left:12px;
    right:12px;
    bottom:12px;
    max-width: unset;
    border-radius: 18px;
  }

  /* 6) WHY — единый стиль + правильный порядок */
  .why-head{gap:12px; margin-bottom:12px}
  .why-head__icon{width:54px; height:42px; border-radius:16px}
  .why-head__title{font-size:26px; letter-spacing:-.4px}

  .why-grid{gap:12px}
  .why-big{
    grid-template-rows: 190px auto;
    min-height: unset;
  }
  .why-big__panel{padding:14px}
  .why-big__title{font-size:28px}
  .why-big__text{font-size:14px}
  .why-chip{font-size:11px}

  .why-cards{gap:12px}
  .why-card{
    padding:14px;
    min-height: unset;
  }
  .why-card__title{font-size:20px; max-width: unset}
  .why-card__text{font-size:14px}
  .why-card__actions .btn{width:100%}

  /* 7) SERVICES — карточки компактнее, без “разных размеров” */
  .service-card__top{margin-bottom:8px}
  .service-card__title{font-size:16px}
  .service-card__text{font-size:13px}
  .service-card__more{margin-top:8px}

  /* 8) BLOG — единая сетка */
  .post-card__title{font-size:16px}
  .post-card__text{font-size:13px}

  /* 9) FOOTER — компактнее, без “пустых” зон */
  .footer{padding:18px 0}
  .footer__grid{grid-template-columns:1fr; gap:12px}
}


/* ===== WHY v2 (компактно, но информативно) ===== */

.why2-head{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:14px;
}
.why2-head__icon{
  width:68px;
  height:52px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(18,179,199,.95), rgba(34,197,94,.88));
  color:#053225;
  font-weight:1000;
  box-shadow: 0 16px 40px rgba(15,23,42,.10);
}
.why2-head__title{
  margin:0;
  font-size:44px;
  line-height:1.02;
  letter-spacing:-.8px;
  font-weight:1000;
}
.why2-head__sub{margin:6px 0 0}

.why2-hero{
  display:grid;
  grid-template-columns: 220px 1fr 320px;
  gap:14px;
  padding:14px;
  border-radius:26px;
  background: rgba(255,255,255,.78);
  border:1px solid var(--line2);
  box-shadow: var(--shadow);
  margin-bottom:14px;
  align-items:stretch;
}

.why2-hero__media{
  border-radius:20px;
  background-image: url("/assets/why-photo.jpg");
  background-size: cover;
  background-position: center;
  background-repeat:no-repeat;
  border:1px solid rgba(15,23,42,.10);
}

.why2-hero__content{
  padding:6px 6px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.why2-hero__title{
  font-size:28px;
  line-height:1.05;
  font-weight:1000;
}
.why2-hero__text{
  color: rgba(15,23,42,.72);
  font-weight:750;
  line-height:1.35;
}

.why2-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:auto;
}
.why2-chip{
  display:inline-flex;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(18,179,199,.08);
  border:1px solid rgba(18,179,199,.16);
  color: rgba(15,23,42,.78);
  font-weight:900;
  font-size:12px;
}

.why2-hero__cta{
  border-radius:20px;
  padding:14px;
  background: linear-gradient(135deg, rgba(18,179,199,.10), rgba(34,197,94,.10));
  border:1px solid rgba(18,179,199,.18);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.why2-hero__ctaTitle{
  font-size:22px;
  font-weight:1000;
}
.why2-hero__actions{
  display:grid;
  gap:10px;
  margin-top:auto;
}

/* Сетка причин */
.why2-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}

.why2-card{
  border-radius:22px;
  background: rgba(255,255,255,.82);
  border:1px solid var(--line2);
  box-shadow: var(--shadow2);
  padding:16px;
  min-height: 170px;
  display:flex;
  flex-direction:column;
}

.why2-card__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  margin-bottom:10px;
}
.why2-card__title{
  font-size:22px;
  line-height:1.06;
  font-weight:1000;
  max-width: 18ch;
  hyphens:auto;
}
.why2-card__num{
  font-weight:1000;
  color: rgba(18,179,199,.95);
  font-size:12px;
  letter-spacing:.12em;
  margin-top:6px;
}
.why2-card__text{
  margin:0;
  color: rgba(15,23,42,.70);
  font-weight:750;
  line-height:1.35;
}

.why2-card--soft{
  background: linear-gradient(135deg, rgba(18,179,199,.06), rgba(34,197,94,.06));
  border:1px solid rgba(18,179,199,.16);
}

/* Адаптив */
@media (max-width: 1200px){
  .why2-hero{grid-template-columns: 200px 1fr 300px}
  .why2-head__title{font-size:40px}
}
@media (max-width: 1040px){
  .why2-hero{grid-template-columns: 1fr}
  .why2-hero__media{min-height: 180px}
  .why2-grid{grid-template-columns: repeat(2, minmax(0, 1fr))}
}
@media (max-width: 700px){
  .why2-head__title{font-size:32px}
  .why2-grid{grid-template-columns: 1fr}
}

