/* ========== Profile Hero ========== */
.profile-hero {
  background: linear-gradient(135deg, #F8FCFF 0%, rgba(27,184,206,0.06) 100%);
  padding-block: 36px 64px;
  text-align: center;
}

.profile-hero-inner {
  display: flex;
  gap: 48px;
  align-items: start;
  text-align: left;
  max-width: 820px;
  margin-inline: auto;
}

.profile-hero-photo {
  flex-shrink: 0;
}

.profile-photo-img {
  width: 220px;
  height: auto;
  border-radius: 12px;
  display: block;
}

.profile-photo-caption {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}

.profile-hero-content {
  text-align: left;
}

.profile-hero-content .profile-hero-desc {
  margin-inline: 0;
}

.profile-hero-content .profile-certs {
  justify-content: flex-start;
}

.cert-break {
  width: 100%;
  height: 0;
  padding: 0;
  border: none;
  background: none;
  margin: 0;
}

.profile-hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.profile-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 24px;
}

.profile-hero-desc {
  font-size: 1rem;
  color: var(--text);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.8;
  margin-bottom: 40px;
}

.profile-hero-desc strong {
  color: var(--primary);
}

/* ========== Profile Intro ========== */
.profile-intro {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  padding-block: 72px;
}

.profile-intro-single {
  max-width: 720px;
  margin-inline: auto;
}

.profile-photo-wrap {
  text-align: center;
}

.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ddeef5 0%, #b0d8e8 100%);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}

.profile-name-en {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

.profile-certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.profile-cert {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(27,184,206,0.08);
  border: 1.5px solid rgba(27,184,206,0.3);
  border-radius: 100px;
  padding: 8px 20px;
  white-space: nowrap;
}

.profile-prose {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
  margin-inline: auto;
}

.profile-prose--center {
  text-align: center;
}

.profile-prose p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.profile-prose .highlight {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.8;
}

/* ========== Numbers ========== */
.numbers-section {
  background: #F8FCFF;
  padding-block: 72px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.number-item {
  background: var(--white);
  padding: 36px 32px;
  text-align: center;
}

.number-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.number-unit {
  font-size: 1.4rem;
}

.number-label {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== Strengths ========== */
.strengths-section {
  padding-block: 72px;
}

.strength-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.strength-card-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.strength-card-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
}

.strength-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.strength-card-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========== Cases ========== */
.cases-section {
  background: #F8FCFF;
  padding-block: 72px;
}

.cases-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.case-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  align-items: start;
}

.case-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-industry {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(27,184,206,0.1);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
}

.case-scope {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
}

.case-result {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-top: 8px;
}

.case-result-label {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 4px;
}

.case-body-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.5;
}

.case-body-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========== Career ========== */
.career-section {
  padding-block: 72px;
}

.career-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.career-list::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}

.career-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding-block: 24px;
  position: relative;
}

.career-item::before {
  content: '';
  position: absolute;
  left: 96px;
  top: 32px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
}

.career-year {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  padding-top: 4px;
  text-align: right;
}

.career-content-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.career-content-text {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========== CTA ========== */
.profile-cta {
  background: var(--primary);
  padding-block: 64px;
  text-align: center;
}

.profile-cta-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.profile-cta-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .profile-hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }

  .profile-hero-content {
    text-align: center;
  }

  .profile-hero-content .profile-hero-desc {
    margin-inline: auto;
    text-align: left;
  }

  .profile-hero-content .profile-certs {
    justify-content: center;
  }

  .cert-break {
    display: none;
  }

  .profile-photo-img {
    width: 160px;
  }

  .profile-prose {
    text-align: left !important;
  }

  .profile-intro {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 48px;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .strength-cards {
    grid-template-columns: 1fr;
  }

  .case-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .career-list::before {
    left: 72px;
  }

  .career-item {
    grid-template-columns: 72px 1fr;
    gap: 20px;
  }

  .career-item::before {
    left: 68px;
  }
}
