/* ==== Contact / About Page — Redesign ==== */

/* Hero */
.aboutHero {
  position: relative;
  overflow: hidden;
  background: #0a0d0b;
}
.aboutHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(50, 240, 140, .12), transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 70%, rgba(16, 185, 129, .08), transparent 60%);
  pointer-events: none;
}
.aboutHero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 65% 60% at 50% 50%, #000 25%, transparent 75%);
  mask-image: radial-gradient(ellipse 65% 60% at 50% 50%, #000 25%, transparent 75%);
  pointer-events: none;
}
.aboutHero .sectionInner {
  padding-block: 120px 100px;
  position: relative;
  z-index: 1;
}
.aboutHeroContent {
  max-width: 880px;
}
.aboutBreadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  margin-bottom: 24px;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
}
.aboutBreadcrumb i { color: #32f08c; }
.aboutBreadcrumb a {
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  transition: color .2s ease;
}
.aboutBreadcrumb a:hover { color: #32f08c; }
.aboutBreadcrumb .sep { color: rgba(255, 255, 255, .25); }

.aboutHeroTitle {
  margin: 0 0 24px;
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -.03em;
}
.aboutHeroTitle .line1 { display: block; color: rgba(255, 255, 255, .55); font-weight: 500; }
.aboutHeroTitle .line2 { display: block; }
.aboutHeroTitle .accent {
  background: linear-gradient(120deg, #a0fde7 0%, #32f08c 45%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.aboutHeroSubtitle {
  max-width: 680px;
  margin: 0 0 40px;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
}
.aboutHeroBadges {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(50, 240, 140, .08);
  border: 1px solid rgba(50, 240, 140, .25);
  border-radius: 999px;
  color: #32f08c;
  font-size: 13px;
  font-weight: 500;
}
.aboutHeroBadges .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32f08c;
  box-shadow: 0 0 0 4px rgba(50, 240, 140, .18);
  animation: aboutPulse 2s ease-in-out infinite;
}
@keyframes aboutPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .4; }
}

/* Stats Bar */
.aboutStatsBar {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #0a0d0b 0%, #0a0b0d 100%);
  border-top: 1px solid rgba(50, 240, 140, .15);
  border-bottom: 1px solid rgba(50, 240, 140, .15);
}
.aboutStatsBar .sectionInner { padding-block: 0; }
.aboutStatsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.aboutStatCell {
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}
.aboutStatCell:last-child { border-right: none; }
.aboutStatCell:hover { background: rgba(50, 240, 140, .03); }
.aboutStatCell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: #32f08c;
  transition: height .35s ease;
}
.aboutStatCell:hover::before { height: 100%; }
.aboutStatValue {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  margin-bottom: 8px;
}
.aboutStatValue .unit {
  font-size: .5em;
  color: #32f08c;
  margin-left: 4px;
  font-weight: 600;
}
.aboutStatLabel {
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
}

/* Section Base */
.aboutSection {
  background: #0a0b0d;
  padding: 0;
}
.aboutSection .sectionInner {
  padding-block: 96px;
}
.aboutSectionKicker {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(50, 240, 140, .35);
  border-radius: 999px;
  color: #32f08c;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(50, 240, 140, .06);
  margin-bottom: 18px;
}
.aboutSectionTitle {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.aboutSectionDesc {
  color: rgba(255, 255, 255, .65);
  font-size: 16px;
  line-height: 1.75;
  max-width: 640px;
}
.aboutSectionHead { margin-bottom: 56px; }
.aboutSectionHead.centered { text-align: center; }
.aboutSectionHead.centered .aboutSectionDesc { margin: 0 auto; }

/* Story: mission + values inline layout */
.aboutStoryLayout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 60px;
  align-items: start;
}
.aboutStoryText h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.aboutStoryText h3 .aboutBar {
  width: 4px;
  height: 22px;
  background: linear-gradient(180deg, #32f08c, #10b981);
  border-radius: 2px;
}
.aboutStoryText p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.85;
}
.aboutStoryText p:last-child { margin-bottom: 0; }

.aboutPillarsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.aboutPillar {
  padding: 28px 24px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  position: relative;
  transition: all .3s ease;
  overflow: hidden;
}
.aboutPillar::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(50, 240, 140, .12), transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
}
.aboutPillar:hover {
  border-color: rgba(50, 240, 140, .35);
  transform: translateY(-4px);
  background: rgba(50, 240, 140, .02);
}
.aboutPillar:hover::before { opacity: 1; }
.aboutPillarNum {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  color: #32f08c;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.aboutPillarIcon {
  font-size: 24px;
  color: #32f08c;
  margin-bottom: 14px;
}
.aboutPillar h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.aboutPillar p {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 13.5px;
  line-height: 1.7;
}

/* Journey Timeline */
.aboutJourneyWrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.aboutJourneyWrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(50, 240, 140, .4), rgba(50, 240, 140, .4), transparent);
  transform: translateX(-50%);
}
.aboutJourneyItem {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.aboutJourneyItem:last-child { margin-bottom: 0; }
.aboutJourneyCard {
  padding: 22px 24px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  transition: all .3s ease;
}
.aboutJourneyCard:hover {
  background: rgba(50, 240, 140, .04);
  border-color: rgba(50, 240, 140, .3);
  transform: translateY(-3px);
}
.aboutJourneyYear {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  color: #32f08c;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.aboutJourneyCard h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.aboutJourneyCard p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13.5px;
  line-height: 1.65;
}
.aboutJourneyDot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0a0b0d;
  border: 3px solid #32f08c;
  box-shadow: 0 0 0 4px rgba(50, 240, 140, .15);
  z-index: 2;
}
.aboutJourneyItem.right .aboutJourneyCard:first-child,
.aboutJourneyItem.left .aboutJourneyCard:last-child {
  visibility: hidden;
  pointer-events: none;
}
.aboutJourneyItem.left .aboutJourneyCard { text-align: right; }

