
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── UNIQUE prefix: abt__ ── */
:root {
  --abt-navy:    #080d1a;
  --abt-navy2:   #0d1425;
  --abt-navy3:   #111c33;
  --abt-blue:    #2563eb;
  --abt-blue2:   #1d4ed8;
  --abt-blue-t:  rgba(37,99,235,0.10);
  --abt-blue-t2: rgba(37,99,235,0.06);
  --abt-teal:    #0891b2;
  --abt-white:   #ffffff;
  --abt-text:    #0f172a;
  --abt-muted:   #64748b;
  --abt-light:   #f8fafc;
  --abt-border:  #e2e8f0;
  --abt-border2: rgba(255,255,255,0.07);
  --abt-gold:    #f59e0b;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--abt-white);
}

/* ═══════════════════════
   HERO — DARK
═══════════════════════ */
.abt__hero {
  background: var(--abt-navy);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.abt__hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 70%);
}

.abt__hero-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.6), rgba(8,145,178,0.35), transparent);
}

.abt__hero-circle1 {
  position: absolute;
  top: -160px; right: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.abt__hero-circle2 {
  position: absolute;
  bottom: -120px; left: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.abt__hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.abt__hero-left {}

.abt__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding: 5px 14px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.22);
  border-radius: 20px;
}

.abt__eyebrow-dot {
  width: 6px; height: 6px;
  background: #60a5fa;
  border-radius: 50%;
  animation: abt-pulse 2s infinite;
}

@keyframes abt-pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.abt__hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--abt-white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
}

.abt__hero-title em {
  font-style: normal;
  color: #60a5fa;
}

.abt__hero-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.78;
  margin-bottom: 2rem;
}

.abt__hero-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.abt__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--abt-blue);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 10px;
  transition: background 0.18s, transform 0.14s, box-shadow 0.2s;
}

.abt__btn-primary:hover {
  background: var(--abt-blue2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,99,235,0.38);
}

.abt__btn-primary svg { width: 15px; height: 15px; transition: transform 0.18s; }
.abt__btn-primary:hover svg { transform: translateX(3px); }

.abt__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.18s, color 0.18s;
}

.abt__btn-ghost:hover { border-color: rgba(255,255,255,0.22); color: #fff; }

/* Right — Visual card stack */
.abt__hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.abt__info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s, border-color 0.2s;
}

.abt__info-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(37,99,235,0.25);
}

.abt__info-icon {
  width: 46px; height: 46px;
  background: var(--abt-blue-t);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(37,99,235,0.18);
}

.abt__info-icon svg { width: 22px; height: 22px; stroke: #60a5fa; fill: none; stroke-width: 1.8; }

.abt__info-text {}
.abt__info-label { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.3); letter-spacing: 1.5px; text-transform: uppercase; }
.abt__info-val { font-size: 15px; font-weight: 700; color: var(--abt-white); margin-top: 2px; line-height: 1.3; }
.abt__info-sub { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 1px; }

/* Hero stat row */
.abt__hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--abt-border2);
  margin-top: 4rem;
  padding-top: 2.5rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.abt__hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 2rem;
  border-right: 1px solid var(--abt-border2);
  text-align: center;
}

.abt__hstat:last-child { border-right: none; }
.abt__hstat-num { font-size: 2rem; font-weight: 900; color: var(--abt-white); letter-spacing: -1px; line-height: 1; }
.abt__hstat-num span { color: #60a5fa; }
.abt__hstat-label { font-size: 11.5px; color: rgba(255,255,255,0.32); font-weight: 500; }

/* ═══════════════════════
   STORY SECTION
═══════════════════════ */
.abt__story {
  background: var(--abt-white);
  padding: 6rem 2rem;
}

.abt__story-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Left visual */
.abt__story-visual {
  position: relative;
}

.abt__story-card-main {
  background: var(--abt-navy);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.abt__story-card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--abt-blue), var(--abt-teal));
  border-radius: 20px 20px 0 0;
}

.abt__story-card-main::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
}

.abt__story-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 4px 12px;
  background: rgba(37,99,235,0.12);
  border-radius: 20px;
}

