/* =========================================================
   PPGL ABOUT PAGE CSS - GO LIVE UPGRADE
   Only for about.html
   Requires style.css to load first
========================================================= */

/* PAGE POLISH */

.about-page {
  isolation: isolate;
}

.about-page main {
  overflow: hidden;
}

.about-page .section-dark::after,
.about-page .section-light::after {
  content: "";
  position: absolute;
  inset: auto -12% -160px auto;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(30, 115, 190, 0.09),
    transparent 68%
  );
  filter: blur(2px);
}

/* HERO */

.about-hero {
  padding: 86px 0 68px;
}

.about-hero .hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 46px;
}

.about-hero h1 {
  max-width: 820px;
}

.about-hero .hero-copy p {
  max-width: 720px;
}

.about-hero-card {
  padding: 18px;
  border-radius: 30px;
  transform-style: preserve-3d;
}

.about-hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  border-radius: 24px;
  border: 1px solid rgba(255, 210, 0, 0.14);
}

.about-hero-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 370px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.about-hero-metrics {
  position: relative;
  z-index: 3;
  margin-top: 15px;
}

.about-hero-metrics div {
  transition: 0.22s ease;
}

.about-hero-metrics div:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 210, 0, 0.34);
}

.about-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.about-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  transition: 0.2s ease;
}

.about-quick-links a:hover {
  color: var(--gold-500);
  border-color: rgba(255, 210, 0, 0.34);
  transform: translateY(-2px);
}

html[data-theme="light"] .about-quick-links a {
  background: rgba(255, 255, 255, 0.72);
  color: #334155;
}

/* TRUST STRIP */

.about-trust-strip {
  padding: 0;
}

.about-trust-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: -32px;
}

.about-trust-grid article {
  min-height: 112px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--panel), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: 0.24s ease;
}

html[data-theme="light"] .about-trust-grid article {
  background: linear-gradient(145deg, #ffffff, rgba(241, 245, 249, 0.82));
}

.about-trust-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 210, 0, 0.36);
}

.about-trust-grid strong {
  display: block;
  color: var(--gold-500);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 10px;
}

.about-trust-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
}

html[data-theme="light"] .about-trust-grid span {
  color: #334155;
}

/* GENERAL ABOUT SECTIONS */

.about-section {
  padding: 72px 0;
}

.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.about-copy h2 {
  max-width: 780px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

.about-copy p {
  color: var(--muted);
  max-width: 710px;
  font-size: 0.94rem;
  line-height: 1.74;
  margin-bottom: 14px;
}

html[data-theme="light"] .about-copy p {
  color: #334155;
}

/* IMAGE STACK */

.about-image-stack {
  position: relative;
}

.about-image-stack::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 30px;
  border: 1px solid rgba(255, 210, 0, 0.2);
  background: rgba(255, 210, 0, 0.055);
  transform: rotate(8deg);
}

.about-image-stack img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.about-image-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 18px;
  border-radius: 18px;
  background: rgba(5, 11, 18, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.about-image-note strong {
  display: block;
  color: var(--gold-500);
  font-size: 0.84rem;
  margin-bottom: 6px;
}

.about-image-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.55;
}

/* POSITIONING CARDS */

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-card-grid .cred-card {
  position: relative;
  min-height: 225px;
  overflow: hidden;
}

.about-card-grid .cred-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.12), transparent 68%);
  transition: 0.26s ease;
}

.about-card-grid .cred-card:hover::after {
  transform: scale(1.2);
}

/* PROOF BAND */

.about-proof-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(255, 210, 0, 0.22);
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 210, 0, 0.12),
      transparent 30%
    ),
    linear-gradient(145deg, var(--panel), rgba(255, 255, 255, 0.028));
  box-shadow: var(--shadow-soft);
}

html[data-theme="light"] .about-proof-band {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 210, 0, 0.18),
      transparent 30%
    ),
    linear-gradient(145deg, #ffffff, rgba(241, 245, 249, 0.82));
}

.about-proof-band h3 {
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.about-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.about-proof-list span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
}

html[data-theme="light"] .about-proof-list span {
  color: #334155;
  background: rgba(255, 255, 255, 0.72);
}

/* MISSION / VISION */

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.about-mission-grid .portal-card {
  min-height: 270px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.about-mission-grid .portal-card::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -110px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(30, 115, 190, 0.14),
    transparent 70%
  );
}

.about-mission-grid .portal-card h2 {
  max-width: 540px;
}

/* DIVISIONS */

.about-division-grid {
  display: grid;
  gap: 24px;
}

.about-division-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 22px;
  overflow: hidden;
}

.about-division-card img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: 0.35s ease;
}

.about-division-card:hover img {
  transform: scale(1.025);
}

.about-division-card h2 {
  max-width: 600px;
}

/* ERP / OPERATING PHILOSOPHY */

.about-dashboard-img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}

#operating-model .dashboard-card {
  position: relative;
  overflow: hidden;
}

#operating-model .dashboard-card::before {
  content: "LIVE OPERATING STRUCTURE";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5, 11, 18, 0.76);
  border: 1px solid rgba(255, 210, 0, 0.24);
  color: var(--gold-500);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

html[data-theme="light"] #operating-model .dashboard-card::before {
  background: rgba(255, 255, 255, 0.78);
  color: #b89400;
}

/* PROCESS */

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: process;
}

.about-process-card {
  position: relative;
  min-height: 245px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--panel), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: 0.24s ease;
}

html[data-theme="light"] .about-process-card {
  background: linear-gradient(145deg, #ffffff, rgba(241, 245, 249, 0.82));
}

.about-process-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--gold-500), var(--blue-500));
}

