/* ========================================
   CSS RESET & VARIABLES
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #2BA09B;
  --color-primary-dark: #238E89;
  --color-primary-light: rgba(43, 160, 155, 0.08);
  --color-text: #0F172A;
  --color-text-secondary: #475569;
  --color-text-light: #64748B;
  --color-bg: #FFFFFF;
  --color-bg-secondary: #F8FAFC;
  --color-border: #E2E8F0;
  --color-border-light: #F1F5F9;
  --font-heading: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
  --max-width: 1120px;
  --section-padding: 100px 0;
  --section-padding-mobile: 64px 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--color-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--color-primary);
  color: #fff !important;
  border-radius: 6px;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--color-primary-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding: 168px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43, 160, 155, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  animation: fadeUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--color-primary);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 28px;
}

.hero p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 580px;
  margin-bottom: 40px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 160, 155, 0.2);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--color-primary);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #fff;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ========================================
   HERO STATS
   ======================================== */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========================================
   SECTIONS — SHARED
   ======================================== */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background: var(--color-bg-secondary);
}

.section-header {
  max-width: 600px;
  margin-bottom: 56px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-primary);
}

.section-header.center .section-eyebrow {
  justify-content: center;
}

.section-header.center .section-eyebrow::before {
  display: none;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* ========================================
   WHO THIS IS FOR
   ======================================== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.who-text p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.who-text p:last-child { margin-bottom: 0; }

.who-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.who-card {
  padding: 28px 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.3s ease;
}

.who-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(43, 160, 155, 0.08);
}

.who-card-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--color-primary);
}

.who-card h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

/* ========================================
   TALENT AREAS
   ======================================== */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}

.talent-item {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid var(--color-border);
  position: relative;
  transition: background 0.3s ease;
}

.talent-item:last-child { border-right: none; }

.talent-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.talent-item:hover { background: var(--color-primary-light); }
.talent-item:hover::after { transform: scaleX(1); }

.talent-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--color-primary);
  background: var(--color-primary-light);
  border-radius: 10px;
}

.talent-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: var(--color-border);
}

.step-item {
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-bg);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 280px;
  margin: 0 auto;
}

/* ========================================
   WHY JOIN
   ======================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  padding: 40px 36px;
  background: var(--color-bg-secondary);
  border-radius: 10px;
  border: 1px solid var(--color-border-light);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.why-card:hover {
  border-color: var(--color-border);
  transform: translateY(-3px);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
  background: rgba(43, 160, 155, 0.1);
  border-radius: 10px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

/* ========================================
   REGISTRATION FORM
   ======================================== */
.form-section {
  padding: var(--section-padding);
  background: var(--color-bg-secondary);
}

.form-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 48px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.form-embed {
  width: 100%;
}

.form-embed #zr_div_840901000000072351 {
  width: 100% !important;
}

.form-embed iframe,
#zr_div_840901000000072351 iframe,
.form-wrapper iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 1000px;
  border: none !important;
}

/* ========================================
   CAREERS LINK
   ======================================== */
.careers-section {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.careers-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  transition: gap 0.2s ease;
}

.careers-link:hover { gap: 14px; }
.careers-link svg { width: 18px; height: 18px; }

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  padding: 100px 0;
  background: var(--color-text);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top center, rgba(43, 160, 155, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ========================================
   BLOG SECTION (HOMEPAGE)
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.blog-card-body {
  padding: 28px 24px;
}

.blog-card-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 10px;
}

.blog-card h3 a {
  transition: color 0.2s ease;
}

.blog-card h3 a:hover {
  color: var(--color-primary);
}

.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--color-text-light);
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========================================
   BLOG LISTING PAGE
   ======================================== */
.page-header {
  padding: 148px 0 60px;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 560px;
}

.blog-listing {
  padding: 60px 0 100px;
}

.blog-listing .blog-grid {
  margin-bottom: 48px;
}

/* ========================================
   BLOG SINGLE POST
   ======================================== */
