/* ── About Hero ─────────────────────────────────────────────── */
.about-hero {
  background:
    linear-gradient(135deg, rgba(10,20,34,0.93) 0%, rgba(13,27,42,0.86) 100%),
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1800&q=80') center/cover no-repeat;
  padding: 100px 0 36px !important;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  right: -5%; top: -20%;
  width: 50%; height: 140%;
  background: radial-gradient(ellipse, rgba(196,151,58,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.ah-inner {
  max-width: 620px;
}

.ah-inner h1 {
  font-size: clamp(32px, 4vw, 50px);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}

.ah-inner > p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  line-height: 1.75;
}

.ah-nmls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(196,151,58,0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}

.ah-nmls svg { color: var(--gold); flex-shrink: 0; }

/* ── Profile section ─────────────────────────────────────────── */
.profile-sec { padding: 56px 0 var(--pad-section); }
.profile-grid { display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: start; }

.p-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 88px;
}

.p-photo { height: 320px; overflow: hidden; background: var(--navy); }
.p-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.p-body { padding: 28px; }
.p-name { font-family: var(--font-display); font-size: 26px; font-weight: 400; color: var(--navy); letter-spacing: -0.3px; }
.p-role { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin: 6px 0 20px; }

.p-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 13px; font-size: 14px; color: var(--muted); }
.p-di { width: 32px; height: 32px; border-radius: 8px; background: var(--fog); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.p-dl strong { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text); margin-bottom: 2px; }

.p-acts { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border-light); }

/* ── Bio ─────────────────────────────────────────────────────── */
.bio h2 { font-family: var(--font-display); font-size: 36px; font-weight: 400; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 18px; line-height: 1.2; }
.bio p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }

/* Values grid — no left border, icon on top */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0; }

.val-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  transition: all .22s;
}
.val-item:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.val-icon {
  width: 38px; height: 38px;
  background: var(--fog);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}

.val-title { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 6px; }
.val-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Vi block */
.vi-block { background: var(--navy); border-radius: var(--radius-lg); padding: 30px; margin: 30px 0; display: flex; gap: 18px; align-items: flex-start; border: 1px solid rgba(255,255,255,0.06); }
.vi-flag { font-size: 44px; line-height: 1; flex-shrink: 0; }
.vi-block h3 { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 9px; }
.vi-block p { font-size: 14.5px; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* ── Credentials ─────────────────────────────────────────────── */
.creds-sec { padding: var(--pad-section); background: var(--fog); border-top: 1px solid var(--border); }

.creds-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }

.cred-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}

/* gold bottom bar on hover */
.cred-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.cred-card:hover::after { transform: scaleX(1); }
.cred-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }

/* ghost number top-right */
.cred-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 400;
  color: var(--navy);
  opacity: 0.05;
  position: absolute;
  top: 10px; right: 16px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* navy icon box */
.cred-icon-box {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}

.cred-title { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 7px; }
.cred-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── States ──────────────────────────────────────────────────── */
.states-sec { padding: var(--pad-section); }
.states-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; justify-content: center; }
.s-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 22px; font-size: 14px; font-weight: 600; color: var(--muted); display: flex; align-items: center; gap: 8px; transition: all .2s; box-shadow: var(--shadow-sm); }
.s-card:hover { border-color: var(--gold-border); color: var(--navy); background: var(--fog); }
.s-card::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 12px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media(max-width: 1024px) {
  .profile-grid { grid-template-columns: 300px 1fr; gap: 48px; }
}

@media(max-width: 860px) {
  .ah-stats { flex-wrap: wrap; gap: 24px; }
  .ah-div { display: none; }
  .ah-stat { padding: 0; }
  .profile-grid { grid-template-columns: 1fr; }
  .p-card { position: static; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media(max-width: 500px) {
  .creds-grid { grid-template-columns: 1fr 1fr; }
}