.about-process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 210, 0, 0.36);
}

.about-process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: var(--slate-900);
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 40px;
}

.about-process-card h3 {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.about-process-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

html[data-theme="light"] .about-process-card p {
  color: #334155;
}

/* TEAM SECTION */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-card {
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--panel), rgba(255, 255, 255, 0.025));
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

html[data-theme="light"] .team-card {
  background: linear-gradient(145deg, #ffffff, rgba(241, 245, 249, 0.8));
}

.team-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 210, 0, 0.38);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
}

.team-card:focus-visible {
  outline: 3px solid rgba(255, 210, 0, 0.55);
  outline-offset: 4px;
}

.team-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: top center;
  border-radius: 19px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  filter: saturate(1.04) contrast(1.02);
}

.team-card span {
  display: inline-flex;
  color: var(--gold-500);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 8px;
}

.team-card h3 {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.22;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.team-card p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

html[data-theme="light"] .team-card p {
  color: #334155;
}

/* TEAM MODAL */

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  place-items: center;
  padding: 24px;
}

.team-modal.is-open {
  display: grid;
}

.team-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 12, 0.78);
  backdrop-filter: blur(12px);
}

.team-modal-card {
  position: relative;
  width: min(940px, 100%);
  max-height: min(86vh, 780px);
  overflow-y: auto;
  border: 1px solid var(--border);
  background: var(--navy-900);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
  z-index: 2;
}

html[data-theme="light"] .team-modal-card {
  background: #ffffff;
}

.team-modal-card::-webkit-scrollbar {
  width: 8px;
}

.team-modal-card::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-500), var(--blue-500));
  border-radius: 999px;
}

.team-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  z-index: 3;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--panel);
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1;
}

.team-modal-close:hover {
  border-color: rgba(255, 210, 0, 0.45);
  color: var(--gold-500);
}

.team-modal-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: center;
}

.team-modal-layout img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.team-modal-layout span {
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.team-modal-layout h2 {
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 10px 0 14px;
}

.team-modal-layout p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

html[data-theme="light"] .team-modal-layout p {
  color: #334155;
}

.team-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.team-modal-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
  font-size: 0.76rem;
}

html[data-theme="light"] .team-modal-tags span {
  color: #334155;
  background: rgba(15, 23, 42, 0.055);
}

/* CTA */

.about-cta {
  text-align: center;
  display: block;
}

.about-cta p {
  margin-inline: auto;
}

.about-cta .hero-actions {
  justify-content: center;
}

/* FOOTER SAFETY FOR ABOUT PAGE */

.about-page .site-footer,
html[data-theme="light"] .about-page .site-footer,
html[data-theme="dark"] .about-page .site-footer {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(30, 115, 190, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 70%,
      rgba(255, 210, 0, 0.08),
      transparent 24%
    ),
    linear-gradient(135deg, #03070c, #07111d 48%, #081827) !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

.about-page .site-footer h3,
.about-page .site-footer a,
.about-page .site-footer p,
.about-page .site-footer span,
.about-page .site-footer i {
  color: rgba(255, 255, 255, 0.72) !important;
}

.about-page .site-footer h3 {
  color: #ffffff !important;
}

.about-page .site-footer a:hover,
.about-page .site-footer a:hover i {
  color: var(--gold-500) !important;
}

.about-page .footer-bottom {
  text-align: center !important;
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .team-grid,
  .about-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1080px) {
  .about-hero .hero-layout,
  .about-split,
  .about-division-card,
  .about-proof-band {
    grid-template-columns: 1fr;
  }

  .about-hero-card {
    max-width: 720px;
  }

  .about-card-grid,
  .about-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid,
  .about-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-modal-layout {
    grid-template-columns: 1fr;
  }

  .team-modal-layout img {
    height: 300px;
  }
}

@media (max-width: 860px) {
  .about-hero {
    padding: 60px 0 48px;
  }

  .about-section {
    padding: 56px 0;
  }

  .about-card-grid,
  .about-mission-grid,
  .about-trust-grid {
    grid-template-columns: 1fr;
  }

  .about-trust-grid {
    margin-top: 0;
    padding-top: 18px;
  }

  .about-hero-img,
  .about-image-stack img,
  .about-division-card img {
    height: 260px;
  }

  .about-image-note {
    position: static;
    margin-top: 14px;
  }

  .about-mission-grid .portal-card {
    min-height: auto;
  }

  .about-proof-band {
    padding: 22px;
  }
}

@media (max-width: 620px) {
  .team-grid,
  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 250px;
  }

  .team-modal {
    padding: 14px;
  }

  .team-modal-card {
    padding: 18px;
    border-radius: 22px;
  }

  .team-modal-layout img {
    height: 250px;
  }
}

@media (max-width: 560px) {
  .about-hero-img,
  .about-image-stack img,
  .about-division-card img {
    height: 220px;
  }

  .about-copy p,
  .team-modal-layout p {
    font-size: 0.88rem;
  }

  .about-trust-grid article,
  .about-process-card {
    min-height: auto;
  }

  .about-quick-links a {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   PPGL ABOUT PAGE 10/10 UPGRADE LAYER
   Keep this file loaded AFTER style.css
========================================================= */

:root {
  --about10-ink: #07111d;
  --about10-muted: #334155;
  --about10-navy: #07111d;
  --about10-blue: #1e73be;
  --about10-gold: #ffd200;
  --about10-gold-soft: #ffe66d;
  --about10-mint: #14e6a2;
  --about10-line: rgba(15, 23, 42, 0.14);
  --about10-glass: rgba(255, 255, 255, 0.72);
  --about10-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
  --about10-shadow-heavy: 0 35px 95px rgba(7, 17, 29, 0.32);
}

html[data-theme="dark"] {
  --about10-ink: #e5edf7;
  --about10-muted: rgba(229, 237, 247, 0.72);
  --about10-line: rgba(255, 255, 255, 0.14);
  --about10-glass: rgba(255, 255, 255, 0.08);
  --about10-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  --about10-shadow-heavy: 0 35px 95px rgba(0, 0, 0, 0.48);
}

.about10-page {
  background: #ffffff;
}

html[data-theme="dark"] .about10-page {
  background: #050b12;
}

.about10-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 92px 0 76px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 11% 18%,
      rgba(255, 210, 0, 0.14),
      transparent 27%
    ),
    radial-gradient(
      circle at 89% 24%,
      rgba(30, 115, 190, 0.2),
      transparent 34%
    ),
    linear-gradient(135deg, #ffffff 0%, #f7fafc 48%, #eef3f9 100%);
}

html[data-theme="dark"] .about10-hero {
  background:
    radial-gradient(
      circle at 11% 18%,
      rgba(255, 210, 0, 0.13),
      transparent 27%
    ),
    radial-gradient(
      circle at 89% 24%,
      rgba(30, 115, 190, 0.3),
      transparent 34%
    ),
    linear-gradient(135deg, #050b12 0%, #07111d 48%, #081827 100%);
}

.about10-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0.34)
  );
}

