/* ============================================================
   About Page Styles
   about.css
   ============================================================ */

/* ── Hero ── */
.abt-hero {
  background: #071018;
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.abt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  pointer-events: none;
}
.abt-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.abt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.abt-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0057D9;
  animation: abtpulse 2s ease-in-out infinite;
}
@keyframes abtpulse {
  0%,100% { opacity:1; }
  50%      { opacity:.25; }
}
.abt-hero-title {
  font-family: 'DM Serif Display', sans-serif;
  font-size: clamp(26px, 4.5vw, 46px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.abt-hero-title em {
  font-style: italic;
  color: var(--brand);
}
.abt-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.48);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 32px;
}
.abt-hero-sub strong { color: rgba(255,255,255,.75); font-weight: 500; }
.abt-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.abt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}
.abt-badge [data-lucide] { width: 13px; height: 13px; }

/* ── Stats strip ── */
.abt-stats-strip { background: #0057D9; }
.abt-stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}
.abt-stat {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.14);
}
.abt-stat:last-child { border-right: none; }
.abt-stat-val {
  font-family: 'DM Serif Display', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.abt-stat-val span { font-size: 17px; color: rgba(255,255,255,.6); }
.abt-stat-lbl {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
}

/* ── Shared section helpers ── */
.abt-section {
  padding: 80px 0;
}
.abt-section--alt { background: var(--paper, #f7f8fb); }
.abt-section--white { background: #fff; }
.abt-section--dark { background: #071018; }
.abt-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.abt-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0057D9;
  margin-bottom: 10px;
}
.abt-title {
  font-family: 'DM Serif Display', sans-serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--ink, #0f172a);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 13px;
}
.abt-title em { font-style: italic; color: #0057D9; }
.abt-desc {
  font-size: 15px;
  color: var(--ink-soft, #475569);
  line-height: 1.75;
  margin-bottom: 0;
}

/* ── Mission ── */
.abt-mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.abt-values {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}
.abt-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.abt-val-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0057D9;
}
.abt-val-icon [data-lucide] { width: 18px; height: 18px; }
.abt-val-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink, #0f172a);
  margin-bottom: 3px;
}
.abt-val-desc {
  font-size: 14px;
  color: var(--ink-soft, #555);
  line-height: 1.7;
}

/* ── Stats panel ── */
.abt-panel {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 20px;
  overflow: hidden;
}
.abt-panel-header {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border, #e2e8f0);
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--ink-muted, #94a3b8);
}
.abt-panel-dot { width: 8px; height: 8px; border-radius: 50%; }
.abt-panel-grid { display: grid; grid-template-columns: 1fr 1fr; }
.abt-panel-stat {
  padding: 22px;
  border-right: 1px solid var(--border, #e2e8f0);
  border-bottom: 1px solid var(--border, #e2e8f0);
}
.abt-panel-stat:nth-child(2n) { border-right: none; }
.abt-panel-stat:nth-last-child(-n+2) { border-bottom: none; }
.abt-panel-val {
  font-family: 'DM Serif Display', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0057D9;
  line-height: 1;
  margin-bottom: 5px;
}
.abt-panel-lbl { font-size: 12px; color: var(--ink-muted, #94a3b8); }

/* ── Timeline ── */
.abt-timeline-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.abt-timeline {
  position: relative;
  padding-left: 42px;
  margin-top: 48px;
}
.abt-timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border, #e2e8f0);
}
.abt-tl-item {
  position: relative;
  margin-bottom: 38px;
}
.abt-tl-item:last-child { margin-bottom: 0; }
.abt-tl-dot {
  position: absolute;
  left: -37px; top: 5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #0057D9;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #0057D9;
}
.abt-tl-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0057D9;
  margin-bottom: 4px;
}
.abt-tl-title {
  font-family: 'DM Serif Display', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink, #0f172a);
  margin-bottom: 5px;
}
.abt-tl-desc {
  font-size: 14px;
  color: var(--ink-soft, #475569);
  line-height: 1.7;
}

/* ── Media logos ── */
.abt-media-inner { text-align: center; }
.abt-media-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted, #94a3b8);
  margin-bottom: 24px;
}
.abt-media-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.abt-media-logo {
  font-family: 'DM Serif Display', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-muted, #94a3b8);
  opacity: .45;
  filter: grayscale(1);
  transition: opacity .18s, filter .18s;
  user-select: none;
}
.abt-media-logo:hover { opacity: .75; filter: grayscale(0.3); }

/* ── Contact ── */
.abt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.abt-contact-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 22px;
}
.abt-cm {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.abt-cm-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0057D9;
}
.abt-cm-icon [data-lucide] { width: 17px; height: 17px; }
.abt-cm-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-muted, #94a3b8);
  margin-bottom: 3px;
}
.abt-cm-val {
  font-size: 14px;
  color: var(--ink, #0f172a);
  font-weight: 500;
  text-decoration: none;
}
a.abt-cm-val:hover { color: #0057D9; }
.abt-form-card {
  background: #fff;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 20px;
  padding: 32px;
}
.abt-form-title {
  font-family: 'DM Serif Display', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink, #0f172a);
  margin-bottom: 22px;
}
.abt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.abt-form-grp {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.abt-form-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink, #0f172a);
}
.abt-form-input,
.abt-form-select,
.abt-form-textarea {
  padding: 10px 13px;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 9px;
  font-size: 14px;
  color: var(--ink, #0f172a);
  background: #fff;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color .15s;
}
.abt-form-input:focus,
.abt-form-select:focus,
.abt-form-textarea:focus { border-color: #0057D9; }
.abt-form-textarea { resize: vertical; }
.abt-submit-btn {
  width: 100%;
  padding: 13px;
  background: #0057D9;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .15s;
  font-family: inherit;
}
.abt-submit-btn:hover { background: #0562cc; }
.abt-submit-btn [data-lucide] { width: 15px; height: 15px; }
.abt-submit-msg {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  min-height: 16px;
}
.abt-submit-msg.ok  { color: #16a34a; }
.abt-submit-msg.err { color: #dc2626; }

/* ── Bottom CTA ── */
.abt-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.abt-cta-title {
  font-family: 'DM Serif Display', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.abt-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  margin-bottom: 26px;
  line-height: 1.65;
}
.abt-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.abt-btn-primary {
  padding: 13px 26px;
  background: #0057D9;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .15s;
}
.abt-btn-primary:hover { background: #0562cc; color: #fff; }
.abt-btn-outline {
  padding: 13px 26px;
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color .15s, color .15s;
}
.abt-btn-outline:hover { border-color: rgba(255,255,255,.45); color: #fff; }
.abt-btn-primary [data-lucide],
.abt-btn-outline [data-lucide] { width: 15px; height: 15px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .abt-section { padding: 56px 0; }
  .abt-container { padding: 0 24px; }
  .abt-stats-inner { grid-template-columns: repeat(3, 1fr); }
  .abt-stat:nth-child(3) { border-right: none; }
  .abt-mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .abt-team-grid { grid-template-columns: 1fr; }
  .abt-contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .abt-stats-inner { grid-template-columns: 1fr 1fr; }
  .abt-stat:nth-child(2) { border-right: none; }
  .abt-stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,.14); }
  .abt-form-row { grid-template-columns: 1fr; }
  .abt-media-logos { gap: 20px; }
  .abt-timeline { padding-left: 30px; }
}
