/* ============================================================
   SEO site — base tokens & primitives (свой CSS вместо Tilda)
   Токены выверены по computed-стилям оригинала seo.eto-design.ru
   ============================================================ */
:root{
  --scp:'Source Code Pro','Courier New',monospace;
  --c-text:#000;
  --c-bg:#fff;
  --c-gray:#f2f2f2;
  --c-gray-2:#efefef;
  --c-dark:#171717;
  --c-accent:#547596;
  --container:1200px;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--scp);
  font-weight:400;
  color:var(--c-text);
  background:var(--c-bg);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;height:auto;display:block;border:0}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4,h5,h6{margin:0;font-weight:400;line-height:1.23}
p{margin:0 0 1em}
ul{margin:0;padding:0;list-style:none}
button{font-family:inherit}

/* layout */
.seo-container{width:100%;max-width:var(--container);margin:0 auto;padding:0 20px}
.seo-section{padding:70px 0}
.seo-section--gray{background:var(--c-gray)}
.seo-section--gray2{background:var(--c-gray-2)}
.seo-section--dark{background:var(--c-dark);color:#fff}

/* buttons (border 1px #000, radius 0, hover #547596) */
.seo-btn{
  display:inline-block;
  font-family:var(--scp);
  font-weight:300;
  font-size:16px;
  line-height:1.4;
  color:#000;
  background:#fff;
  border:1px solid #000;
  border-radius:0;
  padding:17px 60px;
  cursor:pointer;
  text-align:center;
  transition:color .2s ease,border-color .2s ease,background-color .2s ease;
}
.seo-btn:hover{color:var(--c-accent);border-color:var(--c-accent)}

/* scroll-reveal animations (свой аналог tilda-animate) */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .8s ease,transform .8s ease}
.reveal.reveal--left{transform:translateX(-40px)}
.reveal.reveal--right{transform:translateX(40px)}
.reveal.reveal--up{transform:translateY(40px)}
.reveal.is-visible{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
}