html[data-theme="dark"] .about10-hero::after {
  background: linear-gradient(
    90deg,
    rgba(5, 11, 18, 0.88),
    rgba(5, 11, 18, 0.2)
  );
}

.about10-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(5px);
  pointer-events: none;
  z-index: 1;
  animation: about10Float 9s ease-in-out infinite alternate;
}

.about10-glow-a {
  width: 270px;
  height: 270px;
  right: 8%;
  top: 18%;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.16), transparent 70%);
}

.about10-glow-b {
  width: 230px;
  height: 230px;
  left: 4%;
  bottom: 10%;
  background: radial-gradient(
    circle,
    rgba(30, 115, 190, 0.16),
    transparent 70%
  );
  animation-direction: alternate-reverse;
}

@keyframes about10Float {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, -20px, 0) scale(1.04);
  }
}

.about10-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.82fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
}

.about10-hero-copy {
  max-width: 840px;
}

.about10-hero-copy h1 {
  max-width: 880px;
  margin: 0 0 22px;
  color: var(--about10-ink);
  font-size: clamp(4rem, 6.25vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: -0.09em;
  text-wrap: balance;
}

.about10-hero-copy p {
  max-width: 735px;
  color: var(--about10-muted);
  font-size: 1.03rem;
  line-height: 1.74;
  text-wrap: pretty;
}

.about10-approval-card {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  padding: 10px;
  border: 1px solid rgba(255, 210, 0, 0.38);
  border-radius: 22px;
  background: rgba(255, 210, 0, 0.08);
  box-shadow: 0 18px 40px rgba(255, 210, 0, 0.1);
}

.about10-approval-card span,
.about10-approval-card b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.about10-approval-card span {
  background: var(--about10-navy);
  color: #ffffff;
}

.about10-approval-card b {
  background: rgba(255, 255, 255, 0.76);
  color: #07111d;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

html[data-theme="dark"] .about10-approval-card b {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
}

.about10-actions {
  margin-top: 24px;
}

.about10-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 730px;
  margin-top: 28px;
}

.about10-proof-row article {
  padding: 18px 20px;
  border: 1px solid var(--about10-line);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.82),
    rgba(241, 245, 249, 0.58)
  );
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

html[data-theme="dark"] .about10-proof-row article {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.025)
  );
}

.about10-proof-row strong {
  display: block;
  color: var(--about10-gold);
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.about10-proof-row span {
  display: block;
  margin-top: 6px;
  color: var(--about10-muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
}

.about10-briefing-card {
  position: relative;
  width: min(100%, 570px);
  justify-self: end;
  padding: 20px;
  border-radius: 34px;
  background:
    linear-gradient(
      180deg,
      rgba(30, 115, 190, 0.96),
      rgba(7, 17, 29, 0.98) 72%
    ),
    var(--about10-navy);
  box-shadow: var(--about10-shadow-heavy);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: scale(0.94);
  transform-origin: center right;
}

.about10-briefing-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.about10-briefing-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: #ffffff;
}

.about10-briefing-head span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 950;
  letter-spacing: -0.055em;
}

.about10-briefing-head b {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 210, 0, 0.18);
  color: var(--about10-gold);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.about10-main-frame {
  position: relative;
  min-height: 350px;
  border-radius: 28px;
  border: 5px solid var(--about10-mint);
  background: #dbeafe;
  overflow: visible;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.about10-popout-image {
  position: absolute;
  inset: -42px 24px 0;
  border-radius: 22px;
  overflow: hidden;
  z-index: 1;
}

.about10-popout-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.02);
}

.about10-popout-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 17, 29, 0.04),
    rgba(7, 17, 29, 0.24)
  );
}

.about10-frame-label,
.about10-mini-grid span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 9px 13px;
  border-radius: 10px;
  background: rgba(7, 17, 29, 0.8);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 950;
  backdrop-filter: blur(14px);
}

.about10-check {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--about10-gold);
  color: #07111d;
  font-size: 1.35rem;
  font-weight: 950;
  box-shadow: 0 20px 42px rgba(7, 17, 29, 0.2);
}

