/* =========================================================================
   ABOUT.CSS — About Us page sections only
   (Hero + CTA band use shared component.css styles.)
   ========================================================================= */

/* ---- 02 A New Chapter (announcement card) ----------------------------- */
.about-new-chapter {
  background: var(--surface-light);
  padding: var(--section-pad) 0;
}

.new-chapter-inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-sm);
}

.new-chapter-flag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.new-chapter-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
}

.new-chapter-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold-light);
  animation: topbar-pulse 1.8s ease-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .new-chapter-dot::before {
    animation: none;
  }
}

.new-chapter-inner .section-title {
  margin-bottom: 16px;
}

.new-chapter-inner p {
  color: var(--text-body);
  line-height: 1.8;
  margin: 0;
}

/* ---- 03 Company Story (two-column) ------------------------------------ */
.about-story {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.story-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}

.story-content p {
  color: var(--text-body);
  margin-bottom: 16px;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-media img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---- 04 CMCA Hiring Standard ------------------------------------------ */
.hiring-standard {
  background: var(--surface-light);
  padding: var(--section-pad) 0;
}

.hiring-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.hiring-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hiring-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.hiring-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--icon-bg);
  color: var(--icon);
  font-size: 1.5rem;
}

.hiring-title {
  color: var(--navy);
  margin-bottom: 10px;
}

.hiring-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- 05 In-House GC Feature ------------------------------------------- */
.gc-feature {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.gc-feature-inner {
  max-width: 760px;
  text-align: center;
}

.gc-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--icon-bg);
  color: var(--icon);
  font-size: 1.875rem;
}

.gc-feature-inner p {
  color: var(--text-body);
  margin-bottom: 16px;
}

.gc-feature-inner p:last-child {
  margin-bottom: 0;
}

/* ---- 06 Service Framework (four-quadrant) ----------------------------- */
.service-framework {
  background: var(--bg);
  padding: var(--section-pad) 0;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.framework-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.framework-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-border);
}

/* Icon + title inline (top), body text below */
.fw-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.fw-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--icon-bg);
  color: var(--icon);
  font-size: 1.375rem;
}

.fw-title {
  color: var(--navy);
  margin: 0;
}

.framework-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- 07 CTA (two-column split) ---------------------------------------- */
.cta-band-split {
  max-width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-split-text {
  text-align: left;
  max-width: 640px;
}

.cta-split-text .cta-title {
  margin-bottom: 10px;
}

.cta-split-text .cta-text {
  margin-bottom: 0;
}

.cta-split-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

.cta-phone i {
  color: var(--gold);
}

.cta-phone:hover {
  color: var(--gold);
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 900px) {
  .story-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-media {
    order: -1;
  }

  .hiring-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .cta-band-split {
    flex-direction: column;
    text-align: center;
  }

  .cta-split-text {
    text-align: center;
  }

  .cta-split-actions {
    align-items: center;
    width: 100%;
  }
}
