/* ==========================================================
   ABOUT PREVIEW – BRAND STORY BLOCK
   Compatible with about_preview.php (Bootstrap layout)
========================================================== */

/* ==========================================================
   LOCAL TOKENS
========================================================== */
:root {
  --ap-accent: var(--mt-brand-primary);
  --ap-text-dark: #0a2540;
  --ap-text-muted: #6b7280;
  --ap-bg-soft: linear-gradient(180deg, #f8fafc 0%, #ffffff 70%);
  --ap-border: #e5e7eb;
  --ap-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* ==========================================================
   SECTION SHELL
========================================================== */
.about-enterprise {
  position: relative;
  padding: 120px 0;
  background: var(--ap-bg-soft);
  overflow: hidden;
}

/* subtle atmosphere */
.about-enterprise::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 65%;
  height: 65%;
  background: radial-gradient(
    circle,
    rgba(30,107,227,0.08),
    transparent 70%
  );
  pointer-events: none;
}

/* ==========================================================
   STORY CONTENT
========================================================== */
.about-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ap-accent);
  margin-bottom: 16px;
}

.about-enterprise .section-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  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: 28px;
}

/* ==========================================================
   FEATURES (STORY POINTS)
========================================================== */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 34px;
}

.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 → STORY HIGHLIGHTS
========================================================== */
.about-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 34px;
}

.about-stats .stat-item strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ap-text-dark);
}

.about-stats .stat-item span {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--ap-text-muted);
}

/* ==========================================================
   CTA
========================================================== */
.about-actions .btn {
  font-size: 0.8rem;
  padding: 10px 26px;
  border-radius: 999px;
}

/* ==========================================================
   VISUAL BLOCK
========================================================== */
.about-visual {
  position: relative;
  display: inline-block;
  padding: 14px;
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  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: 12px;
}

/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 991px) {

  .about-enterprise {
    padding: 90px 0;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 22px;
  }
}
/* ==========================================================
   ABOUT PREVIEW – CTA BUTTON FIX
========================================================== */

.about-actions .btn-primary {
  color: #ffffff !important;
  opacity: 1;
}

.about-actions .btn-primary:hover {
  color: #ffffff;
}