.about10-check-a {
  left: 28px;
  top: -28px;
}
.about10-check-b {
  right: 22px;
  top: 42px;
}
.about10-check-c {
  right: 105px;
  bottom: 70px;
}

.about10-floating-note {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #07111d;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 40px rgba(7, 17, 29, 0.18);
  font-size: 0.72rem;
  font-weight: 950;
}

.about10-floating-note i {
  color: var(--about10-blue);
}

.about10-note-a {
  left: -18px;
  top: 72px;
}
.about10-note-b {
  right: -18px;
  bottom: 96px;
}

.about10-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}

.about10-mini-grid article {
  position: relative;
  min-height: 145px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.about10-mini-grid img {
  width: 100%;
  height: 100%;
  min-height: 145px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.about10-mini-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 29, 0.62));
}

.about10-mini-grid span {
  font-size: 0.68rem;
  left: 12px;
  bottom: 12px;
}

.about10-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.about10-controls span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
}

.about10-trust-strip {
  padding: 24px 0;
  border-top: 1px solid var(--about10-line);
  border-bottom: 1px solid var(--about10-line);
}

.about10-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.about10-trust-grid article {
  padding: 18px;
  border: 1px solid var(--about10-line);
  border-radius: 20px;
  background: var(--about10-glass);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.about10-trust-grid strong {
  display: block;
  color: var(--about10-ink);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.about10-trust-grid span {
  display: block;
  margin-top: 5px;
  color: var(--about10-muted);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.35;
}

.about10-image-stack {
  position: relative;
  border-radius: 32px;
}

.about10-image-stack::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 30px;
  border: 1px solid rgba(255, 210, 0, 0.2);
  background: rgba(255, 210, 0, 0.055);
  transform: rotate(8deg);
}

.about10-image-stack img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.about10-image-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 18px;
  border-radius: 18px;
  background: rgba(5, 11, 18, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.about10-image-note strong {
  display: block;
  color: var(--gold-500);
  font-size: 0.84rem;
  margin-bottom: 6px;
}

.about10-image-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.55;
}

.about10-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about10-card,
.about10-process-grid article,
.about10-dashboard-panel,
.about10-division-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--about10-line);
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.92),
    rgba(241, 245, 249, 0.7)
  );
  box-shadow: var(--about10-shadow);
}

html[data-theme="dark"] .about10-card,
html[data-theme="dark"] .about10-process-grid article,
html[data-theme="dark"] .about10-dashboard-panel,
html[data-theme="dark"] .about10-division-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.025)
  );
}

.about10-card {
  min-height: 305px;
  padding: 26px;
  transition: 0.24s ease;
}

.about10-card::after,
.about10-process-grid article::after,
.about10-dashboard-panel::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -85px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.14), transparent 70%);
  pointer-events: none;
}

.about10-card:hover,
.about10-process-grid article:hover,
.about10-division-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 210, 0, 0.42);
}

.about10-card > i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    var(--about10-gold),
    var(--about10-gold-soft)
  );
  color: #07111d;
  font-size: 1.15rem;
  box-shadow: 0 18px 36px rgba(255, 210, 0, 0.18);
}

.about10-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--about10-gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.about10-card h3,
.about10-process-grid h3,
.about10-division-card h2 {
  color: var(--about10-ink);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.about10-card h3 {
  font-size: 1.22rem;
}

.about10-card p,
.about10-process-grid p,
.about10-division-card p {
  color: var(--about10-muted);
  font-size: 0.88rem;
  line-height: 1.64;
}

.about10-proof-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 210, 0, 0.22);
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 210, 0, 0.12),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.028)
    );
  box-shadow: var(--shadow-soft);
}

.about10-proof-band h3 {
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.about10-mission-grid .portal-card {
  border-radius: 30px;
}

.about10-division-grid {
  display: grid;
  gap: 20px;
}

.about10-division-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
  transition: 0.24s ease;
}

.about10-division-img {
  position: relative;
  min-height: 300px;
  border-radius: 24px;
  overflow: visible;
}

.about10-division-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.35s ease;
}

.about10-division-card:hover img {
  transform: scale(1.025);
}

.about10-division-card > div:last-child {
  padding: 16px 12px;
}

.about10-division-card h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
}

.about10-dashboard-layout {
  grid-template-columns: 0.92fr 1.08fr;
}

.about10-dashboard-panel {
  padding: 22px;
}

.about10-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.about10-panel-top span {
  color: var(--about10-ink);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.about10-panel-top b {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about10-panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.about10-panel-metrics article {
  padding: 14px;
  border: 1px solid var(--about10-line);
  border-radius: 18px;
  background: var(--about10-glass);
  text-align: center;
}

.about10-panel-metrics strong {
  display: block;
  color: var(--about10-gold);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
}

.about10-panel-metrics span {
  display: block;
  margin-top: 7px;
  color: var(--about10-muted);
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.35;
}

.about10-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about10-process-grid article {
  min-height: 250px;
  padding: 24px;
  transition: 0.24s ease;
}

.about10-process-grid b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--about10-gold),
    var(--about10-gold-soft)
  );
  color: #07111d;
  font-size: 0.78rem;
  font-weight: 950;
}

.about10-team-grid .team-card {
  border-radius: 26px;
}

.about10-team-grid .team-card img {
  border-radius: 21px;
  object-position: top center;
}

.about10-cta {
  border-radius: 32px;
}

.floating-contact {
  z-index: 900;
}

@media (max-width: 1280px) {
  .about10-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
    gap: 34px;
  }

  .about10-hero-copy h1 {
    font-size: clamp(3.55rem, 5.7vw, 5.55rem);
  }

  .about10-briefing-card {
    transform: scale(0.91);
  }
}

