/* ============================================================
   JAPAN TALENT MATCHING — ABOUT PAGE
   Enterprise Blue-Gray (Corrected v2)
============================================================ */

/* ─── Base ─── */
body.page-template-about {
  font-family: "Poppins","Inter",system-ui,sans-serif;
  background: #ffffff;
  color: #1f2a3a;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── HERO ─── */
.about-hero {
  background: #f7f9fc;
  border-bottom: 1px solid #e6ebf2;
  text-align: center;
  padding: 90px 20px 70px;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0b1320;
  margin-bottom: 6px;
}

.about-hero p {
  font-size: 0.95rem;
  color: #6b7280;
}

/* ─── WHO WE ARE ─── */
.about-who {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
}

.about-who h2 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #0b1320;
  margin-bottom: 18px;
}

.about-who p {
  color: #374151;
  font-size: 1rem;
  margin-bottom: 16px;
}

/* Get in Touch — FIXED */
.about-who a {
  display: inline-block;
  margin-top: 18px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 500;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
}

.about-who a:hover {
  background: #1d4ed8;
}

/* Image — ALWAYS VISIBLE */
.about-image {
  width: 100%;
  min-height: 300px;
  background-image: url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=900&q=60");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

/* ─── WHY CHOOSE US (3 × 3 RESTORED) ─── */
.about-values {
  background: #f9fafb;
  border-top: 1px solid #e6ebf2;
  border-bottom: 1px solid #e6ebf2;
  padding: 90px 20px;
}

.about-values h2 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 600;
  color: #0b1320;
  margin-bottom: 48px;
}

.about-values-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Cards */
.about-value {
  background: #ffffff;
  border: 1px solid #e6ebf2;
  border-radius: 14px;
  padding: 26px 24px;
}

.about-value .icon {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.about-value .title {
  font-weight: 600;
  font-size: 1.05rem;
  color: #0b1320;
  margin-bottom: 6px;
}

.about-value .text {
  font-size: 0.95rem;
  color: #4b5563;
}

/* ─── PROCESS ─── */
.about-process {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 20px;
}

.about-process-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-process-image {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

.about-process h2 {
  font-size: 1.9rem;
  font-weight: 600;
  color: #0b1320;
  margin-bottom: 18px;
}

.about-process ul {
  list-style: none;
  padding: 0;
}

.about-process li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  color: #374151;
}

.about-process li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b82f6;
}

/* ─── CTA ─── */
.about-cta {
  background: #0f1c2e;
  color: #e5e7eb;
  text-align: center;
  padding: 90px 20px;
}

.about-cta h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.about-cta p {
  max-width: 620px;
  margin: 0 auto 26px;
  color: #cbd5e1;
}

.about-cta a {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
}

.about-cta a:hover {
  background: #1d4ed8;
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .about-who,
  .about-process-inner {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-image,
  .about-process-image {
    height: 220px;
  }
}
