/* ==========================================================
   ABOUT PREVIEW – CVAC BRAND STORY
   Compatible with about_preview.php (Bootstrap layout)
========================================================== */

/* ==========================================================
   LOCAL TOKENS (CVAC ORANGE)
========================================================== */
:root {
  --ap-accent: var(--mt-brand-primary);

  --ap-text-dark: var(--mt-text-dark);
  --ap-text-muted: var(--mt-text-muted);

  --ap-bg-soft: linear-gradient(180deg, #f8fafc 0%, #ffffff 70%);
  --ap-border: var(--mt-border-color);
  --ap-shadow: 0 22px 48px rgba(0,0,0,0.10);
}

/* ==========================================================
   SECTION SHELL
========================================================== */
.about-enterprise {
  position: relative;
  padding: 120px 0;
  background: var(--ap-bg-soft);
  overflow: hidden;
}

/* subtle atmosphere – ORANGE HEAT */
.about-enterprise::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 65%;
  height: 65%;
  background: radial-gradient(
    circle,
    rgba(225,90,31,0.10),
    transparent 70%
  );
  pointer-events: none;
}

/* ==========================================================
   STORY CONTENT
========================================================== */
.about-eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ap-accent);
  margin-bottom: 16px;
}

.about-enterprise .section-title {
  font-size: clamp(2.05rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.3px;
  color: var(--ap-text-dark);
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ap-text-muted);
  max-width: 520px;
  margin-bottom: 30px;
}

/* ==========================================================
   FEATURES (ENGINEERING STORY POINTS)
========================================================== */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ap-text-muted);
}

.about-feature i {
  color: var(--ap-accent);
  font-size: 0.85rem;
}

/* ==========================================================
   STATS → TRUST HIGHLIGHTS
========================================================== */
.about-stats {
  display: flex;
  gap: 34px;
  margin-bottom: 36px;
}

.about-stats .stat-item strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ap-text-dark);
}

.about-stats .stat-item span {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--ap-text-muted);
}

/* ==========================================================
   CTA
========================================================== */
.about-actions .btn {
  font-size: 0.82rem;
  padding: 11px 28px;
  border-radius: 999px;
  font-weight: 700;
}

.about-actions .btn-primary {
  color: #ffffff !important;
}

.about-actions .btn-primary:hover {
  color: #ffffff;
}

/* ==========================================================
   VISUAL BLOCK
========================================================== */
.about-visual {
  position: relative;
  display: inline-block;
  padding: 14px;
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  border: 1px solid var(--ap-border);
  box-shadow: var(--ap-shadow);
  backdrop-filter: blur(6px);
}

.about-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 991px) {

  .about-enterprise {
    padding: 90px 0;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 22px;
  }
}
