/* ============================================================
   ABOUT PAGE STYLES - Frontora AI V2-Pre
   ============================================================ */

/* ---------- HERO ---------- */
.about-hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(16, 185, 129, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(16, 185, 129, 0.05), transparent 60%),
    var(--neutral-0);
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--brand-700);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 20px;
}

.about-h1 {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--neutral-900);
}

.about-h1-accent {
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about-lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--neutral-700, #404040);
  margin: 0 0 32px;
  max-width: 540px;
}

.about-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* hero visual card */
.about-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-hero-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
}

.about-hero-card {
  position: relative;
  z-index: 1;
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  padding: 32px;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 20px 40px -12px rgba(16, 185, 129, 0.18);
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 360px;
}

.about-hero-card-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-hero-card-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--brand-600);
  line-height: 1;
}

.about-hero-card-label {
  font-size: 13px;
  color: var(--neutral-600);
  line-height: 1.4;
}

.about-hero-card-divider {
  height: 1px;
  background: var(--neutral-200);
}

/* ---------- STORY ---------- */
.about-story {
  background: var(--neutral-950, #0a0a0a);
  color: white;
  padding: clamp(80px, 10vw, 120px) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.about-story-eyebrow span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--brand-500);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.about-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  color: white;
}

.about-h2 em {
  font-style: italic;
  color: var(--brand-500);
  font-weight: 700;
}

.about-h2-light {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 12px 0 0;
  color: var(--neutral-900);
}

.about-story-text p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--neutral-300, #d4d4d4);
  margin: 0 0 18px;
}

.about-story-text strong {
  color: white;
  font-weight: 600;
}

.about-story-emphasis {
  border-left: 3px solid var(--brand-500);
  padding-left: 20px;
  margin-top: 32px !important;
  color: white !important;
  font-weight: 500;
}

/* ---------- VALUES ---------- */
.about-values {
  background: var(--neutral-100, #f5f5f5);
  padding: clamp(80px, 10vw, 120px) 0;
}

.about-section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.about-value-card {
  background: white;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(16, 185, 129, 0.15);
}

.about-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--neutral-900);
}

.about-value-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--neutral-600);
  margin: 0;
}

/* ---------- TEAM ---------- */
.about-team {
  background: var(--neutral-0);
  padding: clamp(80px, 10vw, 120px) 0;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.about-team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--neutral-100);
  border-radius: 16px;
  border: 1px solid var(--neutral-200);
}

.about-team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.about-avatar-mo {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.about-avatar-usama {
  background: linear-gradient(135deg, #c4a35a 0%, #92753f 100%);
}

.about-avatar-mia {
  background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
}

.about-team-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--neutral-900);
}

.about-team-role {
  font-size: 14px;
  color: var(--brand-700);
  font-weight: 600;
  margin: 0 0 16px;
}

.about-team-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--neutral-600);
  margin: 0;
}

/* ---------- NUMBERS ---------- */
.about-numbers {
  background: var(--neutral-0, #ffffff);
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}

.about-numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}

.about-numbers-card {
  padding: 24px 12px;
}

.about-numbers-value {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: var(--brand-500);
  letter-spacing: -0.02em;
}

.about-numbers-unit {
  font-size: 0.55em;
  color: var(--brand-500);
  opacity: 0.7;
}

.about-numbers-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--neutral-700, #404040);
  margin-top: 8px;
  font-weight: 500;
}

/* ---------- FINAL CTA ---------- */
.about-final-cta {
  background: var(--neutral-0, #ffffff);
  padding: clamp(80px, 10vw, 120px) 0;
  color: var(--neutral-900);
  border-top: 1px solid var(--neutral-200);
}

.about-final-cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

/* about-final-cta .about-eyebrow now uses default emerald style */

.about-final-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--neutral-900);
  letter-spacing: -0.015em;
}

.about-final-h2 em {
  font-style: italic;
}

.about-final-sub {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--neutral-600, #525252);
  margin: 0;
  max-width: 540px;
}

.about-final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.btn-large {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-ghost-light {
  background: transparent;
  border: 1.5px solid var(--neutral-300, #d4d4d4);
  color: var(--neutral-700);
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-ghost-light:hover {
  background: var(--neutral-100);
  border-color: var(--brand-500);
  color: var(--brand-700);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-hero-card { max-width: 100%; }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-final-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .about-final-cta-actions {
    align-items: center;
  }
}

@media (max-width: 540px) {
  .about-hero-actions { flex-direction: column; align-items: stretch; }
  .about-hero-actions .btn { justify-content: center; }
  .about-h1 { font-size: 36px; }
  .about-h2, .about-h2-light { font-size: 28px; }
}
