.aboutPage {
  background: var(--white);
}

.pageHero {
  min-height: 420px;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.pageHeroBg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0a1628 0%, #112040 40%, #1a3a5c 100%);
}

.pageHeroPattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9923a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pageHeroGlow {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 146, 58, 0.08) 0%, transparent 70%);
}

.heroContainer {
  position: relative;
  z-index: 2;
  width: 100%;
}

.pageHeroInner {
  display: block;
}

.pageHeroLeft {
  position: relative;
  max-width: 680px;
}

.pageHeroBreadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.pageHeroBreadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.pageHeroBreadcrumb a:hover {
  color: var(--gold);
}

.separator {
  color: rgba(255, 255, 255, 0.35);
}

.current {
  color: var(--gold);
}

.pageHeroTitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.pageHeroSub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 480px;
}

.pageHeroWave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.pageHeroWave svg {
  display: block;
  width: 100%;
}

.aboutIntro {
  padding: 80px 0;
  background: var(--off-white);
}

.mediaBlock {
  position: relative;
}

.aboutIntroImage {
  width: 100%;
  height: 440px;
  position: relative;
  border-radius: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.aboutIntroImageInner {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #c8d8e8 0%, #a0b8cc 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7090a8;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aboutText {
  font-size: 0.93rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.aboutBullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.2rem 0;
}

.aboutBullet {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: #4a5568;
}

.aboutBullet::before {
  content: '*';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.statsBand {
  background: var(--navy);
  padding: 50px 0;
}

.statsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.statItem {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(201, 146, 58, 0.15);
}

.statItem:last-child {
  border-right: none;
}

.statNum {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.statLabel {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.awardSection {
  padding: 80px 0;
  background: var(--white);
}

.awardsGrid {
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.awardCard {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.awardCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.14);
}

.awardImage {
  background: linear-gradient(135deg, #c8d8e8, #a0b8cc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7090a8;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  position: relative;
  text-transform: uppercase;
  min-height: 80px;
}

.awardImageImg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.awardBadge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.awardBody {
  padding: 1.5rem;
}

.awardIcon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 146, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.awardTitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.awardDescription {
  font-size: 0.83rem;
  color: #6a7a90;
  line-height: 1.7;
}

.serviceBand {
  background: var(--navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.serviceBandBg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

.serviceBandOverlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9923a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.serviceBand :global(.container) {
  position: relative;
  z-index: 1;
}

.serviceSubtitle {
  color: rgba(255, 255, 255, 0.45);
}

.serviceCard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 146, 58, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.serviceCard:hover {
  border-color: var(--gold);
  background: rgba(201, 146, 58, 0.07);
  transform: translateY(-4px);
}

.serviceCardImage {
  height: 170px;
  background: linear-gradient(135deg, #1e3a5f, #2a5a8a);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  position: relative;
  text-transform: uppercase;
}

.serviceCardIcon {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(201, 146, 58, 0.4);
  color: var(--white);
}

.serviceCardIcon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.serviceCardBody {
  padding: 2rem 1.2rem 1.2rem;
  text-align: center;
}

.serviceCardTitle {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.serviceCardSub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.founders {
  padding: 80px 0;
  background: var(--off-white);
}

.foundersLayout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.founderText {
  padding: 1rem;
}

.foundersLayout .founderText:first-child {
  text-align: right;
}

.founderName {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.founderRole {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.founderBio {
  font-size: 0.85rem;
  color: #5a6a80;
  line-height: 1.8;
  text-align: justify;
}

.founderQuote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  font-size: 0.88rem;
  color: #6a7a90;
}

.founderQuoteRight {
  border-left: none;
  border-right: 3px solid var(--gold);
  padding-left: 0;
  padding-right: 1rem;
  margin-left: auto;
}

.foundersImages {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  justify-content: center;
}

.founderImage {
  width: 160px;
  border-radius: 12px;
  overflow: hidden;
}

.founderImageInner {
  width: 100%;
  height: 280px;
  background: linear-gradient(160deg, #c8d8e8 0%, #a0b8cc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8090a8;
  font-size: 0.75rem;
}

.founderImageTall .founderImageInner {
  height: 280px;
}

.partnerSection {
  padding: 60px 0;
  background: var(--white);
}

.partnersGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.partnerCard {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 32px rgba(10, 22, 40, 0.07);
  border: 1px solid rgba(10, 22, 40, 0.06);
}

.partnerImage {
  width: 180px;
  height: 220px;
  border-radius: 12px;
  background: linear-gradient(160deg, #c8d8e8 0%, #a0b8cc 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8090a8;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.partnerLabel {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.partnerName {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.partnerRole {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.partnerBio {
  font-size: 0.87rem;
  color: #5a6a80;
  line-height: 1.85;
  text-align: justify;
}

.visitingCards {
  padding: 70px 0;
  background: var(--off-white);
}

.vcardGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vcard {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.1);
  transition: all var(--transition);
  background: var(--white);
  min-height: 200px;
}

.vcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.15);
}

.vcardLeft {
  background: #c9b97a;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.vcardName {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
  line-height: 1.25;
}

.vcardRole {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 0.5rem;
}

.vcardQualifications,
.vcardMember {
  font-size: 0.78rem;
  color: var(--navy);
  opacity: 0.75;
  font-weight: 500;
}

.vcardMember {
  margin-top: 0.35rem;
}

.vcardRight {
  background: var(--white);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
}

.vcardDetail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #4a5568;
  line-height: 1.5;
}

.vcardIcon {
  min-width: 2.2rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  background: rgba(201, 146, 58, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.vcardIcon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.teamSection {
  padding: 70px 0;
  background: var(--white);
}

.teamPrimaryRow {
  display: grid;
  gap: 2rem;
}

.teamLayerBlock {
  display: grid;
  gap: 1rem;
}

.teamLayerRow {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: center;
}

.teamCircleItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  padding: 1.15rem 1rem 1rem;
  min-width: 150px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.98)),
    linear-gradient(135deg, rgba(201, 146, 58, 0.08), rgba(26, 61, 109, 0.04));
  border: 1px solid rgba(17, 47, 88, 0.08);
  box-shadow: 0 14px 36px rgba(10, 22, 40, 0.08);
}

.teamCircleItem:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 146, 58, 0.28);
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.12);
}

.teamCircle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45), transparent 45%),
    linear-gradient(135deg, #d0a64e, #b88427);
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 8px 22px rgba(201, 146, 58, 0.26),
    inset 0 -6px 12px rgba(122, 74, 8, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.teamCircleItem:hover .teamCircle {
  border-color: rgba(255, 255, 255, 1);
  box-shadow:
    0 12px 28px rgba(201, 146, 58, 0.34),
    inset 0 -6px 12px rgba(122, 74, 8, 0.2);
}

.teamCircle svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.teamCircleSmallItem {
  min-width: 126px;
  max-width: 126px;
}

.teamCircleSmall {
  width: 68px;
  height: 68px;
}

.teamCircleSmall svg {
  width: 28px;
  height: 28px;
}

.teamName,
.teamSmallName {
  color: var(--navy);
  text-align: center;
  line-height: 1.3;
}

.teamName {
  max-width: 118px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #17365f;
}

.teamSmallName {
  font-size: 0.68rem;
  font-weight: 700;
  color: #17365f;
}

.teamRole,
.teamSmallRole {
  color: #8f671f;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.teamRole {
  font-size: 0.68rem;
}

.teamSmallRole {
  font-size: 0.6rem;
}

.revealUp,
.revealLeft,
.revealRight {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.revealUp {
  transform: translateY(30px);
}

.revealLeft {
  transform: translateX(-30px);
}

.revealRight {
  transform: translateX(30px);
}

.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .statsGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .statItem:nth-child(2) {
    border-right: none;
  }

  .statItem:nth-child(3),
  .statItem:nth-child(4) {
    border-top: 1px solid rgba(201, 146, 58, 0.15);
  }

  .statItem:nth-child(4) {
    border-right: none;
  }

  .foundersLayout {
    grid-template-columns: 1fr;
  }

  .vcardGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pageHero {
    min-height: 320px;
  }

  .partnerCard {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .partnerImage {
    margin: 0 auto;
  }

  .vcard {
    grid-template-columns: 1fr;
  }

  .teamPrimaryRow {
    gap: 1.2rem;
  }

  .foundersImages {
    flex-direction: column;
    align-items: center;
  }

  .foundersLayout .founderText:first-child {
    text-align: left;
  }

  .founderQuoteRight {
    border-right: none;
    border-left: 3px solid var(--gold);
    padding-right: 0;
    padding-left: 1rem;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .statsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