@media (max-width: 1120px) {
  .about10-hero {
    min-height: auto;
    padding: 72px 0 64px;
  }

  .about10-hero-layout,
  .about10-dashboard-layout,
  .about10-division-card,
  .about10-proof-band {
    grid-template-columns: 1fr;
  }

  .about10-briefing-card {
    justify-self: start;
    width: min(100%, 640px);
    transform: none;
    transform-origin: center;
  }

  .about10-card-grid,
  .about10-process-grid,
  .about10-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .about10-hero-copy h1 {
    font-size: clamp(2.65rem, 11vw, 4.1rem);
    letter-spacing: -0.075em;
  }

  .about10-hero-copy p {
    font-size: 0.94rem;
  }

  .about10-proof-row,
  .about10-card-grid,
  .about10-process-grid,
  .about10-trust-grid,
  .about10-mini-grid,
  .about10-controls,
  .about10-panel-metrics {
    grid-template-columns: 1fr;
  }

  .about10-main-frame {
    min-height: 295px;
  }

  .about10-popout-image {
    inset: -34px 16px 0;
  }

  .about10-floating-note {
    display: none;
  }

  .about10-image-stack img,
  .about10-division-img,
  .about10-division-img img {
    height: 260px;
    min-height: 260px;
  }

  .about10-image-note {
    position: static;
    margin-top: 14px;
  }
}

@media (max-width: 560px) {
  .about10-hero {
    padding-top: 56px;
  }

  .about10-approval-card span,
  .about10-approval-card b {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .about10-briefing-card {
    padding: 14px;
    border-radius: 28px;
  }

  .about10-briefing-head span {
    font-size: 1.18rem;
  }

  .about10-main-frame {
    min-height: 235px;
    border-radius: 24px;
  }

  .about10-check {
    width: 44px;
    height: 44px;
    font-size: 1.05rem;
  }

  .about10-check-c {
    right: 70px;
    bottom: 54px;
  }

  .about10-card,
  .about10-process-grid article,
  .about10-dashboard-panel,
  .about10-division-card {
    padding: 20px;
    border-radius: 22px;
  }
}

/* =========================================================
   PPGL ABOUT PAGE CLEAN HERO REVISION
   Matches clean strength-card sketch
   Keep at bottom of about.css
========================================================= */

.about10-hero {
  min-height: calc(100vh - 72px);
  padding: 54px 0 44px !important;
  align-items: start;
}

.about10-hero .hero-grid-overlay {
  opacity: 0.14;
}

.about10-hero-layout {
  align-items: center;
  grid-template-columns: minmax(0, 1.06fr) minmax(430px, 0.9fr);
  gap: clamp(38px, 5.5vw, 86px);
  padding-top: 18px;
}

.about10-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(4.15rem, 6.4vw, 6.45rem);
  line-height: 0.94;
  letter-spacing: -0.09em;
}

.about10-hero-copy h1::after {
  content: ".";
  color: var(--about10-blue);
}

.about10-hero-copy p {
  max-width: 760px;
}

.about10-actions .btn {
  gap: 10px;
  min-height: 48px;
  padding-inline: 22px;
}

.about10-actions .btn i {
  font-size: 0.72rem;
}

.about10-approval-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  width: min(100%, 760px);
  margin-top: 28px;
  padding: 14px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 210, 0, 0.1), transparent 34%),
    rgba(255, 210, 0, 0.045);
}

.about10-approval-card span,
.about10-approval-card b {
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.about10-approval-card span {
  grid-column: auto;
  background: #07111d;
  color: #ffffff;
}

.about10-approval-card b {
  background: rgba(255, 255, 255, 0.88);
}

.about-quick-links {
  display: none;
}

/* Remove old image/video briefing visual from the About hero */
.about10-briefing-card,
.about10-main-frame,
.about10-mini-grid,
.about10-controls,
.about10-check,
.about10-floating-note {
  display: none !important;
}

/* Clean right-side strength card */
.about10-strength-card {
  position: relative;
  width: min(100%, 610px);
  justify-self: end;
  padding: 30px 34px 32px;
  border-radius: 30px;
  border: 1px solid rgba(30, 115, 190, 0.16);
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(30, 115, 190, 0.08),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(248, 250, 252, 0.82)
    );
  box-shadow: 0 34px 84px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

html[data-theme="dark"] .about10-strength-card {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(30, 115, 190, 0.18),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.085),
      rgba(255, 255, 255, 0.028)
    );
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.34);
}

.about10-strength-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 115, 190, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 115, 190, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.45;
  pointer-events: none;
}

.about10-strength-title {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--about10-blue);
}

.about10-strength-title i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--about10-blue);
  font-size: 2rem;
}