.abt__story-quote {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--abt-white);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.abt__story-quote::before {
  content: '"';
  font-size: 4rem;
  color: rgba(37,99,235,0.25);
  font-style: normal;
  line-height: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}

.abt__story-sig {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.abt__sig-avatar {
  width: 44px; height: 44px;
  background: var(--abt-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.abt__sig-info {}
.abt__sig-name { font-size: 14px; font-weight: 700; color: var(--abt-white); }
.abt__sig-role { font-size: 12px; color: rgba(255,255,255,0.38); }

/* Floating mini cards */
.abt__float-card {
  position: absolute;
  background: var(--abt-white);
  border: 1px solid var(--abt-border);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  gap: 10px;
}

.abt__float-card-1 {
  bottom: -24px;
  right: -24px;
}

.abt__float-card-2 {
  top: -50px;
  left: -20px;
}

.abt__float-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.abt__float-icon svg { width: 16px; height: 16px; fill: none; stroke-width: 2; }
.abt__float-icon-blue  { background: var(--abt-blue-t); }
.abt__float-icon-blue svg { stroke: var(--abt-blue); }
.abt__float-icon-green { background: rgba(5,150,105,0.08); }
.abt__float-icon-green svg { stroke: #059669; }

.abt__float-val { font-size: 15px; font-weight: 800; color: var(--abt-text); line-height: 1; }
.abt__float-lbl { font-size: 11px; color: var(--abt-muted); margin-top: 1px; }

/* Right — Story text */
.abt__story-content {}

.abt__section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--abt-blue);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.abt__section-eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--abt-blue);
  border-radius: 2px;
}

.abt__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--abt-text);
  letter-spacing: -0.8px;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}

.abt__section-title em { font-style: normal; color: var(--abt-blue); }

