/* ============================================================
   JETEDCO ABOUT PAGE — Styles
   ============================================================ */

/* --- Hero --- */
.ab-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.ab-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ab-hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 32px 80px;
  max-width: 860px;
}
.ab-hero-headline {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-top: 24px;
  max-width: 780px;
}

/* --- Intro --- */
.ab-intro {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ab-intro::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 280px;
  font-weight: 900;
  color: rgba(86,145,218,0.06);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.ab-intro-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ab-intro-content p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}
.ab-intro-content p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--black);
  font-size: 19px;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 2px solid var(--accent);
  display: inline-block;
}

/* --- What Makes Us Different --- */
.ab-different {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
  position: relative;
}
.ab-different .hp-label--accent {
  color: var(--accent-light);
}
.ab-different .hp-label-dot {
  background: var(--accent);
}
.ab-different-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ab-section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-top: 20px;
}
.ab-different .ab-section-title {
  color: var(--white);
}
.ab-different-body p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}
.ab-different-body p:last-child { margin-bottom: 0; }

/* --- Pillars --- */
.ab-pillars {
  padding: 100px 0;
}
.ab-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ab-pillar {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.ab-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.ab-pillar:hover::before {
  transform: scaleX(1);
}
.ab-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.ab-pillar-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--accent);
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 24px;
}
.ab-pillar h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 12px;
}
.ab-pillar p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- Experience / Jordan --- */
.ab-experience {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ab-experience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ab-experience-visual {
  position: relative;
}
.ab-experience-photo {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ab-experience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.ab-experience-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.4;
  z-index: 0;
}
.ab-experience-content .ab-section-title {
  margin-top: 20px;
}
.ab-experience-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 20px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .ab-different-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ab-experience-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .ab-pillars-grid {
    grid-template-columns: 1fr;
  }
  .ab-hero-content {
    padding: 120px 20px 60px;
  }
  .ab-intro::before {
    font-size: 160px;
  }
}