.post-header {
  padding: 148px 0 48px;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
}

.post-header .container {
  max-width: 760px;
}

.post-meta-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--color-text-light);
}

.post-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

.post-body {
  padding: 56px 0 100px;
}

.post-body .container {
  max-width: 760px;
}

.post-content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-text-secondary);
}

.post-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin: 40px 0 16px;
}

.post-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin: 32px 0 12px;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
  margin: 0 0 20px 24px;
}

.post-content li {
  margin-bottom: 8px;
}

.post-content blockquote {
  border-left: 3px solid var(--color-primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--color-bg-secondary);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--color-text);
}

.post-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 64px 0 40px;
  background: #0B1120;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   TALENT DETAIL (Talent Areas Page)
   ======================================== */
.talent-detail {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.talent-detail:last-child {
  border-bottom: none;
}

.talent-detail-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.talent-detail-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 12px;
}

.talent-detail-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.talent-detail-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.talent-detail-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 80px;
}

.talent-detail-roles span {
  display: inline-block;
  padding: 8px 18px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.talent-detail-roles span:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ========================================
   PROCESS STEPS (How It Works Page)
   ======================================== */
.process-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.3;
  min-width: 80px;
  line-height: 1;
}

.process-step-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 14px;
}

.process-step-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

.process-step-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.process-detail-item {
  padding: 16px 20px;
  background: var(--color-bg-secondary);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.process-detail-item strong {
  display: block;
  color: var(--color-text);
  margin-bottom: 4px;
}

/* ========================================
   WHY EXPANDED (Why Join Page)
   ======================================== */
.why-expanded-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.why-expanded-card {
  padding: 44px 36px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  transition: border-color 0.2s ease;
}

.why-expanded-card:hover {
  border-color: var(--color-border);
}

.why-expanded-card h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 14px;
}

.why-expanded-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

.why-expanded-card p:last-child {
  margin-bottom: 0;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin: 40px 0 14px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.legal-content strong {
  color: var(--color-text);
}

/* ========================================
   EMPTY STATE
   ======================================== */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--color-text-light);
}

.empty-state h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 10px;
}

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 960px) {
  .talent-grid { grid-template-columns: repeat(3, 1fr); }
  .talent-item:nth-child(3) { border-right: none; }
  .talent-item:nth-child(4),
  .talent-item:nth-child(5) { border-top: 1px solid var(--color-border); }
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 768px) {
  .section { padding: var(--section-padding-mobile); }

  .nav-links {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    flex-direction: column;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 24px 28px;
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero { padding: 120px 0 80px; }
  .hero p { font-size: 17px; }
  .hero-stats { flex-direction: column; gap: 24px; }

  .talent-grid { grid-template-columns: 1fr 1fr; }
  .talent-item { padding: 32px 20px; }
  .talent-item:nth-child(even) { border-right: none; }
  .talent-item:nth-child(3) { border-right: 1px solid var(--color-border); }
  .talent-item:nth-child(3),
  .talent-item:nth-child(4),
  .talent-item:nth-child(5) { border-top: 1px solid var(--color-border); }
  .talent-item:nth-child(5) { grid-column: span 2; }

  .steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid::before { display: none; }
  .step-number { width: 60px; height: 60px; font-size: 20px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-expanded-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  .process-step { flex-direction: column; gap: 16px; }
  .process-step-number { font-size: 36px; min-width: auto; }
  .process-step-details { grid-template-columns: 1fr; }

  .talent-detail-header { flex-direction: column; }
  .talent-detail-roles { padding-left: 0; }

  .form-wrapper { padding: 32px 20px; }
  .who-visual { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .talent-grid { grid-template-columns: 1fr; }
  .talent-item { border-right: none !important; }
  .talent-item:not(:first-child) { border-top: 1px solid var(--color-border); }
  .talent-item:nth-child(5) { grid-column: span 1; }
  .who-visual { grid-template-columns: 1fr; }
}
