﻿/* ============================================================
   ABOUT PAGE — LIGHT THEME (violet/cyan design system)
   ============================================================ */

/* ─── UTILITIES ─────────────────────────────────────────── */
.ab-eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #6B46FA;
  background: rgba(107,70,250,0.08);
  padding: 0.35rem 0.9rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.ab-eyebrow--light { color: #F1EEFF; background: rgba(255,255,255,0.15); }
.ab-accent { color: #6B46FA; }
.ab-section-header { text-align: center; max-width: 580px; margin: 0 auto 3.5rem; }
.ab-section-header h2 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; color: #1A0F42; margin-bottom: 0.6rem; line-height: 1.2; }
.ab-section-header p { color: #7B6FAA; font-size: 1.05rem; line-height: 1.65; }

/* ─── 1. HERO ────────────────────────────────────────────── */
.ab-hero {
  min-height: 90vh; display: flex; align-items: center;
  padding: 7rem 0 4rem; background: #F7F5FF;
  position: relative; overflow: hidden;
}
.ab-hero::before {
  content: ''; position: absolute; top: -150px; right: -100px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(107,70,250,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.ab-hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(8,145,178,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ab-hero__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.ab-hero__text h1 {
  font-size: clamp(2.2rem,5vw,3.5rem); font-weight: 800;
  color: #1A0F42; line-height: 1.12; margin-bottom: 1.2rem;
}
.ab-hero__text > p {
  font-size: 1.1rem; color: #3D2B8A; line-height: 1.72;
  max-width: 460px; margin-bottom: 2rem;
}
.ab-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.ab-hero__stats {
  display: flex; align-items: center; gap: 1.8rem;
  padding-top: 2rem; border-top: 1px solid rgba(107,70,250,0.15);
}
.ab-stat__num {
  display: block; font-size: 1.9rem; font-weight: 800;
  color: #6B46FA; line-height: 1; margin-bottom: 0.25rem;
}
.ab-stat__lbl {
  font-size: 0.75rem; color: #7B6FAA; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.ab-stat-divider { width: 1px; height: 44px; background: rgba(107,70,250,0.18); flex-shrink: 0; }

.ab-hero__visual {
  position: relative; height: 440px;
  display: flex; align-items: center; justify-content: center;
}
.ab-blob {
  position: absolute; width: 340px; height: 340px;
  background: linear-gradient(135deg, #6B46FA 0%, #A78BFA 50%, #22D3EE 100%);
  border-radius: 40% 60% 55% 45% / 45% 55% 60% 40%;
  opacity: 0.13; animation: ab-morph 12s ease-in-out infinite;
}
@keyframes ab-morph {
  0%,100% { border-radius: 40% 60% 55% 45% / 45% 55% 60% 40%; }
  33%     { border-radius: 60% 40% 45% 55% / 55% 45% 40% 60%; }
  66%     { border-radius: 45% 55% 60% 40% / 40% 60% 55% 45%; }
}
.ab-monogram {
  position: relative; z-index: 2; font-size: 5rem; font-weight: 900;
  background: linear-gradient(135deg, #6B46FA, #0891B2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -0.03em; user-select: none;
}
.ab-float {
  position: absolute; display: flex; align-items: center; gap: 0.5rem;
  background: #FFFFFF; border: 1px solid rgba(107,70,250,0.15);
  border-radius: 12px; padding: 0.55rem 0.95rem;
  font-size: 0.82rem; font-weight: 600; color: #1A0F42;
  box-shadow: 0 6px 24px rgba(107,70,250,0.1); z-index: 3; white-space: nowrap;
}
.ab-float i { color: #6B46FA; font-size: 0.9rem; }
.ab-float--1 { top: 50px; left: -10px; animation: ab-float-a 4.2s ease-in-out infinite; }
.ab-float--2 { bottom: 70px; right: -5px; animation: ab-float-a 4.6s ease-in-out infinite; animation-delay: 1.5s; }
.ab-float--3 { top: 45%; right: 5px; animation: ab-float-b 4s ease-in-out infinite; animation-delay: 0.7s; }
@keyframes ab-float-a {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
@keyframes ab-float-b {
  0%,100% { transform: translateY(-50%); }
  50%     { transform: translateY(calc(-50% - 10px)); }
}
/* ─── 2. OUR STORY ───────────────────────────────────────── */
.ab-story { padding: 7rem 0; background: #FFFFFF; }
.ab-story__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center; }
.ab-card-stack { position: relative; height: 320px; max-width: 300px; margin: 0 auto; }
.ab-card-stack__back, .ab-card-stack__mid, .ab-card-stack__front { position: absolute; width: 100%; border-radius: 22px; }
.ab-card-stack__back { height: 260px; background: linear-gradient(135deg,#A78BFA,#6B46FA); opacity: 0.28; bottom: 0; transform: rotate(-7deg); }
.ab-card-stack__mid  { height: 272px; background: linear-gradient(135deg,#0891B2,#6B46FA); opacity: 0.45; bottom: 12px; transform: rotate(-2.5deg); }
.ab-card-stack__front {
  height: 285px; background: linear-gradient(135deg,#6B46FA 0%,#A78BFA 100%);
  bottom: 22px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.1rem; color: #FFFFFF;
}
.ab-card-stack__front i { font-size: 3.5rem; opacity: 0.88; }
.ab-card-stack__front p { font-size: 1.05rem; font-weight: 700; margin: 0; color: rgba(255,255,255,0.9); }
.ab-story__content h2 { font-size: clamp(1.7rem,3.5vw,2.4rem); font-weight: 800; color: #1A0F42; margin-bottom: 1.2rem; line-height: 1.18; }
.ab-story__content > p { color: #3D2B8A; line-height: 1.75; margin-bottom: 1rem; }
.ab-quote { margin-top: 2rem; padding: 1.5rem 1.5rem 1.5rem 1.8rem; border-left: 4px solid #6B46FA; background: rgba(107,70,250,0.05); border-radius: 0 14px 14px 0; }
.ab-quote p { font-style: italic; color: #3D2B8A; font-size: 0.98rem; line-height: 1.65; margin-bottom: 0.6rem; }
.ab-quote cite { font-size: 0.8rem; color: #6B46FA; font-weight: 700; font-style: normal; }

/* ─── 3. TIMELINE ────────────────────────────────────────── */
.ab-timeline { padding: 7rem 0; background: #F7F5FF; }
.ab-tl__track { position: relative; max-width: 780px; margin: 0 auto; }
.ab-tl__line {
  position: absolute; left: 50%; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, #6B46FA 0%, rgba(107,70,250,0.08) 100%);
  transform: translateX(-50%); border-radius: 3px;
}
.ab-tl__items { position: relative; z-index: 2; }
.ab-tl__item {
  display: flex; justify-content: flex-end;
  padding-right: calc(50% + 2.2rem); padding-left: 0;
  margin-bottom: 2.5rem; position: relative;
}
.ab-tl__item--right { justify-content: flex-start; padding-left: calc(50% + 2.2rem); padding-right: 0; }
.ab-tl__dot {
  position: absolute; left: 50%; top: 1.3rem;
  width: 14px; height: 14px; background: #6B46FA;
  border: 3px solid #F7F5FF; border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(107,70,250,0.18); z-index: 4;
}
.ab-tl__dot--now {
  width: 20px; height: 20px;
  background: linear-gradient(135deg,#6B46FA,#0891B2);
  box-shadow: 0 0 0 5px rgba(107,70,250,0.18), 0 0 20px rgba(107,70,250,0.35);
}
.ab-tl__card {
  background: #FFFFFF; border: 1px solid rgba(107,70,250,0.1);
  border-radius: 16px; padding: 1.4rem 1.6rem; max-width: 290px;
  box-shadow: 0 2px 18px rgba(107,70,250,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ab-tl__card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(107,70,250,0.12); }
.ab-tl__card--highlight { background: linear-gradient(135deg,#6B46FA 0%,#A78BFA 100%); border-color: transparent; }
.ab-tl__card--highlight .ab-tl__year,
.ab-tl__card--highlight h3,
.ab-tl__card--highlight p { color: #FFFFFF; }
.ab-tl__card--now { border-color: rgba(107,70,250,0.35); background: linear-gradient(135deg,#EDE8FF,#F7F5FF); }
.ab-tl__year { display: flex; align-items: center; gap: 0.5rem; font-size: 1.15rem; font-weight: 800; color: #6B46FA; margin-bottom: 0.4rem; }
.ab-now-badge {
  font-size: 0.62rem; background: #6B46FA; color: #FFFFFF;
  padding: 0.12rem 0.5rem; border-radius: 999px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
}
.ab-tl__card h3 { font-size: 1rem; font-weight: 700; color: #1A0F42; margin-bottom: 0.3rem; }
.ab-tl__card p { font-size: 0.87rem; color: #7B6FAA; line-height: 1.56; margin: 0; }
/* ─── 4. MISSION & VALUES ────────────────────────────────── */
.ab-mission { padding: 7rem 0; background: #FFFFFF; }
.ab-mission__statement { max-width: 660px; margin: -0.5rem auto 3.5rem; text-align: center; }
.ab-mission__statement p {
  font-size: 1.2rem; font-weight: 500; color: #3D2B8A; line-height: 1.65;
  padding: 2rem 2.5rem; background: rgba(107,70,250,0.05);
  border-radius: 18px; border: 1px solid rgba(107,70,250,0.1);
}
.ab-values__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.ab-value-card {
  background: #F7F5FF; border: 1px solid rgba(107,70,250,0.1);
  border-top: 4px solid #6B46FA; border-radius: 18px;
  padding: 2rem 1.5rem; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ab-value-card:nth-child(2) { border-top-color: #0891B2; }
.ab-value-card:nth-child(3) { border-top-color: #A78BFA; }
.ab-value-card:nth-child(4) { border-top-color: #6B46FA; }
.ab-value-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(107,70,250,0.1); }
.ab-value-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(107,70,250,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: #6B46FA; margin: 0 auto 1.2rem;
}
.ab-value-card h3 { font-size: 1rem; font-weight: 700; color: #1A0F42; margin-bottom: 0.55rem; }
.ab-value-card p  { font-size: 0.88rem; color: #7B6FAA; line-height: 1.6; }

/* ─── 5. SERVICES ────────────────────────────────────────── */
.ab-services { padding: 7rem 0; background: #F0EDFF; }
.ab-services__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.ab-svc-card {
  background: #FFFFFF; border: 1px solid rgba(107,70,250,0.1);
  border-radius: 18px; padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ab-svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,#6B46FA,#0891B2);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.ab-svc-card:hover::after { transform: scaleX(1); }
.ab-svc-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(107,70,250,0.12); }
.ab-svc-card__num { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(107,70,250,0.35); margin-bottom: 0.85rem; }
.ab-svc-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(107,70,250,0.1), rgba(8,145,178,0.07));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #6B46FA; margin-bottom: 1.1rem;
}
.ab-svc-card h3 { font-size: 1.02rem; font-weight: 700; color: #1A0F42; margin-bottom: 0.5rem; }
.ab-svc-card p  { font-size: 0.88rem; color: #7B6FAA; line-height: 1.6; }
.ab-services__cta { text-align: center; }

/* ─── 6. WHY CHOOSE ──────────────────────────────────────── */
.ab-why { padding: 7rem 0; background: #FFFFFF; }
.ab-why__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.5rem; }
.ab-why-card {
  padding: 2rem 1.4rem; border-radius: 18px;
  background: #F7F5FF; border: 1px solid rgba(107,70,250,0.08);
  text-align: center; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ab-why-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(107,70,250,0.1); border-color: rgba(107,70,250,0.3); }
.ab-why-card__icon {
  font-size: 2.2rem;
  background: linear-gradient(135deg,#6B46FA,#0891B2);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; margin-bottom: 1.2rem;
}
.ab-why-card h3 { font-size: 0.95rem; font-weight: 700; color: #1A0F42; margin-bottom: 0.55rem; }
.ab-why-card p  { font-size: 0.85rem; color: #7B6FAA; line-height: 1.6; }

/* ─── 7. CTA ─────────────────────────────────────────────── */
.ab-cta {
  padding: 8rem 2rem;
  background: linear-gradient(135deg,#1A0F42 0%,#2E1A8E 50%,#1A0F42 100%);
  text-align: center; position: relative; overflow: hidden;
}
.ab-cta__glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 320px;
  background: radial-gradient(ellipse, rgba(107,70,250,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.ab-cta__inner { position: relative; z-index: 2; }
.ab-cta h2 { font-size: clamp(2rem,5vw,3.2rem); font-weight: 800; color: #F1EEFF; margin-bottom: 1rem; margin-top: 0.75rem; }
.ab-cta p  { font-size: 1.1rem; color: #C4B5FD; max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.65; }
.ab-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.ab-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; font-family: inherit;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.35);
  color: #F1EEFF; background: transparent;
  transition: background 0.25s, border-color 0.25s;
}
.ab-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .ab-why__grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1024px) {
  .ab-hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .ab-hero__visual { height: 300px; }
  .ab-blob { width: 260px; height: 260px; }
  .ab-monogram { font-size: 3.8rem; }
  .ab-services__grid { grid-template-columns: repeat(2,1fr); }
  .ab-values__grid  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .ab-story__inner { grid-template-columns: 1fr; gap: 3rem; }
  .ab-tl__line { left: 18px; transform: none; }
  .ab-tl__dot  { left: 18px; transform: none; }
  .ab-tl__item,
  .ab-tl__item--right { padding: 0 0 0 48px; justify-content: flex-start; }
  .ab-tl__card { max-width: 100%; }
  .ab-services__grid { grid-template-columns: 1fr; }
  .ab-values__grid   { grid-template-columns: repeat(2,1fr); }
  .ab-why__grid      { grid-template-columns: repeat(2,1fr); }
  .ab-hero__stats    { flex-wrap: wrap; gap: 1rem; }
  .ab-float--3 { display: none; }
}
@media (max-width: 480px) {
  .ab-hero__text h1 { font-size: 2.1rem; }
  .ab-values__grid  { grid-template-columns: 1fr; }
  .ab-why__grid     { grid-template-columns: 1fr; }
  .ab-mission__statement p { padding: 1.5rem; font-size: 1.05rem; }
}