.about10-strength-title h2 {
  margin: 0;
  color: var(--about10-ink);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.about10-strength-list {
  position: relative;
  z-index: 2;
  display: grid;
}

.about10-strength-list article {
  display: grid;
  grid-template-columns: 72px 112px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

html[data-theme="dark"] .about10-strength-list article {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.about10-strength-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--about10-blue), #0b3c6d);
  color: #ffffff;
  font-size: 1.35rem;
  box-shadow: 0 16px 34px rgba(30, 115, 190, 0.22);
}

.about10-strength-list strong {
  color: var(--about10-blue);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 1;
}

.about10-strength-list article > div:last-child {
  padding-left: 24px;
  border-left: 1px solid rgba(15, 23, 42, 0.16);
}

html[data-theme="dark"] .about10-strength-list article > div:last-child {
  border-left-color: rgba(255, 255, 255, 0.15);
}

.about10-strength-list h3 {
  margin: 0 0 4px;
  color: var(--about10-ink);
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.about10-strength-list p {
  margin: 0;
  color: var(--about10-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about10-strength-note {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 20px;
  align-items: center;
  padding-top: 24px;
}

.about10-strength-note i {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(30, 115, 190, 0.22);
  background: rgba(30, 115, 190, 0.035);
  color: var(--about10-blue);
  font-size: 2rem;
}

.about10-strength-note p {
  margin: 0;
  color: var(--about10-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 430px;
}

/* Keep the rest of About page cleaner under the new hero */
.about10-trust-strip {
  display: none;
}

@media (max-width: 1280px) {
  .about10-hero-copy h1 {
    font-size: clamp(3.65rem, 5.8vw, 5.7rem);
  }

  .about10-strength-card {
    width: min(100%, 570px);
    padding: 28px;
  }

  .about10-strength-list article {
    grid-template-columns: 66px 96px 1fr;
    gap: 16px;
  }
}

@media (max-width: 1120px) {
  .about10-hero {
    min-height: auto;
    padding: 58px 0 56px !important;
  }

  .about10-hero-layout {
    grid-template-columns: 1fr;
  }

  .about10-strength-card {
    justify-self: start;
    width: min(100%, 720px);
  }
}

@media (max-width: 760px) {
  .about10-approval-card {
    grid-template-columns: 1fr;
  }

  .about10-strength-list article {
    grid-template-columns: 58px 84px 1fr;
    gap: 12px;
  }

  .about10-strength-icon {
    width: 54px;
    height: 54px;
  }

  .about10-strength-list article > div:last-child {
    padding-left: 14px;
  }

  .about10-strength-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .about10-hero {
    padding: 46px 0 44px !important;
  }

  .about10-hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 3.7rem);
  }

  .about10-strength-card {
    padding: 22px;
    border-radius: 24px;
  }

  .about10-strength-title {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .about10-strength-list article {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .about10-strength-list article > div:last-child {
    padding-left: 0;
    border-left: 0;
  }
}

/* =========================================================
   PPGL ABOUT PAGE FINAL STABILIZATION LAYER
   Purpose:
   - Makes About hero match Home hero sizing and first-screen fit
   - Fixes conflicting earlier About hero rules
   - Keeps the clean Strength Card visual
   - Improves responsive behavior and spacing consistency
========================================================= */

/* Page-level safety */
.about-page,
.about10-page {
  width: 100%;
  overflow-x: hidden;
}

.about-page main,
.about10-page main {
  overflow: hidden;
}

/* Match Home hero rhythm */
.about10-hero {
  min-height: auto !important;
  padding: 76px 0 60px !important;
  align-items: center !important;
}

.about10-hero .container {
  position: relative;
  z-index: 3;
}

/* Same visual scale as Home page */
.about10-hero-layout {
  grid-template-columns: 1fr 0.85fr !important;
  gap: 44px !important;
  align-items: center !important;
  padding-top: 0 !important;
}

/* Left copy block */
.about10-hero-copy {
  max-width: 850px !important;
}

.about10-hero-copy h1 {
  max-width: 850px !important;
  margin: 0 0 18px !important;
  font-size: clamp(2.8rem, 4.9vw, 4.85rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.075em !important;
  text-wrap: balance;
}

.about10-hero-copy h1::after {
  content: "." !important;
  color: var(--about10-blue);
}

.about10-hero-copy p {
  max-width: 680px !important;
  color: var(--about10-muted);
  font-size: 0.96rem !important;
  line-height: 1.68 !important;
}

/* Buttons aligned with Home hero */
.about10-actions {
  margin-top: 22px !important;
}

.about10-actions .btn {
  min-height: 42px !important;
  padding: 10px 17px !important;
  gap: 9px;
}

/* Approval card should support the hero, not enlarge it */
.about10-approval-card {
  width: min(100%, 680px) !important;
  margin-top: 16px !important;
  padding: 10px !important;
  border-radius: 20px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.about10-approval-card span,
.about10-approval-card b {
  min-height: 38px !important;
  padding: 9px 12px !important;
  font-size: 0.72rem !important;
}

/* Old visual system remains off */
.about10-briefing-card,
.about10-main-frame,
.about10-mini-grid,
.about10-controls,
.about10-check,
.about10-floating-note {
  display: none !important;
}

/* Right-side strength card resized to fit like Home page media card */
.about10-strength-card {
  width: min(100%, 520px) !important;
  justify-self: end !important;
  padding: 24px 28px 26px !important;
  border-radius: 28px !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13) !important;
}

html[data-theme="dark"] .about10-strength-card {
  box-shadow: 0 26px 66px rgba(0, 0, 0, 0.32) !important;
}

.about10-strength-title {
  grid-template-columns: 48px 1fr !important;
  gap: 14px !important;
  padding-bottom: 14px !important;
  border-bottom-width: 3px !important;
}

.about10-strength-title i {
  width: 42px !important;
  height: 42px !important;
  font-size: 1.65rem !important;
}

.about10-strength-title h2 {
  font-size: clamp(1.35rem, 1.9vw, 1.75rem) !important;
  line-height: 1.1 !important;
}

.about10-strength-list article {
  grid-template-columns: 62px 92px 1fr !important;
  gap: 16px !important;
  padding: 18px 0 !important;
}

.about10-strength-icon {
  width: 56px !important;
  height: 56px !important;
  border-radius: 14px !important;
  font-size: 1.15rem !important;
}

.about10-strength-list strong {
  font-size: clamp(1.7rem, 3vw, 2.35rem) !important;
}

.about10-strength-list article > div:last-child {
  padding-left: 18px !important;
}

.about10-strength-list h3 {
  font-size: 0.9rem !important;
  margin-bottom: 4px !important;
}

.about10-strength-list p {
  font-size: 0.84rem !important;
  line-height: 1.45 !important;
}

.about10-strength-note {
  grid-template-columns: 62px 1fr !important;
  gap: 16px !important;
  padding-top: 18px !important;
}

.about10-strength-note i {
  width: 58px !important;
  height: 58px !important;
  font-size: 1.65rem !important;
}

.about10-strength-note p {
  max-width: 390px !important;
  font-size: 0.86rem !important;
  line-height: 1.58 !important;
}

/* Keep hidden duplicate trust strip under hero */
.about10-trust-strip {
  display: none !important;
}

/* Smooth card polish across About content */
.about10-card,
.about10-process-grid article,
.about10-dashboard-panel,
.about10-division-card,
.team-card {
  will-change: transform;
}

.about10-card:hover,
.about10-process-grid article:hover,
.about10-division-card:hover,
.team-card:hover {
  transform: translateY(-5px);
}

/* Desktop fit refinement */
@media (max-width: 1280px) {
  .about10-hero-layout {
    grid-template-columns: 1fr 0.82fr !important;
    gap: 36px !important;
  }

  .about10-strength-card {
    width: min(100%, 500px) !important;
    padding: 22px 24px 24px !important;
  }

  .about10-strength-list article {
    grid-template-columns: 58px 82px 1fr !important;
    gap: 14px !important;
  }

  .about10-strength-list p {
    font-size: 0.8rem !important;
  }
}

/* Tablet */
@media (max-width: 1120px) {
  .about10-hero {
    padding: 58px 0 56px !important;
  }

  .about10-hero-layout {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .about10-strength-card {
    justify-self: start !important;
    width: min(100%, 720px) !important;
  }

  .about10-strength-list article {
    grid-template-columns: 64px 100px 1fr !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .about10-hero {
    padding: 52px 0 48px !important;
  }

  .about10-approval-card {
    grid-template-columns: 1fr !important;
  }

  .about10-strength-card {
    width: 100% !important;
  }

  .about10-strength-list article {
    grid-template-columns: 56px 84px 1fr !important;
    gap: 12px !important;
  }

  .about10-strength-icon {
    width: 52px !important;
    height: 52px !important;
  }

  .about10-strength-list article > div:last-child {
    padding-left: 12px !important;
  }

  .about10-strength-note {
    grid-template-columns: 1fr !important;
  }
}

/* Small mobile */
@media (max-width: 560px) {
  .about10-hero {
    padding: 46px 0 44px !important;
  }

  .about10-hero-copy h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem) !important;
    line-height: 0.98 !important;
  }

  .about10-hero-copy p {
    font-size: 0.9rem !important;
  }

  .about10-strength-card {
    padding: 20px !important;
    border-radius: 24px !important;
  }

  .about10-strength-title {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }

  .about10-strength-list article {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    align-items: start !important;
  }

  .about10-strength-list article > div:last-child {
    padding-left: 0 !important;
    border-left: 0 !important;
  }

  .about10-strength-note i {
    width: 54px !important;
    height: 54px !important;
  }
}

/* =========================================================
   LOGO IMAGE INSERTS — GHANA / PC / ML / ERP
   Added for About hero approval chips and strength card.
========================================================= */

.about10-chip-logo {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex: 0 0 22px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
}

.about10-approval-card span .about10-chip-logo {
  width: 24px;
  height: 24px;
}

.about10-approval-card b .about10-chip-logo {
  width: 22px;
  height: 22px;
}

.about10-strength-icon.about10-strength-logo {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(30, 115, 190, 0.12);
  box-shadow: 0 16px 34px rgba(30, 115, 190, 0.16);
}

.about10-strength-icon.about10-strength-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 7px;
}

.about10-strength-icon.about10-strength-logo img[src*="ghana_flag"] {
  object-fit: cover;
  padding: 0;
}

.about10-strength-icon.about10-strength-logo img[src*="favicon"] {
  padding: 9px;
}

html[data-theme="dark"] .about10-strength-icon.about10-strength-logo,
html[data-theme="dark"] .about10-chip-logo {
  background: rgba(255, 255, 255, 0.96);
}

/* Keep approval card chips neat after image insertion */
.about10-approval-card span,
.about10-approval-card b {
  min-width: 0;
}

@media (max-width: 760px) {
  .about10-chip-logo {
    width: 20px;
    height: 20px;
  }

  .about10-strength-icon.about10-strength-logo img {
    padding: 6px;
  }

  .about10-strength-icon.about10-strength-logo img[src*="ghana_flag"] {
    padding: 0;
  }
}

/* =========================================================
   PPGL ABOUT PAGE - 9.8 MAKEOVER OVERRIDE LAYER
   Keeps existing navy / gold / blue identity.
   Load after style.css.
========================================================= */

.about10-page {
  --about-card-radius: 30px;
  --about-text-measure: 74ch;
}

.about10-page .section-kicker,
.about10-page .eyebrow {
  letter-spacing: 0.16em;
}

.about10-hero {
  padding-top: clamp(84px, 9vw, 128px);
  padding-bottom: clamp(74px, 8vw, 104px);
}

.about10-hero-copy h1 {
  max-width: 980px;
  font-size: clamp(3.1rem, 6.1vw, 6.7rem);
  line-height: 0.92;
}

.about10-hero-copy p {
  max-width: 780px;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.78;
}

.about10-approval-card {
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 210, 0, 0.12), rgba(30, 115, 190, 0.08)),
    rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
}

html[data-theme="dark"] .about10-approval-card {
  background:
    linear-gradient(135deg, rgba(255, 210, 0, 0.12), rgba(30, 115, 190, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.about10-strength-card {
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 210, 0, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(7, 17, 29, 0.97), rgba(8, 24, 39, 0.98));
  box-shadow: 0 38px 100px rgba(7, 17, 29, 0.34);
}

.about10-strength-title h2 {
  letter-spacing: -0.045em;
}

.about10-strength-list article {
  border-radius: 22px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.about10-strength-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 210, 0, 0.36);
  background: rgba(255, 255, 255, 0.085);
}

.about10-trust-grid article {
  border-radius: 24px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease;
}

.about10-trust-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 210, 0, 0.36);
}

.about-copy h2,
.section-heading h2,
.dashboard-copy h2,
.about10-cta h2 {
  text-wrap: balance;
}

.about-copy p,
.section-heading p,
.dashboard-copy p,
.about10-cta p {
  max-width: var(--about-text-measure);
}

.about10-card,
.about10-process-grid article,
.about10-dashboard-panel,
.about10-division-card,
.about10-mission-grid .portal-card,
.about10-proof-band {
  border-radius: var(--about-card-radius);
}

.about10-card {
  min-height: 330px;
}

.about10-card h3 {
  font-size: 1.34rem;
}

.about10-card p,
.about10-process-grid p,
.about10-division-card p {
  font-size: 0.91rem;
}

.about10-proof-band {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 210, 0, 0.14), transparent 30%),
    radial-gradient(
      circle at 95% 82%,
      rgba(30, 115, 190, 0.13),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.035)
    );
}

