/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — Trade Risk Solutions
   ═══════════════════════════════════════════════════════════════ */

.nav-active-link { font-weight: 600; color: var(--text) !important; }

/* ── Shared wrapper ── */
.ab-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .ab-wrap { padding: 0 24px; }
}

/* ══════════════════════════════════════
   SECTION 1 — WHO WE ARE
   ══════════════════════════════════════ */

.ab-top {
  background: #fff;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Split intro grid */
.ab-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  padding-bottom: 64px;
  border-bottom: 1px solid #e8e8e8;
  align-items: start;
}

.ab-eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0 0 28px;
}

.ab-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 700;
  color: #0d1117;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
}

.ab-split-r {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 52px;
}

.ab-split-label {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbb;
  margin: 0 0 4px;
}

.ab-split-body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* ── Values accordion ── */
.ab-acc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
}

.ab-acc-item {
  border-radius: 14px;
  background: #f3f3f1;
  overflow: hidden;
  transition: background 0.22s ease;
}

.ab-acc-item--open {
  background: #102a4a;
}

.ab-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
}

.ab-acc-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: 12px;
}

.ab-acc-ic {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: color 0.2s ease;
}

.ab-acc-item--open .ab-acc-ic { color: rgba(255,255,255,0.55); }

.ab-acc-title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #0d1117;
  transition: color 0.2s ease;
  line-height: 1.3;
}

.ab-acc-item--open .ab-acc-title { color: #ffffff; }

.ab-acc-chev {
  flex-shrink: 0;
  color: #bbb;
  transition: transform 0.25s ease, color 0.2s ease;
}

.ab-acc-item--open .ab-acc-chev {
  transform: rotate(180deg);
  color: rgba(255,255,255,0.4);
}

/* Smooth height via CSS grid trick */
.ab-acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-acc-item--open .ab-acc-panel {
  grid-template-rows: 1fr;
}

.ab-acc-inner {
  overflow: hidden;
}

.ab-acc-inner p {
  font-family: var(--font);
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(255,255,255,0.62);
  margin: 0;
  padding: 0 24px 24px 54px;
}

/* ══════════════════════════════════════
   SECTION 2 — WHAT SETS US APART
   ══════════════════════════════════════ */

.ab-features {
  background:
    radial-gradient(ellipse at 20% 60%, rgba(40, 110, 200, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(15, 150, 180, 0.18) 0%, transparent 50%),
    #102a4a;
  padding: 100px 0;
}

.ab-feat-header {
  text-align: center;
  margin-bottom: 72px;
}

.ab-feat-h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 14px;
}

.ab-feat-sub {
  font-family: var(--font);
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.ab-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ab-feat-col {
  padding: 0 52px;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.ab-feat-col:first-child { padding-left: 0; }
.ab-feat-col:last-child  { border-right: none; padding-right: 0; }

.ab-feat-icon {
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}

.ab-feat-title {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.ab-feat-body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* ══════════════════════════════════════
   SECTION 3 — CTA
   ══════════════════════════════════════ */

.ab-cta {
  background: #fff;
  padding: 120px 24px 140px;
  text-align: center;
}

.ab-cta-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.ab-cta-label {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
  margin: 0 0 20px;
}

.ab-cta-h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #0d1117;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.ab-cta-sub {
  font-family: var(--font);
  font-size: 16px;
  color: #888;
  line-height: 1.65;
  margin: 0 0 40px;
}

.ab-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d1117;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.ab-cta-btn:hover {
  background: #2d2d2d;
  transform: scale(1.02);
  color: #fff;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 900px) {
  .ab-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-split-r { padding-top: 0; }

  .ab-feat-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-feat-col {
    padding: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
  }
  .ab-feat-col:last-child { border-bottom: none; padding-bottom: 0; }
  .ab-features { padding: 72px 24px; }
}

@media (max-width: 640px) {
  .ab-top { padding-top: 96px; padding-bottom: 60px; }
  .ab-cta { padding: 80px 24px 100px; }
  .ab-acc-inner p { padding: 0 16px 20px 16px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .ab-acc-panel { transition: none; }
  .ab-acc-chev  { transition: none; }
  .ab-acc-item  { transition: none; }
  .ab-cta-btn   { transition: none; }
}
