/* ── About Us Page ──────────────────────────────────────────────────────── */
:root {
  --ssh-font-head: 'Outfit', sans-serif;
  --ssh-font-body: 'Inter', sans-serif;
  --ssh-teal:      #1c98ab;
  --ssh-teal-d:    #0e6e7e;
  --ssh-navy:      #1e3a8a;
  --ssh-navy-d:    #15265f;
  --ssh-ink:       #0e4d57;
  --ssh-body:      #4b5563;
  --ssh-muted:     #6b7280;
  --ssh-soft:      #f6f7f9;
  --ssh-soft2:     #eef1f6;
  --ssh-line:      #e5e7eb;
}

.ssh-about-page {
  font-family: var(--ssh-font-body);
  color: var(--ssh-body);
}

.ssh-ab-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .ssh-ab-container { padding: 0 24px; }
}

/* ── Section 1: Hero Split ── */
.ssh-ab-hero {
  background: #fff;
  padding: 72px 0 0;
}
.ssh-ab-hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .ssh-ab-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.ssh-ab-hero-heading {
  font-family: var(--ssh-font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  margin: 0;
}
.ssh-ab-hero-heading span { color: var(--ssh-teal); }

.ssh-ab-hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ssh-body);
  margin: 0;
}

/* Accordion */
.ssh-ab-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--ssh-line);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
}
.ssh-ab-acc-item {
  border-bottom: 1px solid var(--ssh-line);
}
.ssh-ab-acc-item:last-child { border-bottom: none; }

.ssh-ab-acc-btn {
  width: 100%;
  background: #fff !important;
  border: none !important;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}
.ssh-ab-acc-btn:hover { background: var(--ssh-soft) !important; }

.ssh-ab-acc-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ssh-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s;
}
.ssh-ab-acc-icon svg { stroke: #fff; display: block; }
.ssh-ab-acc-btn[aria-expanded="true"] .ssh-ab-acc-icon { transform: rotate(90deg); }

.ssh-ab-acc-label {
  font-family: var(--ssh-font-head);
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.ssh-ab-acc-body {
  display: none;
  padding: 0 20px 16px 50px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ssh-body);
}
.ssh-ab-acc-body.open { display: block; }

/* Left */
.ssh-ab-hero-left { display: flex; flex-direction: column; gap: 20px; }

/* Right image */
.ssh-ab-hero-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  width: 100%;
}
.ssh-ab-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}
.ssh-ab-hero-img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #e0f2f7 0%, #b2e0ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  color: var(--ssh-teal);
  font-size: 14px;
  font-weight: 600;
}

/* ── Section 2: Advisory Team ── */
.ssh-ab-advisory {
  padding: 60px 0;
  background: #fff;
}
.ssh-ab-advisory-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.ssh-ab-advisory-title {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 14px;
}
.ssh-ab-advisory-intro {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}
.ssh-ab-advisory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ssh-ab-adv-card {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px;
}
.ssh-ab-adv-img-wrap { flex-shrink: 0; }
.ssh-ab-adv-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0f5f7;
  display: block;
}
.ssh-ab-adv-body { display: flex; flex-direction: column; gap: 6px; }
.ssh-ab-adv-name {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.ssh-ab-adv-role {
  font-size: 13px;
  font-weight: 600;
  color: #1c98ab;
  margin: 0;
}
.ssh-ab-adv-bio {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}
.ssh-ab-advisory-footer {
  margin: 36px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 14.5px;
  color: #374151;
  font-style: italic;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .ssh-ab-advisory-grid { grid-template-columns: 1fr; }
  .ssh-ab-adv-card { flex-direction: column; align-items: center; text-align: center; }
}

/* ── Section 3: Feature Cards ── */
.ssh-ab-features {
  background: var(--ssh-soft);
  padding: 64px 0;
}
.ssh-ab-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .ssh-ab-features-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

.ssh-ab-feat-card {
  background: #fff;
  border: 1px solid var(--ssh-line);
  border-radius: 16px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.ssh-ab-feat-card:hover {
  border-color: var(--ssh-teal);
  box-shadow: 0 8px 28px rgba(28,152,171,.12);
  transform: translateY(-3px);
}
.ssh-ab-feat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--ssh-soft2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ssh-teal);
  flex-shrink: 0;
  margin-bottom: 4px;
}
.ssh-ab-feat-icon img {
  width: 32px;
  height: 32px;
}
.ssh-ab-feat-title {
  font-family: var(--ssh-font-head);
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin: 0;
}
.ssh-ab-feat-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ssh-body);
  margin: 0;
}

/* ── Section 3: Stats Bar ── */
.ssh-ab-stats {
  position: relative;
  padding: 100px 0;
}
.ssh-ab-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,28,45,.60);
  pointer-events: none;
  z-index: 0;
}
.ssh-ab-stats-grid {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.ssh-ab-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.ssh-ab-stat + .ssh-ab-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.ssh-ab-stat-num {
  font-family: var(--ssh-font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.ssh-ab-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
@media (max-width: 640px) {
  .ssh-ab-stats { padding: 48px 0; }
  .ssh-ab-stats-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; gap: 40px; }
  .ssh-ab-stat + .ssh-ab-stat::before { display: none; }
}

/* ── Section 4: CTA ── */
.ssh-ab-cta {
  background: #fff;
  padding: 40px 0 64px;
}
.ssh-ab-cta-inner {
  background: #1e2535;
  border-radius: 20px;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.ssh-ab-cta-eyebrow {
  font-family: var(--ssh-font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.5px;
  margin: 0;
}
.ssh-ab-cta-heading {
  font-family: var(--ssh-font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}
.ssh-ab-cta-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 620px;
  margin: 0;
}
.ssh-ab-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 36px;
  height: 52px;
  background: var(--ssh-teal);
  color: #fff !important;
  font-family: var(--ssh-font-head);
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
}
@media (max-width: 640px) {
  .ssh-ab-cta-inner { padding: 40px 24px; }
  .ssh-ab-cta-btn { width: 100%; }
}

/* Advisory accordion content */
.ssh-ab-acc-advisors { display: flex; flex-direction: column; gap: 20px; margin-top: 4px; }
.ssh-ab-acc-adv { display: flex; gap: 18px; align-items: flex-start; font-size: 13.5px; color: #374151; line-height: 1.65; }
.ssh-ab-acc-adv-img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid #e0f5f7; flex-shrink: 0; }
@media (max-width: 480px) {
  .ssh-ab-acc-adv { flex-direction: column; align-items: center; text-align: center; }
}