/* ===== Scroll-to-top button (появляется при скролле) ===== */
.seo-totop{
  position:fixed;right:22px;bottom:26px;z-index:90;
  width:46px;height:46px;border-radius:50%;
  background:var(--c-dark);color:#fff;border:0;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;transform:translateY(12px);
  transition:opacity .3s ease,transform .3s ease,visibility .3s ease,background .2s ease;
}
.seo-totop svg{width:20px;height:20px}
.seo-totop.is-visible{opacity:1;visibility:visible;transform:none}
.seo-totop:hover{background:var(--c-accent)}
/* ===== Shared header: fixed, full-width; прозрачная над hero → тёмная плавающая при скролле ===== */
.seo-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:#fff;
  border-bottom:1px solid #ededed;
  transition:background .3s ease,border-color .3s ease,box-shadow .3s ease;
}
.seo-header__inner{
  display:flex;align-items:center;justify-content:flex-start;
  min-height:60px;gap:20px;
  width:100%;max-width:none;padding:0 40px;
}
.seo-header__logo{display:inline-flex;align-items:center}
.seo-header__logo img{height:20px;width:auto;display:block}
.seo-header__logo .seo-header__logo-light{display:none}
.seo-header__nav{display:flex;align-items:center;gap:34px;margin-left:auto}
.seo-header__link{font-size:15px;color:#000;transition:color .2s ease}
.seo-header__link:hover{color:var(--c-accent)}
.seo-header__phone{font-size:15px;white-space:nowrap;color:#000;transition:color .2s ease}
.seo-header__phone:hover{color:var(--c-accent)}
.seo-header__socials{display:flex;align-items:center;gap:9px;margin-left:6px}
.seo-header__soc{display:inline-flex;align-items:center;justify-content:center;color:#000;transition:color .2s ease}
.seo-header__soc svg{width:30px;height:30px;display:block;fill:currentColor}
.seo-header__soc:hover{color:var(--c-accent)}
.seo-header__burger{display:none;flex-direction:column;justify-content:center;gap:5px;width:30px;height:30px;background:none;border:0;cursor:pointer;padding:0;margin-left:auto}
.seo-header__burger span{display:block;height:2px;width:24px;background:#000;transition:transform .25s ease,opacity .25s ease,background .3s ease}

/* Страницы с обложкой: шапка прозрачная поверх hero (пока не проскроллено) */
body.has-cover .seo-header:not(.is-scrolled){background:transparent;border-bottom-color:transparent}
/* Тёмная обложка: белый текст и белое лого в прозрачной шапке */
body.cover-dark .seo-header:not(.is-scrolled) .seo-header__link,
body.cover-dark .seo-header:not(.is-scrolled) .seo-header__phone{color:#fff}
body.cover-dark .seo-header:not(.is-scrolled) .seo-header__soc{border-color:#fff;color:#fff}
body.cover-dark .seo-header:not(.is-scrolled) .seo-header__logo-dark{display:none}
body.cover-dark .seo-header:not(.is-scrolled) .seo-header__logo-light{display:block}
/* Страницы без обложки, но с тёмной сплошной шапкой сверху (price, policy) */
body.header-dark .seo-header:not(.is-scrolled){background:var(--c-dark);border-bottom-color:transparent}
body.header-dark .seo-header:not(.is-scrolled) .seo-header__link,
body.header-dark .seo-header:not(.is-scrolled) .seo-header__phone{color:#fff}
body.header-dark .seo-header:not(.is-scrolled) .seo-header__soc{border-color:#fff;color:#fff}
body.header-dark .seo-header:not(.is-scrolled) .seo-header__logo-dark{display:none}
body.header-dark .seo-header:not(.is-scrolled) .seo-header__logo-light{display:block}

/* Плавающая тёмная панель при скролле (на всех страницах) */
.seo-header.is-scrolled{background:var(--c-dark);border-bottom-color:transparent;box-shadow:0 2px 16px rgba(0,0,0,.22)}
.seo-header.is-scrolled .seo-header__link,
.seo-header.is-scrolled .seo-header__phone{color:#fff}
.seo-header.is-scrolled .seo-header__soc{border-color:#fff;color:#fff}
.seo-header.is-scrolled .seo-header__soc:hover,
.seo-header.is-scrolled .seo-header__link:hover,
.seo-header.is-scrolled .seo-header__phone:hover{color:var(--c-accent);border-color:var(--c-accent)}
.seo-header.is-scrolled .seo-header__burger span{background:#fff}
.seo-header.is-scrolled .seo-header__logo-dark{display:none}
.seo-header.is-scrolled .seo-header__logo-light{display:block}

/* Страницы без обложки: контент не должен уезжать под fixed-шапку */
body:not(.has-cover){padding-top:60px}

@media (max-width:1024px){
  .seo-header__inner{padding:0 22px}
  .seo-header__nav{gap:22px}
  .seo-header__socials{display:none}
}
@media (max-width:960px){
  .seo-header__burger{display:flex}
  .seo-header__nav{
    position:absolute;left:0;right:0;top:100%;
    flex-direction:column;align-items:flex-start;gap:0;
    background:var(--c-dark);
    padding:0 22px;margin:0;max-height:0;overflow:hidden;transition:max-height .3s ease;z-index:60;
  }
  .seo-header.is-open .seo-header__nav{max-height:80vh;padding:10px 22px}
  .seo-header.is-open .seo-header__nav .seo-header__link,
  .seo-header.is-open .seo-header__nav .seo-header__phone{color:#fff}
  .seo-header__nav .seo-header__link,.seo-header__nav .seo-header__phone{padding:12px 0;width:100%}
  .seo-header.is-open .seo-header__burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .seo-header.is-open .seo-header__burger span:nth-child(2){opacity:0}
  .seo-header.is-open .seo-header__burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
}
/* ===== Hero / cover (полноширинное фото + typed-заголовок, t635) =====
   Размеры выверены по computed-стилям оригинала (1920px):
   колонка 760px, лого 280×62, заголовок 52/64, подзаголовок 24/36, стрелка 38×19 */
.seo-hero{
  position:relative;
  min-height:calc(100vh - 51px); /* обложка на весь экран, снизу остаётся бегущая строка */
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  background:#e9e9e9;
}
.seo-hero__bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.seo-hero__bg::after{content:"";position:absolute;inset:0;background:rgba(255,255,255,.12)}
.seo-hero__inner{position:relative;z-index:2;width:100%;max-width:800px;margin:0 auto;padding:40px 20px}
.seo-hero__logo{width:280px;height:auto;max-width:80%;margin:0 auto 44px;display:block}
.seo-hero__title{font-size:44px;font-weight:400;line-height:54px;margin:0 0 26px;white-space:nowrap}
.seo-hero__subtitle{font-size:24px;font-weight:400;line-height:36px;color:#000;margin:0}
.seo-hero__cursor{display:inline-block;font-weight:400;margin-left:1px;animation:seo-blink 1s steps(1) infinite}
@keyframes seo-blink{50%{opacity:0}}
.seo-hero__chevron{display:inline-block;margin-top:70px;color:#000;animation:seo-bounce 2s infinite}
.seo-hero__chevron svg{width:38px;height:20px;display:block}
@keyframes seo-bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(8px)}}

@media (max-width:940px){
  .seo-hero__title{white-space:normal;font-size:44px;line-height:1.25}
}
@media (max-width:820px){
  .seo-hero{min-height:520px}
  .seo-hero__inner{max-width:100%}
  .seo-hero__logo{width:200px;margin-bottom:32px}
  .seo-hero__title{font-size:30px;line-height:1.25}
  .seo-hero__subtitle{font-size:18px;line-height:1.5}
  .seo-hero__chevron{margin-top:40px}
}
/* ===== Marquee (бегущая строка услуг, t1003, только ≥980px) ===== */
.b-marquee{background:var(--c-dark);overflow:hidden;white-space:nowrap}
.b-marquee__track{display:inline-flex;align-items:center;padding:15px 0;animation:seo-marquee 34s linear infinite;will-change:transform}
.b-marquee:hover .b-marquee__track{animation-play-state:paused}
.b-marquee__item{color:#fff;font-family:var(--scp);font-weight:400;font-size:16px;padding:0 34px;position:relative}
.b-marquee__item::after{content:"•";position:absolute;right:-4px;color:#fff;opacity:.55}
@keyframes seo-marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media (max-width:980px){.b-marquee{display:none}}
/* ===== Услуги (rec710292914, t843) — 3 чередующихся ряда картинка+текст+кнопка ===== */
.b-services{
  padding:105px 0;
  background:#fff;
}

.b-services__row{
  display:flex;
  align-items:center;
  gap:60px;
}
.b-services__row + .b-services__row{
  margin-top:100px;
}
.b-services__row--reverse{
  flex-direction:row-reverse;
}

.b-services__media,
.b-services__body{
  flex:1 1 0;
  min-width:0;
}
.b-services__media img{
  display:block;
  width:100%;
  max-width:600px;
  height:auto;
  aspect-ratio:600/450;
  object-fit:cover;
}

.b-services__title{
  font-size:24px;
  font-weight:400;
  line-height:1.23;
  margin:0 0 24px;
}
.b-services__descr{
  font-size:16px;
  line-height:1.55;
  color:var(--c-text);
  margin:0 0 30px;
}
.b-services__btn{
  display:inline-block;
}

@media (max-width:820px){
  .b-services{padding:50px 0}
  .b-services__row,
  .b-services__row--reverse{
    flex-direction:column;
    align-items:stretch;
    gap:24px;
  }
  .b-services__row + .b-services__row{margin-top:50px}
  .b-services__media img{max-width:100%}
  .b-services__title{font-size:20px;margin-bottom:14px}
  .b-services__descr{margin-bottom:24px}

  /* на мобиле картинки/текст просто всплывают снизу, без горизонтального сдвига */
  .b-services .reveal.reveal--left,
  .b-services .reveal.reveal--right{
    transform:translateY(30px);
  }
}
/* ===== Тарифы "Стоимость продвижения в Яндекс и Google" (t1068, rec707432349) ===== */
.b-pricing__title{
  font-size:42px;
  text-align:center;
  margin-bottom:105px;
}

.b-pricing__row{
  display:flex;
  align-items:flex-start;
}

.b-pricing__col{
  position:relative;
  flex:1 1 0;
  min-width:0;
  padding:0 25px;
  text-align:center;
}
.b-pricing__col:not(:first-child)::before{
  content:'';
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:1px;
  background:#000;
}

.b-pricing__icon{
  width:100px;
  height:100px;
  margin:0 auto;
}
.b-pricing__icon img{
  width:100%;
  height:100%;
  border-radius:50%;
}

.b-pricing__name{
  margin-top:26px;
  font-size:24px;
  font-weight:400;
  line-height:1.35;
}

.b-pricing__descr{
  margin-top:30px;
  font-size:16px;
  line-height:1.55;
}
.b-pricing__descr p{
  margin:0 0 1em;
}
.b-pricing__descr ul{
  list-style:none;
  margin:0;
  padding:0;
}
.b-pricing__descr li{
  padding:12px;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}

.b-pricing__price{
  margin-top:30px;
  font-size:18px;
  line-height:1.35;
}

@media (max-width:820px){
  .b-pricing__title{
    font-size:28px;
    margin-bottom:40px;
  }
  .b-pricing__row{
    display:block;
  }
  .b-pricing__col{
    padding:0;
    margin:0 auto 55px;
    max-width:420px;
  }
  .b-pricing__col:not(:first-child)::before{
    display:none;
  }
  .b-pricing__col:not(:first-child){
    padding-top:55px;
    position:relative;
  }
  .b-pricing__col:not(:first-child)::after{
    content:'';
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:100%;
    height:1px;
    background:#eee;
  }
  .b-pricing__col:last-child{
    margin-bottom:0;
  }
}
/* ===== Результаты наших клиентов (t050 + t801) ===== */
.b-results{
  background:#fff;
  padding-top:105px;
  padding-bottom:105px;
}

.b-results__title{
  font-size:42px;
  font-weight:400;
  line-height:1.23;
  text-align:center;
  margin:0 0 90px;
}

.b-results__case{
  display:flex;
  align-items:center;
  gap:70px;
}

.b-results__text{
  flex:0 0 auto;
  width:38%;
}

.b-results__case-title{
  font-size:24px;
  line-height:1.3;
  margin:0 0 24px;
}

.b-results__descr{
  font-size:18px;
  line-height:1.5;
}
.b-results__descr p{
  margin:0 0 24px;
}
.b-results__descr strong{
  font-weight:700;
}

.b-results__link{
  display:inline-block;
  font-size:18px;
  font-weight:700;
  color:#000;
  transition:color .2s ease-in-out;
}
.b-results__link::after{
  content:"\00a0→";
}
.b-results__link:hover{
  color:var(--c-accent);
}

.b-results__media{
  flex:1 1 0;
  min-width:0;
}
.b-results__media img{
  width:100%;
  height:auto;
}

@media (max-width:820px){
  .b-results{
    padding-top:60px;
    padding-bottom:60px;
  }
  .b-results__title{
    font-size:30px;
    margin-bottom:50px;
  }
  .b-results__case{
    flex-direction:column;
    align-items:stretch;
    gap:30px;
  }
  .b-results__text{
    width:100%;
  }
  .b-results__case-title{
    font-size:22px;
    margin-bottom:18px;
  }
  .b-results__descr{
    font-size:16px;
  }
  .b-results__descr p{
    margin-bottom:18px;
  }
}
/* ===== Timelines / «Сроки достижения результатов» (t577 + t051) ===== */
.b-timelines__title{
  font-size:30px;
  font-weight:400;
  text-align:center;
  margin:0 0 90px;
}

.b-timelines__row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.b-timelines__col{
  position:relative;
  padding-top:35px;
}

.b-timelines__circle{
  width:70px;
  height:70px;
  border-radius:100%;
  background:#fff;
  border:1px solid #222;
  position:absolute;
  top:0;
  left:0;
  right:0;
  margin:0 auto;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
}

.b-timelines__number{
  font-size:18px;
  color:#222;
}

.b-timelines__card{
  height:100%;
  background:#fff;
  padding:53px 30px 40px;
  display:flex;
  flex-direction:column;
  text-align:center;
}

.b-timelines__descr{
  font-size:16px;
  line-height:1.55;
  text-align:left;
  margin:12px 0 20px;
}

.b-timelines__icon{
  max-width:100px;
  width:100%;
  height:auto;
  margin:auto auto 0;
}

.b-timelines__disclaimer{
  font-size:16px;
  font-weight:300;
  margin:60px 0 0;
}

@media (max-width:820px){
  .b-timelines__title{font-size:24px;margin-bottom:40px}
  .b-timelines__row{grid-template-columns:1fr;gap:40px}
  .b-timelines__disclaimer{margin-top:40px}
}
/* ===== Этапы сотрудничества (steps, t1107) ===== */
.b-steps{
  background:#fff;
}
.b-steps__title{
  text-align:center;
  font-size:42px;
  font-weight:400;
  line-height:1.23;
  margin:0 0 80px;
}

.b-steps__row{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  flex-wrap:wrap;
}
.b-steps__item{
  flex:0 1 220px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.b-steps__icon{
  width:100px;
  height:100px;
}
.b-steps__icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.b-steps__text{
  margin:25px 0 0;
  font-size:16px;
  font-weight:300;
  line-height:1.4;
}
.b-steps__arrow{
  flex:0 0 auto;
  align-self:flex-start;
  margin:36px 15px 0;
}
.b-steps__arrow img{
  display:block;
  width:60px;
  height:auto;
}

@media (max-width:960px){
  .b-steps__title{font-size:30px;margin-bottom:50px}
}

@media (max-width:820px){
  .b-steps__row{flex-direction:column;align-items:center}
  .b-steps__item{flex:0 0 auto;max-width:320px;width:100%}
  .b-steps__arrow{
    align-self:center;
    margin:20px 0;
    transform:rotate(90deg);
  }
}
/* ===== Индивидуальное предложение (T580, rec710252570) ===== */
.b-offer__container{
  text-align:center;
}
.b-offer__title{
  font-size:44px;
  font-weight:400;
  line-height:1.23;
  margin:0 0 25px;
}
.b-offer__descr{
  max-width:600px;
  margin:0 auto;
  font-size:20px;
  line-height:1.5;
}
.b-offer__cta{
  display:inline-flex;
  align-items:center;
  gap:14px;
  margin-top:60px;
}
.b-offer__arrow{
  width:34px;
  height:auto;
  flex:none;
  align-self:flex-end;
  margin-bottom:6px;
}
.b-offer__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:60px;
  padding:0 55px;
  font-family:var(--scp);
  font-size:20px;
  font-weight:400;
  color:#000;
  background-color:#c6dbef;
  border:3px solid #c6dbef;
  border-radius:0;
  box-shadow:0 2px 3px rgba(0,11,48,.25);
  cursor:pointer;
  transition:background-color .2s ease-in-out,border-color .2s ease-in-out,box-shadow .2s ease-in-out;
}
.b-offer__btn:hover,
.b-offer__btn:focus-visible{
  background-color:#fff;
  border-color:#000;
}

@media (max-width:820px){
  .b-offer__title{font-size:30px}
  .b-offer__descr{font-size:17px}
  .b-offer__cta{margin-top:40px}
  .b-offer__arrow{width:26px}
  .b-offer__btn{min-height:50px;padding:0 35px;font-size:17px}
}

@media (max-width:480px){
  .b-offer__cta{flex-direction:column;align-items:center;gap:6px}
  .b-offer__arrow{display:none}
}
/* ===== Почему нам стоит доверять (t491, rec710265989) ===== */
.b-features{
  background:var(--c-bg);
}
.b-features__title{
  margin:0 0 105px;
  text-align:center;
  font-size:36px;
  font-weight:400;
  line-height:1.25;
}
.b-features__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  column-gap:60px;
  row-gap:70px;
}
.b-features__item{
  display:flex;
  flex-direction:column;
}
.b-features__head{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:16px;
}
.b-features__icon{
  flex:0 0 auto;
  width:50px;
  height:50px;
}
.b-features__name{
  font-size:19px;
  font-weight:500;
  line-height:1.3;
}
.b-features__descr{
  font-size:16px;
  font-weight:300;
  line-height:1.5;
  color:var(--c-text);
}
.b-features__descr a{
  color:inherit;
  border-bottom:1px solid #333;
  text-decoration:none;
}
.b-features__descr a:hover{
  border-color:var(--c-accent);
  color:var(--c-accent);
}

@media (max-width:820px){
  .b-features__title{
    margin-bottom:45px;
    font-size:28px;
  }
  .b-features__list{
    grid-template-columns:1fr;
    row-gap:40px;
  }
}
/* ===== Клиенты — "Мы гордимся нашими клиентами" (t738, тёмный блок) ===== */
.seo-clients{
  padding-top:105px;
  padding-bottom:105px;
  text-align:center;
}

.seo-clients__title{
  font-size:42px;
  font-weight:400;
  line-height:1.23;
  color:#fff;
  margin:0 auto 105px;
}

.seo-clients__list{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  align-items:center;
  justify-items:center;
  gap:40px 20px;
  margin:0 auto;
  max-width:1200px;
}

.seo-clients__item{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:56px;
}

.seo-clients__item img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}

@media (max-width:960px){
  .seo-clients__title{font-size:38px;margin-bottom:45px}
}

@media (max-width:820px){
  .seo-clients{padding-top:60px;padding-bottom:60px}
  .seo-clients__list{grid-template-columns:repeat(3,1fr);gap:32px 16px}
  .seo-clients__item{height:46px}
}

@media (max-width:480px){
  .seo-clients__title{font-size:30px}
  .seo-clients__list{grid-template-columns:repeat(2,1fr);gap:28px 14px}
}
/* ===== Auth-страницы (login / восстановление пароля и т.д.) на нашем дизайне ===== */
.page-auth main{display:flex;align-items:center;min-height:calc(100vh - 320px);padding:60px 0}
.page-auth .container{width:100%;max-width:520px;margin:0 auto;padding:0 20px}
/* сброс bootstrap-сетки — поля в столбик */
.page-auth .row{display:block;margin:0 0 18px}
.page-auth [class^="col-"],.page-auth [class*=" col-"]{display:block;width:100%;max-width:none;flex:initial;padding:0}
.page-auth .justify-content-center,.page-auth .py-5{padding:0}

.page-auth .card{border:1px solid #e6e6e6;background:#fff}
.page-auth .card-header{font-family:var(--scp);font-size:22px;font-weight:400;padding:22px 26px;border-bottom:1px solid #eee;background:none}
.page-auth .card-body{padding:26px}

.page-auth label{display:block;font-family:var(--scp);font-size:14px;color:#000;margin-bottom:7px;text-align:left}
.page-auth .form-control{width:100%;font-family:var(--scp);font-size:15px;line-height:1.4;padding:11px 14px;border:1px solid #ccc;border-radius:0;background:#fff;color:#000}
.page-auth .form-control:focus{outline:none;border-color:var(--c-accent)}
.page-auth .form-control.is-invalid{border-color:#c0392b}

.page-auth .form-check{display:flex;align-items:center;gap:8px;margin:0 0 18px}
.page-auth .form-check-input{width:16px;height:16px}
.page-auth .form-check-label{margin:0}

.page-auth .btn{font-family:var(--scp);cursor:pointer;font-size:15px}
.page-auth .btn-primary{display:inline-block;background:var(--c-dark);color:#fff;border:1px solid var(--c-dark);border-radius:0;padding:12px 34px;transition:background .2s ease,color .2s ease}
.page-auth .btn-primary:hover{background:#fff;color:var(--c-dark)}
.page-auth .btn-link{background:none;border:0;color:var(--c-accent);padding:0;text-decoration:underline}
.page-auth .btn-link:hover{color:#000}

.page-auth .invalid-feedback{display:block;color:#c0392b;font-size:13px;margin-top:4px}
.page-auth .mb-0{margin-bottom:0}
.page-auth .mb-3{margin-bottom:18px}
/* ===== Shared footer (Свяжитесь с нами + контакты + нижний бар) ===== */
.seo-footer__contacts{background:#fff;padding:70px 0 60px}
.seo-footer__title{font-size:42px;font-weight:400;text-align:center;margin-bottom:16px}
.seo-footer__lead{text-align:center;max-width:640px;margin:0 auto 50px;color:#000;font-weight:300;line-height:1.6}
.seo-footer__cols{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.seo-footer__col{text-align:center;display:flex;flex-direction:column;align-items:center;gap:12px}
.seo-footer__col-icon{width:34px;height:34px;opacity:.9}
.seo-footer__col-title{font-size:20px;font-weight:400;margin-bottom:4px}
.seo-footer__col a,.seo-footer__col p{font-weight:300;color:#000;margin:0;line-height:1.6}
.seo-footer__col a:hover{color:var(--c-accent)}

.seo-footer__bar{background:#fff;border-top:1px solid #ededed}
.seo-footer__bar-inner{display:flex;align-items:center;justify-content:space-between;min-height:60px;gap:20px}
.seo-footer__bar img{height:18px;width:auto}
.seo-footer__copy{font-size:13px;color:#777;font-weight:300}

@media (max-width:820px){
  .seo-footer__title{font-size:30px}
  .seo-footer__cols{grid-template-columns:1fr;gap:40px}
}
/* ===== «Стоимость услуг» — 3 карточки (advertisement rec741232887 / price rec769353818, t1073) ===== */
.b-ads-cards{
  padding:105px 0;
  background:var(--c-gray-2);
}

.b-ads-cards__title{
  font-size:42px;
  text-align:center;
  margin:0 0 70px;
}

.b-ads-cards__row{
  display:flex;
  align-items:flex-start;
  gap:60px;
}

.b-ads-cards__col{
  flex:1 1 0;
  min-width:0;
  text-align:left;
}

.b-ads-cards__media{
  margin:0 0 30px;
}
.b-ads-cards__media img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:3/2;
  object-fit:cover;
}

.b-ads-cards__name{
  font-size:24px;
  font-weight:400;
  line-height:1.23;
  margin:0 0 16px;
}

.b-ads-cards__price{
  font-size:18px;
  font-weight:600;
  line-height:1.35;
  color:var(--c-accent);
  margin:0 0 16px;
}

.b-ads-cards__descr{
  font-size:16px;
  line-height:1.55;
  color:var(--c-text);
}

@media (max-width:820px){
  .b-ads-cards{padding:50px 0}
  .b-ads-cards__title{font-size:28px;margin-bottom:40px}
  .b-ads-cards__row{
    flex-direction:column;
    gap:40px;
  }
}
/* ===== Advertisement / Hero-обложка (t997, тёмный cover-фон) =====
   Размеры сверены по крою screenshots/blocks-p2/adv-hero.png (1280x900):
   заголовок 52/64 (line-height 1.23), подзаголовок 22/34 (1.55),
   заголовок пункта 16px/700, описание пункта 16/25 (1.55), иконка 20x20.
   Шапка сайта фиксированная и прозрачная поверх обложки (body.has-cover.cover-dark) —
   верхний паддинг блока ~90px, чтобы контент не перекрывался шапкой. */
.b-adv-hero{
  position:relative;
  min-height:100vh;
  overflow:hidden;
  background:var(--c-dark);
  color:#fff;
}
.b-adv-hero__bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:right center;
  background-repeat:no-repeat;
}
.b-adv-hero__filter{
  position:absolute;inset:0;
  background-image:linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.80));
}
.b-adv-hero .seo-container{position:relative;z-index:2;min-height:100vh}
.b-adv-hero__wrapper{display:flex;flex-direction:column;min-height:100vh}

.b-adv-hero__textwrapper{
  flex:1 0 auto;
  display:flex;flex-direction:column;justify-content:center;
  padding:90px 0 40px;
  max-width:760px;
}
.b-adv-hero__title{font-size:52px;line-height:1.23;font-weight:400;margin:0}
.b-adv-hero__descr{font-size:22px;line-height:1.55;font-weight:400;margin:24px 0 0}

.b-adv-hero__row{
  margin-top:auto;margin-bottom:90px;
  display:flex;gap:40px;
}
.b-adv-hero__col{flex:1 1 0;min-width:0}
.b-adv-hero__head{display:flex;align-items:center;gap:15px;margin-bottom:24px}
.b-adv-hero__icon{width:20px;height:20px;flex-shrink:0;display:block}
.b-adv-hero__col-title{font-size:16px;line-height:1.3;font-weight:700;margin:0}
.b-adv-hero__col-descr{font-size:16px;line-height:1.55;font-weight:400;margin:0}

@media (max-width:960px){
  .b-adv-hero__title{font-size:40px;line-height:1.25}
  .b-adv-hero__descr{font-size:18px;line-height:1.5}
  .b-adv-hero__row{gap:24px;margin-bottom:60px}
}

@media (max-width:820px){
  .b-adv-hero{min-height:auto}
  .b-adv-hero .seo-container{min-height:auto}
  .b-adv-hero__wrapper{min-height:auto}
  .b-adv-hero__textwrapper{flex:none;padding:110px 0 50px;max-width:100%}
  .b-adv-hero__title{font-size:32px;line-height:1.3}
  .b-adv-hero__descr{font-size:17px;margin-top:18px}
  .b-adv-hero__row{margin-top:0;margin-bottom:0;flex-direction:column;gap:32px;padding-bottom:60px}
}

@media (max-width:480px){
  .b-adv-hero__title{font-size:26px;line-height:1.35}
  .b-adv-hero__descr{font-size:15px}
  .b-adv-hero__textwrapper{padding-top:100px}
}
/* ===== Блок "Стоимость создания сайта" (t613, sites.html#rec725381875 / price.html#rec769170816) ===== */
.b-create-table{
  background:#fff;
}

.b-create-table__title{
  font-size:42px;
  line-height:1.23;
  color:#171717;
  text-align:center;
  margin:0 0 60px;
}

.b-create-table__scroll{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}

.b-create-table__card{
  background:#fff;
  border:1px solid #eee;
  border-radius:8px;
  padding:50px;
}

.b-create-table__row{
  display:grid;
  grid-template-columns:260px repeat(4,1fr);
}
.b-create-table__row--head{
  border-bottom:1px solid #eee;
}
.b-create-table__row:not(:last-child):not(.b-create-table__row--head){
  border-bottom:1px solid #eee;
}

.b-create-table__cell{
  padding:22px 20px;
  font-size:16px;
  line-height:1.55;
  text-align:center;
  border-left:1px solid #eee;
  display:flex;
  align-items:center;
  justify-content:center;
}
.b-create-table__row--head .b-create-table__cell{
  font-size:20px;
  line-height:1.35;
  color:#171717;
}
.b-create-table__cell--label{
  border-left:0;
  padding-left:0;
  justify-content:flex-start;
  text-align:left;
}

.b-create-table__row--price .b-create-table__cell{
  font-weight:400;
}

.b-create-table__icon{
  display:block;
  width:30px;
  height:30px;
}

@media (max-width:820px){
  .b-create-table__title{
    font-size:30px;
    margin-bottom:30px;
  }
  .b-create-table__card{
    padding:20px;
    min-width:640px;
  }
  .b-create-table__row{
    grid-template-columns:180px repeat(4,1fr);
  }
  .b-create-table__cell{
    padding:16px 12px;
    font-size:14px;
  }
  .b-create-table__row--head .b-create-table__cell{
    font-size:16px;
  }
}
/* =====================================================================
   Политика в отношении обработки персональных данных (страница /policy)
   Оригинал: policy.html id="rec759365403" (T004, .t-text_md), один сплошной
   юридический текст. Копирует ширину/шрифт/отступы оригинала:
   - .t-text_md: font-size 20px/line-height 1.55 (desktop), 18px (≤1200px),
     16px/1.45 (≤640px) — см. tilda-blocks-page50289779.min.css
   - запись имела padding-top:105px;padding-bottom:60px — сохранено
   Фон белый, читаемая ширина ограничена (~900px) внутри .seo-container.
   ===================================================================== */

.b-policy{
  padding-top:105px;
  padding-bottom:60px;
  background:#fff;
}

.b-policy .seo-container{
  max-width:900px;
}

.b-policy__title{
  font-size:30px;
  font-weight:500;
  line-height:1.3;
  margin:0 0 30px;
}

.b-policy__section{
  margin-bottom:30px;
}
.b-policy__section:last-child{
  margin-bottom:0;
}

.b-policy__heading{
  font-weight:700;
  font-size:20px;
  line-height:1.55;
  margin:0 0 12px;
}

.b-policy p{
  font-size:20px;
  line-height:1.55;
  margin:0 0 12px;
}
.b-policy p:last-child{
  margin-bottom:0;
}

.b-policy__list{
  list-style:disc;
  padding-left:22px;
  margin:0;
}
.b-policy__list li{
  font-size:20px;
  line-height:1.55;
  margin:0 0 8px;
}
.b-policy__list li:last-child{
  margin-bottom:0;
}

@media (max-width:1200px){
  .b-policy__heading,
  .b-policy p,
  .b-policy__list li{
    font-size:18px;
  }
}

@media (max-width:820px){
  .b-policy{
    padding-top:50px;
    padding-bottom:40px;
  }
  .b-policy__title{
    font-size:24px;
    margin-bottom:24px;
  }
  .b-policy__section{
    margin-bottom:24px;
  }
}

@media (max-width:640px){
  .b-policy__heading,
  .b-policy p,
  .b-policy__list li{
    font-size:16px;
    line-height:1.45;
  }
}
/* ===== Частые вопросы (T795 rec726057701 + T585 rec725389480, страница /sites) ===== */
.b-faq{
  background:#fff;
}

.b-faq__title{
  font-family:var(--scp);
  font-weight:400;
  font-size:42px;
  line-height:1.23;
  text-align:center;
  margin:0 0 40px;
}

.b-faq__list{
  border-bottom:1px solid #eee;
}

/* -- аккордеон на нативных details/summary, без JS -- */
.b-faq__item{
  border-top:1px solid #eee;
}

.b-faq__question{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:26px 50px 26px 0;
  font-family:var(--scp);
  font-weight:500;
  font-size:24px;
  line-height:1.35;
  color:#000;
  cursor:pointer;
  list-style:none;
  -webkit-tap-highlight-color:transparent;
}
.b-faq__question::-webkit-details-marker{display:none}
.b-faq__question::marker{content:''}

.b-faq__question-text{flex:1 1 auto}

/* иконка-плюс (две линии), справа от вопроса */
.b-faq__icon{
  position:absolute;
  top:50%;
  right:0;
  width:24px;
  height:24px;
  flex:none;
  transform:translateY(-50%);
}
.b-faq__icon::before,
.b-faq__icon::after{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  background-color:#222;
  transition:transform .3s ease-in-out;
}
.b-faq__icon::before{
  width:22px;
  height:1px;
  transform:translate(-50%,-50%);
}
.b-faq__icon::after{
  width:1px;
  height:22px;
  transform:translate(-50%,-50%);
}

/* плюс -> крестик при раскрытии, как в оригинале (rotate(-45deg)) */
.b-faq__item[open] .b-faq__icon::before,
.b-faq__item[open] .b-faq__icon::after{
  transform:translate(-50%,-50%) rotate(-45deg);
}

.b-faq__answer{
  padding:0 50px 20px 0;
}

.b-faq__answer-inner{
  font-family:var(--scp);
  font-weight:400;
  font-size:16px;
  line-height:1.55;
  color:#000;
}

.b-faq__ul{
  padding-left:26px;
}
.b-faq__ul li{
  list-style:disc;
  margin-bottom:8px;
}
.b-faq__ul li:last-child{
  margin-bottom:0;
}

@media (max-width:820px){
  .b-faq__title{font-size:30px;margin-bottom:26px}
  .b-faq__question{font-size:18px;padding:18px 36px 18px 0}
  .b-faq__icon{width:20px;height:20px}
  .b-faq__icon::before{width:18px}
  .b-faq__icon::after{height:18px}
  .b-faq__answer{padding:0 36px 16px 0}
  .b-faq__answer-inner{font-size:14px}
}
/* ===== Обложка страницы «Создание сайтов» (rec725293163, t1065, тёмный cover) =====
   Размеры выверены по computed-стилям оригинала (project8614911, tilda-blocks-page46068737):
   заголовок t-title_md 52/1.23, подзаголовок t-descr_xl 24/1.5, пункты t-descr_md 18px,
   затемнение фото — чёрный слой opacity:.7 (t-cover__filter).
   Шапка сайта — fixed поверх блока, поэтому сверху добавлен паддинг ~90px. */
.b-sites-hero{
  position:relative;
  min-height:900px;
  padding:90px 0 90px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  text-align:center;
  color:#fff;
  background:#171717;
}
.b-sites-hero__bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.b-sites-hero__filter{
  position:absolute;inset:0;
  background:#000;
  opacity:.7;
}

.b-sites-hero__wrapper{
  position:relative;
  z-index:2;
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.b-sites-hero__textwrapper{margin-bottom:65px}

.b-sites-hero__title{
  font-size:52px;
  font-weight:400;
  line-height:1.23;
  color:#fff;
  margin:0 0 40px;
}
.b-sites-hero__descr{
  font-size:24px;
  font-weight:400;
  line-height:1.5;
  color:#fff;
  max-width:560px;
  margin:0 auto;
}

.b-sites-hero__row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  width:100%;
  max-width:600px;
}
.b-sites-hero__item{
  display:flex;
  flex-direction:column;
  align-items:center;
  width:180px;
}
.b-sites-hero__imgwrapper{
  display:flex;
  align-items:center;
  justify-content:center;
  width:50px;
  height:50px;
}
.b-sites-hero__img{
  width:100%;
  max-width:100%;
  height:auto;
}
.b-sites-hero__item-text{
  margin-top:30px;
  font-size:18px;
  line-height:1.4;
  color:#fff;
}

@media (max-width:940px){
  .b-sites-hero{min-height:760px}
  .b-sites-hero__title{font-size:44px;line-height:1.25}
  .b-sites-hero__descr{font-size:20px}
}

@media (max-width:820px){
  .b-sites-hero{padding:90px 0 70px;min-height:auto}
  .b-sites-hero__textwrapper{margin-bottom:48px}
  .b-sites-hero__title{font-size:34px;line-height:1.25;margin-bottom:24px}
  .b-sites-hero__descr{font-size:18px;line-height:1.5}
  .b-sites-hero__row{gap:32px 0;padding:0 10px}
  .b-sites-hero__item{width:33.333%}
}

@media (max-width:560px){
  .b-sites-hero{padding:90px 0 60px}
  .b-sites-hero__title{font-size:26px}
  .b-sites-hero__descr{font-size:16px}
  .b-sites-hero__row{flex-direction:column;align-items:center;gap:28px}
  .b-sites-hero__item{width:100%}
  .b-sites-hero__item-text{margin-top:16px}
}
/* ===== Наши работы — галерея кейсов (T795 rec725393261 + T604 rec725881099), страница /sites =====
   Карусель на нативном горизонтальном scroll-snap, без JS-библиотек. Стрелки — косметика поверх
   scrollBy(), сам скролл работает и без JS (свайп/колесо/трекпад). */
.b-works{
  background:#fff;
  overflow:hidden;
}

.b-works__title{
  font-family:var(--scp);
  font-weight:400;
  font-size:42px;
  line-height:1.23;
  color:#333;
  text-align:center;
  margin:0 0 40px;
}

.b-works__slider{
  position:relative;
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

.b-works__track{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  padding:6px 0 16px;
}
.b-works__track::-webkit-scrollbar{display:none}

.b-works__slide{
  flex:0 0 auto;
  width:min(860px,86%);
  scroll-snap-align:start;
  aspect-ratio:860/550;
  background:var(--c-gray);
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  overflow:hidden;
}

.b-works__slide img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#fff;
}

/* -- стрелки: чистый чёрный шеврон на белом круге, как в оригинале -- */
.b-works__arrow{
  position:absolute;
  top:50%;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  margin-top:-22px;
  padding:0;
  border:1px solid #000;
  border-radius:50%;
  background:#fff;
  color:#000;
  cursor:pointer;
  transition:color .2s ease,border-color .2s ease;
}
.b-works__arrow:hover{color:var(--c-accent);border-color:var(--c-accent)}
.b-works__arrow--prev{left:-6px}
.b-works__arrow--next{right:-6px}

@media (max-width:960px){
  .b-works__title{font-size:38px;margin-bottom:30px}
}

@media (max-width:820px){
  .b-works__title{font-size:30px;margin-bottom:24px}
  .b-works__arrow{width:38px;height:38px;margin-top:-19px}
  .b-works__arrow--prev{left:0}
  .b-works__arrow--next{right:0}
}

/* -- мобильный брейкпоинт: 1 карточка в ширину -- */
@media (max-width:600px){
  .b-works__slider{padding:0 12px}
  .b-works__track{gap:12px}
  .b-works__slide{width:92%}
  .b-works__arrow{display:none}
}
/* ===== Почему мы? (t677, rec726433301 / rec741232886) =====
   Общий блок для sites.html и advertisement.html — одинаковый layout, разный текст.
   Слева заголовок+текст, справа коллаж из 3 картинок (воспроизведена схема Tilda t677
   row_3-images: большая левая плитка + верхняя правая плитка + нижняя, наезжающая внахлест). */
.b-whyus{
  background:var(--c-bg);
}
.b-whyus__container{
  display:flex;
  align-items:center;
  gap:0;
}
.b-whyus__text{
  width:50%;
  box-sizing:border-box;
}
.b-whyus__title{
  margin:0 0 20px;
  font-size:36px;
  font-weight:400;
  line-height:1.25;
}
.b-whyus__descr{
  margin:0;
  font-size:18px;
  font-weight:300;
  line-height:1.55;
  max-width:530px;
}

/* ---- коллаж ---- */
.b-whyus__images{
  width:50%;
  box-sizing:border-box;
}
.b-whyus__row{
  display:flex;
  font-size:0;
}
.b-whyus__tile{
  display:inline-block;
  vertical-align:top;
  box-sizing:border-box;
}
.b-whyus__tile--left{
  width:60%;
  padding-right:10px;
}
.b-whyus__tile--right{
  width:40%;
  padding-left:10px;
}
.b-whyus__wrapper--top{
  position:relative;
  margin-top:40%;
}
.b-whyus__wrapper--bottom{
  position:relative;
  width:100%;
  margin-top:20px;
  padding-bottom:100%;
}
.b-whyus__bgimg{
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  box-shadow:0 0 15px rgba(0,0,0,.2);
}
.b-whyus__bgimg--1{
  padding-bottom:135%;
}
.b-whyus__bgimg--2{
  padding-bottom:120%;
}
.b-whyus__bgimg--3{
  position:absolute;
  right:50%;
  width:160%;
  padding-bottom:100%;
}
.b-whyus__bgimg--3-mobile{
  display:none;
}

@media (max-width:820px){
  .b-whyus__container{
    flex-direction:column;
    align-items:stretch;
  }
  .b-whyus__text{
    width:100%;
    margin-bottom:40px;
  }
  .b-whyus__title{
    font-size:28px;
    margin-bottom:16px;
  }
  .b-whyus__descr{
    font-size:16px;
    max-width:none;
  }
  .b-whyus__images{
    width:100%;
  }
  .b-whyus__tile--left,
  .b-whyus__tile--right{
    width:50%;
  }
  .b-whyus__wrapper--top{
    margin-top:0;
  }
  .b-whyus__bgimg--2{
    padding-bottom:135%;
  }
  /* на мобильном нахлёст убираем — вместо него отдельная картинка на всю ширину снизу */
  .b-whyus__wrapper--bottom{
    display:none;
  }
  .b-whyus__bgimg--3-mobile{
    display:block;
    margin-top:20px;
    padding-bottom:55%;
  }
}
