/* ---- tokens ------------------------------------------------------------- */
:root{
  --fg:#101010;
  --bg:#ffffff;
  --muted:#5b5b66;
  --line:#e5e7eb;
  --surface:#ffffff;
  --surface-2:#f3f4f6;
  --tint:#f7f8fb;
  --accent:#7e22ce;
  --accent-2:#db2777;
  --blue:#2563eb;
  --blue-light:#60a5fa;
  --hero-grad:linear-gradient(to right top,#2563eb,#db2777,#dc2626);
  --btn-grad:linear-gradient(315deg,#60a5fa,#2563eb);
  --pink-grad:linear-gradient(90deg,#db2777,#7e22ce);
  --container:984px;
  --radius:8px;
  --radius-lg:16px;
  --shadow-sm:0 1px 2px rgba(16,16,40,.06);
  --shadow:0 8px 24px rgba(16,16,40,.10);
}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]){
    --fg:#f3f4f8; --bg:#0d0d13; --muted:#a3a3b2; --line:#26262f;
    --surface:#14141c; --surface-2:#1b1b25; --tint:#101018;
    --accent:#c084fc; --accent-2:#f472b6;
    --shadow-sm:0 1px 2px rgba(0,0,0,.5); --shadow:0 8px 24px rgba(0,0,0,.5);
  }
}
:root[data-theme="dark"]{
  --fg:#f3f4f8; --bg:#0d0d13; --muted:#a3a3b2; --line:#26262f;
  --surface:#14141c; --surface-2:#1b1b25; --tint:#101018;
  --accent:#c084fc; --accent-2:#f472b6;
  --shadow-sm:0 1px 2px rgba(0,0,0,.5); --shadow:0 8px 24px rgba(0,0,0,.5);
}

*,*::before,*::after{box-sizing:border-box}
body{
  margin:0;background:var(--bg);color:var(--fg);
  font-family:ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  font-size:16px;line-height:1.15;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer}
h1,h2,h3{margin:0}
p{margin:0}
.container{max-width:var(--container);margin:0 auto;padding:0 20px}
.section{padding:56px 0}
.section-title{
  text-align:center;font-size:28px;line-height:34px;font-weight:700;color:var(--accent);
  text-transform:uppercase;letter-spacing:.01em;margin-bottom:32px;
}
.section-title.plain{text-transform:none;font-size:30px}
.lede{max-width:820px;margin:0 auto;text-align:center;color:var(--muted);font-size:15px;line-height:24px}

/* ---- header ------------------------------------------------------------- */
.site-header{height:56px;display:flex;align-items:center;background:var(--bg);border-bottom:1px solid var(--line)}
.site-header .container{display:flex;align-items:center;justify-content:space-between;width:100%}
.logo{display:flex;align-items:center;gap:8px;font-size:20px;font-weight:800;color:var(--accent-2)}
.logo svg{width:24px;height:24px}
.header-right{display:flex;align-items:center;gap:16px}
.header-right a{font-size:14px;font-weight:600;color:var(--muted)}
.header-right a:hover{color:var(--fg)}
.lang{position:relative}
.lang-btn{display:flex;align-items:center;gap:6px;background:transparent;border:1px solid var(--line);
  border-radius:6px;padding:5px 9px;font-size:13px;color:var(--fg)}
.lang-menu{
  position:absolute;right:0;top:calc(100% + 8px);z-index:40;display:none;
  grid-template-columns:repeat(3,minmax(120px,1fr));gap:2px;padding:10px;
  background:var(--surface);border:1px solid var(--line);border-radius:10px;box-shadow:var(--shadow);
  max-height:320px;overflow:auto;
}
.lang-menu.open{display:grid}
.lang-menu a{display:block;padding:6px 10px;border-radius:6px;font-size:13px;color:var(--muted);white-space:nowrap}
.lang-menu a:hover{background:var(--surface-2);color:var(--fg)}