/* Contact Grid — 4 channels */
.aboutChannelsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.aboutChannel {
  padding: 32px 24px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 18px;
  text-align: left;
  transition: all .3s ease;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.aboutChannel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(50, 240, 140, .06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.aboutChannel:hover {
  border-color: rgba(50, 240, 140, .4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}
.aboutChannel:hover::after { opacity: 1; }
.aboutChannelIcon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(50, 240, 140, .18) 0%, rgba(16, 185, 129, .1) 100%);
  border: 1px solid rgba(50, 240, 140, .3);
  color: #32f08c;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.aboutChannel h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
  position: relative;
  z-index: 1;
}
.aboutChannel .aboutChannelValue {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  word-break: break-all;
  position: relative;
  z-index: 1;
}
.aboutChannel .aboutChannelCTA {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #32f08c;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: gap .3s ease;
}
.aboutChannel:hover .aboutChannelCTA { gap: 10px; }

/* Location (map removed) */
.aboutLocation {
  margin-bottom: 48px;
}
.aboutLocationInfo {
  padding: 40px;
  background:
    radial-gradient(ellipse 40% 100% at 100% 0%, rgba(50, 240, 140, .1), transparent 55%),
    radial-gradient(ellipse 40% 100% at 0% 100%, rgba(16, 185, 129, .06), transparent 55%),
    rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
}
.aboutLocationInfo h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.aboutLocationInfo p.aboutLocationAddress {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.75;
}
.aboutLocationMeta {
  border-top: 1px dashed rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.aboutLocationMeta .item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aboutLocationMeta .label {
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
}
.aboutLocationMeta .value {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.aboutLocationNotice {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, .1);
  color: rgba(255, 179, 179, .85);
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}
.aboutLocationNotice i { color: #ff8b8b; margin-top: 2px; }

/* Certificates */
.aboutCredentials {
  padding: 40px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
}
.aboutCredentialsHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.aboutCredentialsHead h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.aboutCredentialsHead h3 i { color: #32f08c; }
.aboutCredentialsHead p {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
}
.aboutCredentialsList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.aboutCredCard {
  position: relative;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .3s ease;
}
.aboutCredCard:hover { transform: translateY(-4px) scale(1.01); }
.aboutCredCard img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.aboutCredCard .aboutCredTag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, .75);
  color: #32f08c;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  border-radius: 999px;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
}

/* CTA */
.aboutCTA {
  position: relative;
  overflow: hidden;
  padding: 72px 48px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(50, 240, 140, .12), transparent 60%),
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(16, 185, 129, .08), transparent 60%),
    rgba(255, 255, 255, .02);
  border: 1px solid rgba(50, 240, 140, .2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.aboutCTAText h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.aboutCTAText p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
}
.aboutCTABtns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.aboutCTABtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s ease;
  white-space: nowrap;
}
.aboutCTABtn.primary {
  background: linear-gradient(135deg, #32f08c 0%, #10b981 100%);
  color: #0a0d0b;
  box-shadow: 0 12px 30px rgba(50, 240, 140, .3);
}
.aboutCTABtn.primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(50, 240, 140, .45); }
.aboutCTABtn.ghost {
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  background: rgba(255, 255, 255, .04);
}
.aboutCTABtn.ghost:hover { border-color: #32f08c; color: #32f08c; background: rgba(50, 240, 140, .06); }

/* ==== Responsive ==== */
@media (max-width: 1200px) {
  .aboutStoryLayout { grid-template-columns: 1fr; gap: 40px; }
  .aboutChannelsGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .aboutStatsGrid { grid-template-columns: repeat(2, 1fr); }
  .aboutStatCell {
    border-right: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }
  .aboutStatCell:nth-child(2n) { border-right: none; }
  .aboutStatCell:nth-child(n+3) { border-bottom: none; }
  .aboutLocationMeta { grid-template-columns: repeat(2, 1fr); }
  .aboutCTA { grid-template-columns: 1fr; text-align: center; padding: 56px 32px; }
  .aboutCTABtns { justify-content: center; }
  .aboutJourneyItem {
    grid-template-columns: 30px 1fr;
    gap: 20px;
    text-align: left;
  }
  .aboutJourneyWrap::before { left: 15px; }
  .aboutJourneyItem.right .aboutJourneyCard:first-child,
  .aboutJourneyItem.left .aboutJourneyCard:last-child { display: none; }
  .aboutJourneyItem.left .aboutJourneyCard { text-align: left; }
  .aboutJourneyDot { justify-self: start; }
}
@media (max-width: 744px) {
  .aboutHero .sectionInner { padding-block: 80px 60px; }
  .aboutSection .sectionInner { padding-block: 64px; }
  .aboutSectionHead { margin-bottom: 36px; }
  .aboutChannelsGrid { grid-template-columns: 1fr; }
  .aboutStatCell { padding: 28px 20px; }
  .aboutPillarsGrid { grid-template-columns: 1fr; }
  .aboutCredentialsList { grid-template-columns: 1fr; }
  .aboutLocationInfo { padding: 28px; }
  .aboutCredentials { padding: 28px; }
  .aboutLocationMeta { grid-template-columns: 1fr; }
}
