/* ---------------- HERO ---------------- */
.hero-card {
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.hero-left {
  background: radial-gradient(120% 120% at 0% 0%, rgba(255,166,0,.25) 0%, rgba(255,166,0,.08) 38%, rgba(0,0,0,.02) 100%),
              linear-gradient(135deg, rgba(0,0,0,.04), rgba(0,0,0,.02));
  backdrop-filter: blur(3px);
  min-height: 380px;
}
.hero-left .badge-dot {
  width:.6rem;height:.6rem;border-radius:50%;
  display:inline-block;margin-right:.5rem;background:#28a745
}
.hero-cta { border-radius: 999px; }

/* ---------------- FIX NAVBAR  ---------------- */
#nav-spacer { width: 100%; }


/* --------------- SOLUTIONS --------------- */
.solutions-list .solution-card {
  border:0;
  border-radius: .9rem;
  box-shadow: 0 6px 22px rgba(0,0,0,.06);
  transition: .2s ease;
  overflow: hidden;
  background: #fff;
}
.solutions-list .solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}
.solutions-list .thumb {
  width: 320px; max-width: 36vw;
  height: 180px; object-fit: cover;
}
@media (max-width: 992px) {
  .solutions-list .thumb{width:100%;height:200px;}
}
.solutions-list .solution-title {
  font-weight: 700;
  color: #0b2239;
}
.solutions-list .more {
  font-weight: 600;
  color: #ff8f00;
  display: inline-flex; align-items: center; gap:.35rem;
}
.solutions-list .more .chev {
  transform: translateX(0); transition: transform .15s ease;
}
.solutions-list .solution-card:hover .more .chev { transform: translateX(3px); }

/* ============ Services ============ */
.services-grid {
  display: grid;
  gap: 1.25rem;
}
.service-card {
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  transition: .2s ease;
  position: relative;
  background: #fff;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}
.service-thumb{
  width:100%;
  height: 220px;
  object-fit: cover;
}
@media (min-width: 992px){
  .service-thumb{ height: 260px; }
}
.num-badge{
  position:absolute;
  top:.85rem; left:.85rem;
  z-index:2;
  display:inline-flex;
  align-items:center; justify-content:center;
  width:42px; height:42px;
  font-weight:700;
  border-radius:.9rem;
  background:#fff;
  color:#0b2239;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
}
.service-title{
  font-weight: 700;
  color:#0b2239;
}
.service-link{
  font-weight:600;
  color:#ff8f00;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
}
.service-link .chev{
  transform:translateX(0);
  transition: transform .15s ease;
}
.service-card:hover .service-link .chev{
  transform:translateX(3px);
}

/* ============ About ============ */
.about-title{
  font-weight:800;
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  color:#0b2239;
  margin:0;
}
.about-icons .about-item{
  display:flex;
  gap: .9rem;
  padding: 1rem;
  border-radius: .9rem;
  border:1px solid rgba(0,0,0,.06);
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  background:#fff;
}
.about-ico{
  width:52px; height:52px;
  border-radius: .8rem;
  background:#0b5aa70d; /* лёгкий синий */
  display:flex; align-items:center; justify-content:center;
}
.about-ico i{
  font-size: 28px;
  color:#0b5aa7;
}
.about-text h6{
  margin:0 0 .25rem 0;
  font-weight:700;
  color:#0b2239;
}



.hero-card{
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  overflow: hidden;     
  padding: 0;           
  height: auto;         
  min-height: 0;        
}


.hero-img-full{
  display: block;      
  width: 100%;
  height: auto;         
  border-radius: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, a, li, span, button, input, textarea {
  font-family: 'Exo 2', sans-serif !important;
}