.abt__story-para {
  font-size: 15px;
  color: var(--abt-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.abt__story-para:last-of-type { margin-bottom: 2rem; }

.abt__story-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abt__story-hl {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--abt-light);
  border: 1px solid var(--abt-border);
  border-radius: 10px;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.abt__story-hl:hover {
  border-color: rgba(37,99,235,0.2);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.abt__hl-check {
  width: 24px; height: 24px;
  background: var(--abt-blue-t);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.abt__hl-check svg { width: 13px; height: 13px; stroke: var(--abt-blue); fill: none; stroke-width: 2.5; }

.abt__hl-text { font-size: 13.5px; font-weight: 600; color: var(--abt-text); line-height: 1.5; }
.abt__hl-sub  { font-size: 12px; color: var(--abt-muted); margin-top: 2px; }

/* ═══════════════════════
   VALUES SECTION
═══════════════════════ */
.abt__values {
  background: var(--abt-light);
  padding: 5.5rem 2rem;
  border-top: 1px solid var(--abt-border);
}

.abt__values-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.abt__values-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.abt__values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.abt__val-card {
  background: var(--abt-white);
  border: 1px solid var(--abt-border);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.abt__val-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
  border-color: rgba(37,99,235,0.18);
}

.abt__val-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.abt__val-card:hover::before { transform: scaleX(1); }

.abt__val-card:nth-child(1)::before { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.abt__val-card:nth-child(2)::before { background: linear-gradient(90deg, #0891b2, #22d3ee); }
.abt__val-card:nth-child(3)::before { background: linear-gradient(90deg, #059669, #34d399); }
.abt__val-card:nth-child(4)::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.abt__val-card:nth-child(5)::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.abt__val-card:nth-child(6)::before { background: linear-gradient(90deg, #db2777, #f472b6); }

.abt__val-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(37,99,235,0.08);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.abt__val-icon {
  width: 48px; height: 48px;
  background: var(--abt-blue-t);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.2s;
}

.abt__val-card:hover .abt__val-icon { transform: scale(1.08); }
.abt__val-icon svg { width: 22px; height: 22px; stroke: var(--abt-blue); fill: none; stroke-width: 1.8; }

.abt__val-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--abt-text);
  letter-spacing: -0.3px;
  margin-bottom: 0.6rem;
}

.abt__val-desc {
  font-size: 13.5px;
  color: var(--abt-muted);
  line-height: 1.7;
}

/* ═══════════════════════
   TEAM SECTION
═══════════════════════ */
.abt__team {
  background: var(--abt-white);
  padding: 5.5rem 2rem;
  border-top: 1px solid var(--abt-border);
}

.abt__team-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.abt__team-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.abt__team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.abt__team-card {
  background: var(--abt-light);
  border: 1px solid var(--abt-border);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.abt__team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
  border-color: rgba(37,99,235,0.18);
}

.abt__team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--abt-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--abt-white);
  margin: 0 auto 1.25rem;
  position: relative;
  border: 3px solid var(--abt-border);
}

.abt__team-avatar::after {
  content: '';
  position: absolute;
  bottom: 2px; right: 2px;
  width: 14px; height: 14px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--abt-white);
}

.abt__team-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--abt-text);
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}

.abt__team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--abt-blue);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.abt__team-bio {
  font-size: 13px;
  color: var(--abt-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.abt__team-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.abt__tsoc {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid var(--abt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--abt-muted);
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.15s;
}

.abt__tsoc:hover {
  background: var(--abt-blue);
  border-color: var(--abt-blue);
  color: #fff;
  transform: translateY(-2px);
}

.abt__tsoc svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* ═══════════════════════
   MILESTONES TIMELINE
═══════════════════════ */
.abt__timeline {
  background: var(--abt-navy);
  padding: 5.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.abt__timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.abt__timeline-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.abt__timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}

.abt__timeline-header .abt__section-eyebrow { color: #60a5fa; }
.abt__timeline-header .abt__section-eyebrow::before { background: #60a5fa; }
.abt__timeline-header .abt__section-title { color: var(--abt-white); }

/* Timeline track */
.abt__tl-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.abt__tl-track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--abt-blue), var(--abt-teal), var(--abt-blue));
  opacity: 0.25;
  z-index: 0;
}

.abt__tl-item {
  position: relative;
  z-index: 1;
}

.abt__tl-year {
  width: 48px; height: 48px;
  background: var(--abt-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.3px;
}

.abt__tl-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--abt-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}

.abt__tl-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
}

/* ═══════════════════════
   BOTTOM CTA
═══════════════════════ */
.abt__cta {
  background: var(--abt-light);
  padding: 5rem 2rem;
  border-top: 1px solid var(--abt-border);
  text-align: center;
}

.abt__cta-inner {
  max-width: 620px;
  margin: 0 auto;
}

.abt__cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--abt-blue);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding: 5px 14px;
  background: var(--abt-blue-t);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 20px;
}

.abt__cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--abt-text);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.abt__cta-title em { font-style: normal; color: var(--abt-blue); }

.abt__cta-desc {
  font-size: 15px;
  color: var(--abt-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.abt__cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.abt__cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--abt-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s;
}

.abt__cta-phone:hover { color: var(--abt-text); }
.abt__cta-phone svg { width: 15px; height: 15px; }

/* ═══════════════════════
   RESPONSIVE
═══════════════════════ */
@media (max-width: 960px) {
  .abt__hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .abt__story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .abt__values-grid { grid-template-columns: repeat(2, 1fr); }
  .abt__team-grid { grid-template-columns: repeat(2, 1fr); }
  .abt__tl-track { grid-template-columns: repeat(2, 1fr); }
  .abt__tl-track::before { display: none; }
  .abt__hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .abt__hstat { border-right: none; padding: 0.75rem; border: 1px solid var(--abt-border2); border-radius: 10px; }
  .abt__float-card { display: none; }
}

@media (max-width: 600px) {
  .abt__hero { padding: 4rem 1.25rem 3.5rem; }
  .abt__story, .abt__values, .abt__team, .abt__timeline, .abt__cta { padding: 3.5rem 1.25rem; }
  .abt__values-grid { grid-template-columns: 1fr; }
  .abt__team-grid { grid-template-columns: 1fr; }
  .abt__tl-track { grid-template-columns: 1fr; }
  .abt__hero-title { font-size: 2rem; }
  .abt__section-title { font-size: 1.75rem; }
}
