/* Homepage company profile — scoped to .about_bg / .site-about */
.site-about.about_bg {
  --ab-navy: #0f2d6b;
  --ab-blue: #153f8f;
  --ab-deep: #093480;
  --ab-ink: #1a2332;
  --ab-muted: #6b7a90;
  --ab-line: rgba(21, 63, 143, 0.14);
  position: relative;
  padding: 56px 0;
  overflow: hidden;
  background-color: #0c244f;
  background-image:
    linear-gradient(120deg, rgba(12, 36, 79, 0.92) 0%, rgba(15, 45, 107, 0.88) 45%, rgba(21, 63, 143, 0.82) 100%),
    url(../images/about_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  font-family: "Barlow", "Segoe UI", sans-serif;
  color: rgba(255, 255, 255, 0.9);
}

.site-about.about_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 40%, rgba(74, 127, 212, 0.18), transparent 60%);
  pointer-events: none;
}

.site-about .container {
  position: relative;
  z-index: 1;
}

/* —— Head —— */
.site-about__head.about_head {
  margin: 0 auto 32px !important;
  text-align: center;
  max-width: 640px;
}

.site-about__head.about_head h2 {
  margin: 0 !important;
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #fff !important;
  text-transform: none;
}

.site-about__desc,
.site-about__head.about_head p.site-about__desc {
  margin: 10px 0 0 !important;
  font-size: 15px !important;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65) !important;
}

/* —— Two-column body —— */
.site-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px 48px;
  align-items: center;
}

.site-about__label {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ec5ff;
}

.site-about .about_h3 {
  margin: 0 0 18px !important;
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-size: 36px !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #fff !important;
  text-transform: none;
}

.site-about .about_econtent.site-about__content,
.site-about__content {
  margin: 0 0 28px !important;
  max-width: 36em;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.site-about__content p {
  margin: 0 0 0.85em;
  color: inherit;
}

.site-about__content p:last-child {
  margin-bottom: 0;
}

.site-about .about_btn.site-about__btn,
.site-about__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
  min-width: 160px;
  margin: 0 !important;
  padding: 12px 26px !important;
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ab-navy) !important;
  background: #fff !important;
  border-radius: 3px !important;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, gap 0.2s ease;
}

.site-about__btn:hover,
.site-about__btn:focus {
  background: #9ec5ff !important;
  color: var(--ab-navy) !important;
  gap: 12px;
  transform: translateY(-1px);
}

.site-about__btn:active {
  transform: scale(0.98);
}

/* —— Visual —— */
.site-about__figure {
  position: relative;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.site-about__figure::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #9ec5ff, var(--ab-blue));
  z-index: 1;
}

.site-about__figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
  transition: transform 0.5s ease;
}

.site-about__visual:hover .site-about__figure img {
  transform: scale(1.03);
}

@media screen and (max-width: 991px) {
  .site-about__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-about__visual {
    order: -1;
  }

  .site-about__head.about_head h2 {
    font-size: 34px;
  }

  .site-about .about_h3 {
    font-size: 30px !important;
  }
}

@media screen and (max-width: 767px) {
  .site-about.about_bg {
    padding: 40px 0;
  }

  .site-about__head.about_head {
    margin-bottom: 24px !important;
  }

  .site-about__head.about_head h2 {
    font-size: 28px;
  }

  .site-about .about_h3 {
    font-size: 26px !important;
  }

  .site-about .about_econtent.site-about__content {
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  .site-about .about_btn.site-about__btn {
    width: 100% !important;
  }
}
