/* =========================
   SECTIONS: hero, blocks
========================= */

/* service block */
.service-block{
  padding: 70px 0;
  background: #f8f9fa;
}

.service-block__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-block__image img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.service-block__title{
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.service-block__text{
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 14px;
  color: #333;
}

.service-block__list{
  margin-top: 18px;
  padding-left: 18px;
}

.service-block__list li{
  margin-bottom: 8px;
  line-height: 1.5;
}

@media (max-width: 900px){
  .service-block__container{ grid-template-columns: 1fr; }
  .service-block__title{ font-size: 26px; }
}
/* =========================
   INTERNAL PAGE FRAME
========================= */
.page-hero{
  padding: 44px 0 22px;
  background:
    radial-gradient(1000px 380px at 20% 0%, rgba(29,78,216,.12), transparent 60%),
    linear-gradient(to bottom, rgba(255,255,255,.85), rgba(255,255,255,0));
  border-bottom: 1px solid var(--border);
}

.page-hero p{
  max-width: 820px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.page-content{
  padding: 34px 0 72px;
}
.page-hero__grid{
  display: grid;
  grid-template-columns: 1.2fr .85fr;
  gap: 26px;
  align-items: start;
}
.page-hero__kicker{
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 10px;
}
.page-hero__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.page-hero__meta{
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 1100px){
  .page-hero__grid{ grid-template-columns: 1fr; }
}
/* =========================
   HOME: HERO + CARDS + REQUEST + FAQ
========================= */

.hero{
  padding: 46px 0 26px;
  background:
    radial-gradient(1100px 420px at 18% 0%, rgba(29,78,216,.12), transparent 60%),
    linear-gradient(to bottom, rgba(255,255,255,.85), rgba(255,255,255,0));
  border-bottom: 1px solid var(--border);
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 28px;
  align-items: start;
}

.hero__kicker{ color: var(--text-muted); font-size: 13px; margin-bottom: 10px; }
.hero__title{ margin: 0 0 12px; font-size: 42px; line-height: 1.1; letter-spacing:-.02em; }
.hero__subtitle{ margin: 0 0 14px; color: var(--text-muted); max-width: 720px; }

.hero__bullets{
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--text-main);
}
.hero__bullets li{ margin: 8px 0; line-height: 1.55; }
.hero__bullets strong{ color: var(--blue-dark); }

.hero__cta{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }
.hero__meta{ margin-top: 14px; color: var(--text-muted); font-size: 13px; }

.hero__right{ display:flex; justify-content:flex-end; }

.route-card{
  width: 100%;
  max-width: 420px;
  background:
    radial-gradient(600px 220px at 20% 20%, rgba(29,78,216,.10), transparent 60%),
    radial-gradient(600px 220px at 80% 80%, rgba(249,115,22,.10), transparent 60%),
    #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 16px;
}


.route-title{ font-weight: 900; color: var(--blue-dark); margin-bottom: 10px; }

.route-line{
  display:grid;
  gap: 12px;
  padding: 10px 6px 12px;
  border-radius: 14px;
  background: rgba(29,78,216,.04);
  position: relative;
}

.route-point{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 4px;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(29,78,216,.12);
}
.dot--accent{
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(249,115,22,.14);
}

.label .name{ font-weight: 900; color: var(--blue-dark); }
.label .desc{ font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.route-footer{ display:flex; gap: 8px; flex-wrap:wrap; margin-top: 10px; }
.badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
}

.section-head h2{ margin: 0 0 8px; }
.section-head p{ margin: 0 0 14px; }

.section--soft{ background: rgba(255,255,255,.55); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

.cards{
  display:grid;
  gap: 14px;
}
.cards--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.cards--4{ grid-template-columns: repeat(4, minmax(0,1fr)); }

.cardx{
  display:block;
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.cardx:hover{
  transform: translateY(-2px);
  border-color: rgba(29,78,216,.22);
  box-shadow: var(--shadow-md);
}
.cardx--static:hover{ transform:none; border-color: var(--border); box-shadow: var(--shadow-sm); }

.cardx__title{ font-weight: 900; color: var(--blue-dark); margin-bottom: 8px; }
.cardx__text{ color: var(--text-muted); line-height: 1.55; margin: 0 0 10px; font-size: 14px; }
.cardx__more{ color: var(--blue); font-weight: 900; font-size: 13px; }

.cardx__step{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(29,78,216,.10);
  color: var(--blue-dark);
  font-weight: 900;
  margin-bottom: 10px;
}

.request{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}

.form{ margin-top: 12px; }
.form__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.form input{
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  outline: none;
}
.form input:focus{
  border-color: rgba(29,78,216,.35);
  box-shadow: 0 0 0 4px rgba(29,78,216,.10);
}

.form__note{ margin-top: 10px; color: var(--text-muted); font-size: 12px; }

.mini-route{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.mini-route__title{ font-weight: 900; color: var(--blue-dark); margin-bottom: 10px; }
.mini-route__item{
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(29,78,216,.06);
  color: var(--blue-dark);
  font-weight: 700;
  margin-top: 8px;
}

.faq{ display:grid; gap: 10px; }
.faq__item{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  box-shadow: var(--shadow-sm);
  overflow:hidden;
}
.faq__item summary{
  cursor:pointer;
  padding: 14px 16px;
  font-weight: 900;
  color: var(--blue-dark);
  list-style: none;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__body{
  padding: 0 16px 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contacts{
  display:grid;
  grid-template-columns: 1fr;
}
.contacts__card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.contacts__label{ color: var(--text-muted); font-size: 13px; }
.contacts__phone{ display:inline-block; margin-top: 8px; font-weight: 900; font-size: 20px; color: var(--blue-dark); }

@media (max-width: 1100px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__right{ justify-content:flex-start; }
  .cards--4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cards--3{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .request{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .hero__title{ font-size: 32px; }
  .cards--4,.cards--3{ grid-template-columns: 1fr; }
  .form__grid{ grid-template-columns: 1fr; }
}
/* =========================
   FOOTER
========================= */
.site-footer{
  margin-top: 30px;
  background: #0b2a58;
  color: rgba(255,255,255,.9);
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  padding: 34px 0 22px;
}

.footer__logo{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer__logo img{
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: brightness(1.2);
}

.footer__title{
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer__sub{
  font-size: 12px;
  opacity: .75;
  margin-top: 2px;
}

.footer__text{
  margin-top: 12px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  max-width: 520px;
}

.footer__col a{
  display:block;
  margin-top: 10px;
  color: rgba(255,255,255,.86);
  opacity: .92;
}
.footer__col a:hover{ opacity: 1; text-decoration: underline; }

.footer__head{
  font-weight: 900;
  margin-bottom: 6px;
}
.footer__muted{ font-size: 12px; opacity: .75; }

.footer__phone{
  font-size: 18px;
  font-weight: 900;
  margin-top: 8px;
}
.footer__cta{
  margin-top: 10px;
  font-weight: 900;
  color: #fff;
}

.footer__bottom{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.footer__links a{ color: rgba(255,255,255,.72); }
.footer__links a:hover{ color:#fff; }

@media (max-width: 980px){
  .footer__grid{ grid-template-columns: 1fr; }
  .footer__bottom{ flex-direction: column; }
}
/* ===== Work: steps ===== */
.steps{
  display: grid;
  gap: 12px;
}

.step-card{
  background:#fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 14px 14px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: start;
}

.step-num{
  font-weight: 900;
  font-size: 22px;
  color: var(--blue-dark);
  background: rgba(29,78,216,.10);
  border-radius: 14px;
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.step-num--accent{
  background: rgba(249,115,22,.12);
  color: #7a2e00;
}

.step-title{
  font-weight: 900;
  color: var(--blue-dark);
  margin: 2px 0 8px;
}

.step-text{
  color: var(--text-muted);
  line-height: 1.65;
}

.step-points{
  margin-top: 10px;
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
}

@media (max-width: 640px){
  .step-card{
    grid-template-columns: 1fr;
  }
  .step-num{
    width: 86px;
  }
}
