.ls-company h1.title-page { margin: 0; }
.ls-company__muted { color: #6a7a89; }
.ls-company__hero {
  background: #ffffff;
  border: 1px solid #e7eaef;
  border-radius: 14px;
  padding: 22px 22px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.04);
}
.ls-company__hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 992px) {
  .ls-company__hero-grid { grid-template-columns: 1fr; }
}

.ls-company__lead {
  margin: 10px 0 0;
  line-height: 1.7;
}

.ls-company__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.ls-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #f9fcff;
  border: 1px solid #e7eaef;
  color: #2b3a45;
  font-size: 14px;
}
.ls-chip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0179B9;
}
.ls-chip--green .ls-chip__dot { background: #4DB45E; }

.ls-company__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 576px) {
  .ls-company__stats { grid-template-columns: 1fr; }
}
.ls-stat {
  background: #ffffff;
  border: 1px solid #e7eaef;
  border-radius: 12px;
  padding: 14px 14px;
}
.ls-stat__num {
  font-weight: 700;
  font-size: 22px;
  color: #2b3a45;
  line-height: 1.1;
}
.ls-stat__label {
  margin-top: 6px;
  color: #6a7a89;
  font-size: 14px;
}

.ls-company__section { margin-top: 18px; }
.ls-company__h2 {
  margin: 18px 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #2b3a45;
  display: flex;
  gap: 10px;
  align-items: center;
}
.ls-company__h2:before {
  content: "";
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: #0179B9;
}

.ls-company__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 992px) { .ls-company__cards { grid-template-columns: 1fr; } }

.ls-card {
  background: #ffffff;
  border: 1px solid #e7eaef;
  border-radius: 14px;
  padding: 16px 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.03);
}
.ls-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #2b3a45;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ls-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f2f8ff;
  border: 1px solid #e7eaef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ls-card__icon:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #0179B9;
}
.ls-card--green .ls-card__icon { background: #f3fff7; }
.ls-card--green .ls-card__icon:before { background: #4DB45E; }

.ls-card p { margin: 0; color: #415160; line-height: 1.65; }

.ls-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 992px) { .ls-links { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .ls-links { grid-template-columns: 1fr; } }

.ls-link-tile {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e7eaef;
  border-radius: 14px;
  padding: 14px 14px;
  color: #2b3a45;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.ls-link-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(1,121,185,0.35);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.ls-link-tile__top { display: flex; align-items: center; gap: 10px; }
.ls-link-tile__badge {
  width: 10px; height: 10px; border-radius: 50%;
  background: #0179B9;
}
.ls-link-tile--green .ls-link-tile__badge { background: #4DB45E; }
.ls-link-tile__title { font-weight: 800; }
.ls-link-tile__sub { margin-top: 6px; color: #6a7a89; font-size: 14px; line-height: 1.5; }

.ls-cta {
  margin-top: 18px;
  background: #f9fcff;
  border: 2px solid #0095da;
  border-radius: 14px;
  padding: 18px 18px;
}
.ls-cta__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: center;
}
@media (max-width: 992px) { .ls-cta__grid { grid-template-columns: 1fr; } }

.ls-cta__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: #0179B9;
}
.ls-cta__text { margin: 0; color: #2b3a45; line-height: 1.65; }

.ls-cta__right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.ls-cta__phone {
  font-size: 18px;
  font-weight: 900;
  color: #2b3a45;
  text-decoration: none;
}
.ls-cta__phone:hover { color: #0179B9; }

.ls-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(1,121,185,0.45);
  background: transparent;
  color: #0179B9;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.ls-cta__btn:hover {
  background: rgba(1,121,185,0.07);
  border-color: rgba(1,121,185,0.75);
  transform: translateY(-1px);
}

.ls-company .ls-cta a.ls-cta__btn,
.ls-company .ls-cta .ls-cta__btn {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;

  background: #0179B9 !important;
  border: 1px solid #0179B9 !important;
  color: #fff !important;

  padding: 12px 18px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  line-height: 1.1 !important;
}

.ls-company .ls-cta a.ls-cta__btn:hover,
.ls-company .ls-cta .ls-cta__btn:hover {
  background: #016aa3 !important;
  border-color: #016aa3 !important;
  color: #fff !important;
}