html[data-theme="light"] .about10-proof-band {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 210, 0, 0.18), transparent 30%),
    radial-gradient(
      circle at 95% 82%,
      rgba(30, 115, 190, 0.1),
      transparent 32%
    ),
    linear-gradient(145deg, #ffffff, rgba(241, 245, 249, 0.9));
}

.about10-division-card {
  padding: 22px;
}

.about10-division-card .btn {
  margin-top: 10px;
}

.about10-dashboard-panel {
  box-shadow: 0 34px 86px rgba(7, 17, 29, 0.16);
}

.about10-process-grid article b {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  color: #07111d;
  box-shadow: 0 16px 34px rgba(255, 210, 0, 0.16);
}

.about10-team-grid .team-card {
  border-radius: 26px;
}

.about10-team-grid .team-card img {
  border-radius: 20px;
}

.about10-cta {
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 210, 0, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 70%,
      rgba(30, 115, 190, 0.13),
      transparent 28%
    ),
    linear-gradient(145deg, var(--panel), rgba(255, 255, 255, 0.035));
}

html[data-theme="light"] .about10-cta {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 210, 0, 0.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 70%,
      rgba(30, 115, 190, 0.1),
      transparent 28%
    ),
    linear-gradient(145deg, #ffffff, #f8fafc);
}