/* ---- hero --------------------------------------------------------------- */
.hero{background:var(--hero-grad);padding:34px 0 56px;color:#fff;text-align:center}
.tabs{display:flex;justify-content:center;gap:6px;flex-wrap:wrap;margin-bottom:26px}
.tab{
  display:inline-flex;align-items:center;gap:6px;height:36px;padding:6px 22px;border:0;border-radius:8px;
  background:rgba(255,255,255,.16);color:#fff;font-size:15px;line-height:1;
  transition:background .2s ease,color .2s ease;
}
.tab:hover{background:rgba(255,255,255,.28)}
.tab.active{background:#fff;color:var(--blue);font-weight:600}
.hero h1{font-size:36px;line-height:44px;font-weight:700;margin-bottom:10px}
.hero .sub{font-size:18px;line-height:28px;opacity:.95}

.search-form{max-width:760px;margin:28px auto 0}
.search-row{display:flex;gap:8px;align-items:stretch}
.field{flex:1 1 auto;position:relative;display:flex;background:#fff;border-radius:var(--radius);overflow:hidden}
.field input{
  flex:1 1 auto;min-width:0;height:64px;padding:0 14px;border:0;outline:0;background:#fff;
  color:#101010;font-size:18px;font-family:inherit;
}
.field input::placeholder{color:#9ca3af}
.clear-btn{
  border:0;background:transparent;color:#9ca3af;padding:0 14px;display:none;align-items:center;
}
.clear-btn.show{display:flex}
.clear-btn:hover{color:#101010}
.paste-btn{
  display:flex;align-items:center;gap:4px;height:64px;padding:18px 12px;border:2px solid var(--line);
  border-radius:var(--radius);background:var(--surface-2);color:#101010;font-size:16px;line-height:24px;
  transition:filter .2s ease,transform .2s ease;
}
.paste-btn:hover{filter:brightness(.96);transform:translateY(-1px)}
.dl-btn{
  height:64px;padding:20px;border:0;border-radius:var(--radius);background:var(--btn-grad);
  color:#fff;font-size:16px;line-height:24px;transition:filter .2s ease,transform .2s ease,opacity .2s ease;
}
.dl-btn:hover:not(:disabled){filter:brightness(1.06);transform:translateY(-1px)}
.dl-btn:disabled{opacity:.55;cursor:not-allowed}
.hero-note{margin-top:12px;font-size:13px;opacity:.9}

/* ---- results ------------------------------------------------------------ */
.results{max-width:760px;margin:22px auto 0;display:none;text-align:left}
.results.show{display:block}
.results-card{background:var(--surface);color:var(--fg);border-radius:var(--radius-lg);padding:18px;box-shadow:var(--shadow)}
.results-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:12px}
.res{border:1px solid var(--line);border-radius:12px;overflow:hidden;background:var(--surface-2)}
.res .thumb{aspect-ratio:9/16;background:var(--surface-2)}
.res .thumb img,.res .thumb video{width:100%;height:100%;object-fit:cover}
.res .bar{display:flex;align-items:center;justify-content:space-between;gap:8px;padding:8px 10px;font-size:12px;color:var(--muted)}
.res .save{display:inline-flex;align-items:center;gap:4px;padding:6px 10px;border-radius:6px;
  background:var(--btn-grad);color:#fff;font-size:12px;font-weight:600}
/* Рекламный слот занимает всю ширину сетки и держит высоту до подгрузки
   объявления — иначе карточки под ним прыгнут вниз (CLS). */
.ad-slot{grid-column:1/-1;min-height:260px;display:flex;flex-direction:column;gap:6px;
  padding:10px;border:1px solid var(--line);border-radius:12px;background:var(--tint)}
.ad-slot__label{font-size:11px;letter-spacing:.04em;text-transform:uppercase;color:var(--muted)}
.ad-slot > div{flex:1;min-height:0;overflow:hidden}
@media (max-width:560px){.ad-slot{min-height:300px}}
.skeleton{position:relative;overflow:hidden;background:var(--surface-2)}
.skeleton::after{content:"";position:absolute;inset:0;transform:translateX(-100%);
  background:linear-gradient(90deg,transparent,rgba(125,125,155,.18),transparent);animation:sheen 1.2s infinite}
@keyframes sheen{100%{transform:translateX(100%)}}
.msg{font-size:14px;line-height:22px;color:var(--muted)}
.msg.err{color:#dc2626;font-weight:600}

/* ---- steps -------------------------------------------------------------- */
.steps{position:relative;padding-left:0}
.step{display:grid;grid-template-columns:1fr 56px 1fr;align-items:center;gap:0;padding:26px 0}
.step .col{min-width:0}
.step .num{
  width:32px;height:32px;margin:0 auto;border-radius:999px;background:var(--accent-2);color:#fff;
  display:flex;align-items:center;justify-content:center;font-size:14px;font-weight:700;position:relative;z-index:1;
}
.step .rail{position:relative}
.step .rail::before{content:"";position:absolute;left:50%;top:-40px;bottom:-40px;width:2px;
  transform:translateX(-50%);background:var(--line)}
.step h3{font-size:24px;line-height:28px;font-weight:700;margin:10px 0}
.step p{color:var(--muted);font-size:15px;line-height:23px}
.step .shot{border-radius:12px;border:1px solid var(--line);box-shadow:var(--shadow-sm);
  aspect-ratio:16/10;display:flex;align-items:center;justify-content:center;background:var(--surface-2)}
.step .shot.s1{background:linear-gradient(135deg,#fce7f3,#e0e7ff)}
.step .shot.s2{background:linear-gradient(135deg,#2563eb,#db2777)}
.step .shot.s3{background:linear-gradient(135deg,#dbeafe,#fae8ff)}
.step .fake-input{width:74%;height:40px;border-radius:8px;background:#fff;display:flex;align-items:center;
  padding:0 12px;color:#9ca3af;font-size:13px;box-shadow:var(--shadow-sm)}
.step .fake-btn{padding:10px 20px;border-radius:8px;background:var(--btn-grad);color:#fff;font-size:14px;font-weight:600}

/* ---- features ----------------------------------------------------------- */
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.feature{background:var(--surface);border:1px solid var(--line);border-radius:12px;overflow:hidden;
  box-shadow:var(--shadow-sm);transition:transform .25s ease,box-shadow .25s ease}
.feature:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.feature .cover{aspect-ratio:16/9;position:relative;display:flex;align-items:center;justify-content:center}
.feature .cover .play{width:42px;height:42px;border-radius:999px;background:rgba(255,255,255,.9);
  display:flex;align-items:center;justify-content:center;color:#101010}
.feature .body{padding:16px 12px 20px 18px}
.feature h3{font-size:18px;line-height:24px;font-weight:700;margin-bottom:8px}
.feature p{color:var(--muted);font-size:14px;line-height:21px}

/* ---- benefits ----------------------------------------------------------- */
.benefits{display:grid;grid-template-columns:repeat(2,1fr);gap:28px 40px;margin-top:36px}
.benefit .tile{width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;
  color:#fff;background:var(--pink-grad);margin-bottom:10px}
.benefit h3{font-size:18px;line-height:24px;font-weight:700;color:var(--accent);margin-bottom:6px}
.benefit p{color:var(--muted);font-size:14px;line-height:21px}

/* ---- app promo ---------------------------------------------------------- */
.promo{
  display:grid;grid-template-columns:.9fr 1.1fr;gap:32px;align-items:center;
  border:2px solid var(--accent-2);border-radius:var(--radius-lg);padding:28px;background:var(--surface);
}
.promo .phone{
  width:190px;aspect-ratio:9/18;margin:0 auto;border-radius:26px;border:8px solid #101010;
  background:linear-gradient(160deg,#e0f2fe,#fae8ff);position:relative;box-shadow:var(--shadow);
}
.promo .phone .dl{position:absolute;right:14px;bottom:16px;width:38px;height:38px;border-radius:999px;
  background:var(--btn-grad);color:#fff;display:flex;align-items:center;justify-content:center}
.promo h2{font-size:26px;line-height:32px;font-weight:700;margin-bottom:12px}
.promo p{color:var(--muted);font-size:14px;line-height:22px;margin-bottom:18px}
.install{display:inline-flex;align-items:center;gap:8px;padding:12px 22px;border-radius:8px;border:0;
  background:var(--pink-grad);color:#fff;font-size:15px;font-weight:600}

/* ---- faq ---------------------------------------------------------------- */
.faq{border:1px solid var(--line);border-radius:12px;overflow:hidden;background:var(--surface)}
.faq details{border-bottom:1px solid var(--line)}
.faq details:last-child{border-bottom:0}
.faq summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;
  gap:16px;padding:18px 20px;font-size:15px;line-height:22px}
.faq summary::-webkit-details-marker{display:none}
.faq summary .chev{flex:0 0 auto;color:var(--muted);transition:transform .25s ease}
.faq details[open] summary{font-weight:600}
.faq details[open] summary .chev{transform:rotate(180deg)}
.faq .answer{padding:0 20px 18px;color:var(--muted);font-size:14px;line-height:22px}

/* ---- footer ------------------------------------------------------------- */
.site-footer{background:var(--tint);border-top:1px solid var(--line);margin-top:56px;padding:36px 0 28px}
.footer-top{display:grid;grid-template-columns:1fr 2fr;gap:32px;align-items:start}
.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:8px 24px;font-size:13px}
.footer-links a{color:var(--blue)}
.footer-links a:hover{text-decoration:underline}
.footer-bottom{margin-top:26px;padding-top:18px;border-top:1px solid var(--line);text-align:center;
  font-size:13px;color:var(--muted);display:flex;flex-direction:column;gap:6px}
.footer-bottom a{color:var(--blue)}

/* ---- responsive --------------------------------------------------------- */
@media (max-width:900px){
  .features{grid-template-columns:repeat(2,1fr)}
  .promo{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr}
}
@media (max-width:680px){
  .hero{padding:20px 0 32px}
  .hero h1{font-size:27px;line-height:34px}
  .hero .sub{font-size:15px;line-height:23px}
  .search-row{flex-wrap:wrap}
  .field{flex:1 1 100%}
  .paste-btn,.dl-btn{flex:1 1 0;justify-content:center;height:52px;padding:0 16px}
  .field input{height:56px;font-size:16px}
  .step{grid-template-columns:1fr;gap:14px}
  .step .rail{display:none}
  .features,.benefits{grid-template-columns:1fr}
  .section{padding:40px 0}
  .section-title{font-size:22px;line-height:28px}
  .footer-links{grid-template-columns:repeat(2,1fr)}
}

/* ---- генерируемые страницы ---------------------------------------------- */
.step .shot{background:linear-gradient(135deg,#fce7f3,#e0e7ff)}
.step:nth-child(2) .shot{background:linear-gradient(135deg,#2563eb,#db2777)}
.step:nth-child(3) .shot{background:linear-gradient(135deg,#dbeafe,#fae8ff)}
.shot-label{padding:10px 20px;border-radius:8px;background:rgba(255,255,255,.92);color:#101010;
  font-size:14px;font-weight:600;box-shadow:var(--shadow-sm)}
.step:nth-child(2) .shot-label{background:var(--btn-grad);color:#fff}

.feature:nth-child(1) .cover{background:linear-gradient(135deg,#fbcfe8,#c7d2fe)}
.feature:nth-child(2) .cover{background:linear-gradient(135deg,#a5b4fc,#f0abfc)}
.feature:nth-child(3) .cover{background:linear-gradient(135deg,#fdba74,#f9a8d4)}
.feature:nth-child(4) .cover{background:linear-gradient(135deg,#f472b6,#a78bfa)}
.feature:nth-child(5) .cover{background:linear-gradient(135deg,#93c5fd,#ddd6fe)}
.feature:nth-child(6) .cover{background:linear-gradient(135deg,#fecaca,#bfdbfe)}

.page-head{padding-bottom:24px;text-align:center}
.page-head h1{font-size:36px;line-height:44px;font-weight:700}
.page-head .updated{margin-top:10px;color:var(--muted);font-size:14px}
.prose{max-width:760px}
.prose h2{font-size:20px;line-height:26px;font-weight:700;margin:26px 0 8px}
.prose p{color:var(--muted);font-size:15px;line-height:24px}
.prose .contact-mail{margin-top:26px;font-size:16px}
.prose .contact-mail a{color:var(--blue);font-weight:600}
.lang-menu a[aria-current="true"]{background:var(--surface-2);color:var(--fg);font-weight:600}

/* RTL: меняется только направление, палитра и сетка те же. */
[dir="rtl"] .step .rail::before{left:auto;right:50%}
[dir="rtl"] .prose,[dir="rtl"] .step p,[dir="rtl"] .benefit{text-align:right}

/* ================= страницы про сервисы: своя палитра ==================== */
.bp{
  --bp-ink:#0d2b2a;
  --bp-deep:#0b3b39;
  --bp-teal:#0f766e;
  --bp-mint:#14b8a6;
  --bp-amber:#f59e0b;
  --bp-sand:#fef7ec;
  --bp-line:#d9e7e5;
  --bp-card:#ffffff;
  --bp-muted:#4a635f;
  --bp-grad:linear-gradient(135deg,#0b3b39,#0f766e 55%,#14b8a6);
}
@media (prefers-color-scheme:dark){
  :root:not([data-theme="light"]) .bp{
    --bp-ink:#e9f5f3; --bp-sand:#12171c; --bp-line:#243330;
    --bp-card:#131b1a; --bp-muted:#9fb6b2;
  }
}
:root[data-theme="dark"] .bp{
  --bp-ink:#e9f5f3; --bp-sand:#12171c; --bp-line:#243330;
  --bp-card:#131b1a; --bp-muted:#9fb6b2;
}

.bp{color:var(--bp-ink)}
.bp .section{padding:64px 0}
.bp-title{
  text-align:center;font-size:30px;line-height:36px;font-weight:800;letter-spacing:-.02em;
  color:var(--bp-ink);margin-bottom:14px;
}
.bp-title::after{
  content:"";display:block;width:56px;height:4px;border-radius:99px;margin:14px auto 0;
  background:var(--bp-amber);
}
.bp-title-left{text-align:left}
.bp-title-left::after{margin-left:0}
.bp-lede{max-width:640px;margin:0 auto 34px;text-align:center;color:var(--bp-muted);font-size:15px;line-height:24px}

/* hero */
.bp-hero{background:var(--bp-grad);color:#fff;padding:56px 0 64px}
.bp-hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:40px;align-items:center}
.bp-kicker{
  display:inline-block;padding:5px 12px;border-radius:99px;font-size:12px;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;background:rgba(255,255,255,.16);margin-bottom:16px;
}
.bp-hero h1{font-size:40px;line-height:46px;font-weight:800;letter-spacing:-.02em}
.bp-sub{margin-top:14px;font-size:17px;line-height:27px;opacity:.94;max-width:520px}
.bp-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:26px}
.bp-cta{
  display:inline-flex;align-items:center;justify-content:center;padding:13px 26px;border-radius:10px;
  background:var(--bp-amber);color:#3b2606;font-weight:700;font-size:15px;
  transition:transform .2s ease,filter .2s ease;
}
.bp-cta:hover{transform:translateY(-1px);filter:brightness(1.05)}
.bp-ghost{
  display:inline-flex;align-items:center;padding:13px 22px;border-radius:10px;
  border:1px solid rgba(255,255,255,.45);color:#fff;font-weight:600;font-size:15px;
}
.bp-ghost:hover{background:rgba(255,255,255,.12)}
.bp-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:22px}
.bp-chip{
  padding:5px 11px;border-radius:8px;background:rgba(255,255,255,.14);
  font-size:12.5px;font-weight:600;
}
.bp-art img{width:100%;height:auto;max-width:420px;margin-inline:auto;filter:drop-shadow(0 18px 40px rgba(4,30,28,.32))}

/* шаги */
.bp-steps-wrap{background:var(--bp-sand)}
.bp-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:30px}
.bp-step{
  position:relative;background:var(--bp-card);border:1px solid var(--bp-line);border-radius:16px;
  padding:20px;transition:transform .25s ease,box-shadow .25s ease;
}
.bp-step:hover{transform:translateY(-3px);box-shadow:0 14px 34px rgba(11,59,57,.12)}
.bp-step img{width:100%;height:auto;border-radius:10px;margin-bottom:14px}
.bp-num{
  position:absolute;top:-12px;left:20px;width:30px;height:30px;border-radius:9px;
  background:var(--bp-teal);color:#fff;display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:800;
}
.bp-step h3{font-size:18px;line-height:24px;font-weight:700;margin-bottom:8px}
.bp-step p{color:var(--bp-muted);font-size:14px;line-height:22px}

/* возможности */
.bp-features{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:30px}
.bp-feature{
  background:var(--bp-card);border:1px solid var(--bp-line);border-left:4px solid var(--bp-mint);
  border-radius:12px;padding:18px 18px 18px 20px;
}
.bp-feature h3{font-size:16px;line-height:22px;font-weight:700;margin-bottom:6px}
.bp-feature p{color:var(--bp-muted);font-size:14px;line-height:21px}

/* что это такое */
.bp-about-wrap{background:var(--bp-sand)}
.bp-about{display:grid;grid-template-columns:.8fr 1.2fr;gap:44px;align-items:start}
.bp-about-art img{width:100%;height:auto;max-width:360px}
.bp-h3{font-size:17px;line-height:24px;font-weight:700;margin:22px 0 6px}
.bp-p{color:var(--bp-muted);font-size:15px;line-height:24px}

/* преимущества */
.bp-why{display:grid;grid-template-columns:repeat(2,1fr);gap:20px 34px;margin-top:30px}
.bp-why-item{display:flex;gap:12px;align-items:flex-start}
.bp-tick{
  flex:0 0 auto;width:26px;height:26px;border-radius:8px;background:var(--bp-teal);color:#fff;
  display:flex;align-items:center;justify-content:center;margin-top:2px;
}
.bp-why-item h3{font-size:16px;line-height:22px;font-weight:700;margin-bottom:4px}
.bp-why-item p{color:var(--bp-muted);font-size:14px;line-height:21px}

/* отзывы */
.bp-quotes-wrap{background:var(--bp-sand)}
.bp-quotes{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.bp-quote{
  margin:0;background:var(--bp-card);border:1px solid var(--bp-line);border-radius:14px;padding:20px;
}
.bp-quote h3{font-size:16px;line-height:22px;font-weight:700;margin-bottom:8px}
.bp-quote h3::before{
  content:"";display:block;width:26px;height:4px;border-radius:99px;
  background:var(--bp-amber);margin-bottom:12px;
}
.bp-quote p{margin:0;font-size:14.5px;line-height:23px;color:var(--bp-muted)}

/* faq и финал */
.bp-faq{max-width:760px;margin:26px auto 0;border-color:var(--bp-line)}
.bp-faq details{border-bottom-color:var(--bp-line)}
.bp-faq details[open]{background:var(--bp-sand)}
.bp-final{
  background:var(--bp-grad);color:#fff;border-radius:20px;padding:44px 32px;text-align:center;
}
.bp-final h2{font-size:28px;line-height:34px;font-weight:800;margin-bottom:12px}
.bp-final p{max-width:560px;margin:0 auto 24px;font-size:15px;line-height:24px;opacity:.94}

@media (max-width:900px){
  .bp-hero-grid,.bp-about{grid-template-columns:1fr;gap:28px}
  .bp-art{order:-1}
  .bp-steps,.bp-features,.bp-quotes{grid-template-columns:1fr}
  .bp-why{grid-template-columns:1fr}
  .bp-hero h1{font-size:31px;line-height:38px}
  .bp-title{font-size:25px;line-height:31px}
}

/* Форма на страницах про сервисы: во всю ширину контейнера, ниже сетки
   hero. В колонке поле сжималось и обрезало вставленную ссылку. */
.bp-hero-form{margin-top:30px}
.bp-hero-form .search-form{max-width:760px;margin:0}
.bp-hero-form .hero-note{color:rgba(255,255,255,.9)}
@media (max-width:900px){
  .bp-hero-form{margin-top:22px}
}