/* Premium footer contact cards */
.about-page .footer-contact-block {
  min-width: 0;
}

.about-page .footer-contact-block h3 {
  margin-bottom: 16px;
}

.about-page .footer-contact-item {
  display: flex !important;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 14px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.about-page .footer-contact-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 210, 0, 0.34);
  background: rgba(255, 255, 255, 0.075);
}

.about-page .footer-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 15px;
  background: rgba(255, 210, 0, 0.09);
  border: 1px solid rgba(255, 210, 0, 0.2);
  color: var(--gold-500) !important;
  font-size: 1.05rem;
}

.about-page .footer-contact-item h4 {
  margin: 0 0 5px;
  color: #ffffff !important;
  font-size: 0.86rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-page .footer-contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.79rem;
  line-height: 1.45;
}

.about-page .footer-contact-item:hover h4,
.about-page .footer-contact-item:hover p {
  color: #ffffff !important;
}

@media (max-width: 1080px) {
  .about10-hero-layout {
    grid-template-columns: 1fr;
  }

  .about10-strength-card {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  .about10-hero-copy h1 {
    font-size: clamp(2.55rem, 14vw, 4.1rem);
  }

  .about10-approval-card span,
  .about10-approval-card b {
    white-space: normal;
  }

  .about10-card {
    min-height: auto;
  }
}
/* =========================================================
   LIGHT MODE FIX — KEEP STRENGTH CARD DARK
========================================================= */

html[data-theme="light"] .about10-strength-card {
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(30, 115, 190, 0.18),
      transparent 32%
    ),
    linear-gradient(145deg, #07111d, #081827) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  box-shadow: 0 34px 84px rgba(7, 17, 29, 0.28) !important;
}

html[data-theme="light"] .about10-strength-title h2,
html[data-theme="light"] .about10-strength-list h3 {
  color: #ffffff !important;
}

html[data-theme="light"] .about10-strength-title i,
html[data-theme="light"] .about10-strength-list strong,
html[data-theme="light"] .about10-strength-note i {
  color: var(--about10-blue) !important;
}

html[data-theme="light"] .about10-strength-list p,
html[data-theme="light"] .about10-strength-note p {
  color: rgba(255, 255, 255, 0.72) !important;
}

html[data-theme="light"] .about10-strength-list article {
  border-bottom-color: rgba(255, 255, 255, 0.12) !important;
}

html[data-theme="light"] .about10-strength-list article > div:last-child {
  border-left-color: rgba(255, 255, 255, 0.14) !important;
}

html[data-theme="light"] .about10-strength-note i {
  border-color: rgba(30, 115, 190, 0.35) !important;
  background: rgba(30, 115, 190, 0.08) !important;
}
