/* ============================================
   HRLine Design System
   컨셉: 맥킨지 + 블룸버그 + 프리미엄 금융 플랫폼
   ============================================ */

/* Removed Google Fonts @import for Arial unification */

/* ─── CSS Variables ─── */
:root {
  --navy:        #0B1F3B;
  --navy-mid:    #1F3A5F;
  --navy-light:  #2D5080;
  --gold:        #C8A96A;
  --gold-hover:  #B89658;
  --gold-light:  #E8D5A8;
  --bg:          #F7F9FC;
  --bg-white:    #FFFFFF;
  --text-primary:#111111;
  --text-mid:    #374151;
  --text-soft:   #6B7280;
  --text-light:  #9CA3AF;
  --border:      #E5E9F0;
  --border-gold: rgba(200,169,106,0.3);
  --shadow-sm:   0 1px 3px rgba(11,31,59,0.08);
  --shadow-md:   0 4px 16px rgba(11,31,59,0.12);
  --shadow-lg:   0 12px 40px rgba(11,31,59,0.16);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
  --bg-soft:     #F0F4FA;
  --shadow-xl:   0 20px 60px rgba(11,31,59,0.2);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Layout ─── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.grid-4 { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
  gap: 24px; 
}
.grid-3 { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
  gap: 24px; 
}
.grid-2 { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); 
  gap: 32px; 
}
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.gap-24 { gap: 24px; } .gap-32 { gap: 32px; }

/* ─── Typography ─── */
.serif { font-family: inherit; }
h1, h2, h3, h4 { font-family: inherit !important; }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-soft { color: var(--text-soft); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.font-serif { font-family: inherit; }

/* ─── Section Labels ─── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,169,106,0.35); }
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-sm-card {
  padding: 10px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid var(--border);
  color: var(--text-mid);
  background: #fff;
  flex: 1;
}
.btn-sm-card:hover {
  background: var(--bg-soft);
  border-color: var(--navy-mid);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-sm-card.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-sm-card.btn-primary:hover {
  background: var(--navy-mid);
  box-shadow: 0 4px 12px rgba(11,31,59,0.2);
}
.btn-icon { width: 40px; height: 40px; padding: 0; justify-content: center; border-radius: 50%; }

/* ─── Cards ─── */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--border-gold);
}
.card-body { padding: 24px; }
.card-header { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.card-footer { padding: 16px 24px; background: var(--bg); border-top: 1px solid var(--border); }

/* ─── Tags / Badges ─── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.tag-navy { background: rgba(11,31,59,0.08); color: var(--navy); }
.tag-gold { background: rgba(200,169,106,0.15); color: #8B6914; }
.tag-green { background: rgba(16,185,129,0.1); color: #065F46; }
.tag-blue { background: rgba(59,130,246,0.1); color: #1E40AF; }

/* ─── Divider ─── */
.divider { height: 1px; background: var(--border); margin: 24px 0; }
.divider-gold { height: 1px; background: linear-gradient(90deg,var(--gold),transparent); }

/* ─── Forms ─── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(31,58,95,0.1);
}
.form-control::placeholder { color: var(--text-light); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
textarea.form-control { min-height: 120px; resize: vertical; }

/* ─── Navbar ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,31,59,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,106,0.2);
}
.navbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: -0.01em;
}
.navbar-logo span { color: var(--gold); }
.logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--gold), #A07840);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
  font-family: inherit;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link.active { color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--navy);
  border: 1px solid rgba(200,169,106,0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  padding: 8px;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; top: calc(100% + 8px); }
.nav-dropdown-item {
  display: block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.nav-dropdown-item:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ── 언어 스위처 (Dron 방식) ─────────────────────── */
.nav-lang-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
  margin: 0 4px;
  align-self: center;
  display: inline-block;
}
.lang-item {
  margin-left: -0.3rem;
}
.lang-item a {
  font-size: 0.72rem !important;
  opacity: 0.55;
  color: rgba(255,255,255,0.7) !important;
  padding: 6px 8px !important;
  font-weight: 500;
}
.lang-item a:hover {
  opacity: 1;
  background: transparent !important;
}
.lang-item a.active {
  color: var(--gold) !important;
  opacity: 1;
  font-weight: 700 !important;
}

.navbar-actions { display: flex; align-items: center; gap: 10px; }
.mobile-menu-btn { display: none; color: #fff; padding: 8px; }

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0D2B4E 100%);
  position: relative;
  overflow: hidden;
  padding: 0 0 80px;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A96A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(200,169,106,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,106,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content { position: relative; z-index: 2; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,106,0.15);
  border: 1px solid rgba(200,169,106,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-label span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 520px; margin-bottom: 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  font-family: inherit;
  line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Stats Ticker ─── */
.ticker {
  background: var(--navy-mid);
  border-top: 1px solid rgba(200,169,106,0.2);
  border-bottom: 1px solid rgba(200,169,106,0.2);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.ticker-item strong { color: var(--gold); font-weight: 600; }
.ticker-item .up { color: #34D399; }
.ticker-item .down { color: #F87171; }

/* ─── Service Cards ─── */
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.service-card { padding: 32px; }
.service-card h3 { margin-bottom: 12px; color: var(--navy); }
.service-card p { color: var(--text-soft); font-size: 0.9rem; line-height: 1.7; }

/* ─── Talent Card ─── */
.talent-card { padding: 0; }
.talent-card-top {
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
}
.talent-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200,169,106,0.2);
  border: 2px solid rgba(200,169,106,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.talent-role { font-size: 1.05rem; font-weight: 700; }
.talent-industry { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 3px; }
.talent-card-body { padding: 20px 24px; }
.talent-keywords { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.talent-exp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 16px;
}

/* ─── Section Headers ─── */
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; color: var(--navy); }
.section-header p { color: var(--text-soft); font-size: 0.95rem; max-width: 560px; }

/* ─── Job Listing ─── */
.job-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all var(--transition);
  position: relative;
}
.job-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.job-company-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.job-info { 
  flex: 1; 
  display: flex;
  flex-direction: column;
}
.job-title { 
  font-weight: 800; 
  font-size: 1.15rem; 
  color: var(--navy); 
  margin: 16px 0;
  line-height: 1.4;
  height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-meta { 
  display: flex; 
  flex-direction: column;
  gap: 6px; 
  font-size: 0.9rem; 
  color: var(--text-mid);
  margin-bottom: 20px;
}
.job-meta > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.job-salary { 
  font-weight: 700; 
  color: var(--navy); 
  font-size: 1.1rem;
  margin-top: auto;
}
.job-actions { 
  display: flex; 
  gap: 8px; 
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

/* ─── Data Visualization Block ─── */
.chart-card { padding: 28px; }
.chart-card h3 { margin-bottom: 4px; color: var(--navy); }
.chart-subtitle { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 24px; }

/* ─── CTA Block ─── */
.cta-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
}
.cta-block::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border: 60px solid rgba(200,169,106,0.12);
  border-radius: 50%;
}
.cta-block h2 { color: #fff; margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,0.7); margin-bottom: 28px; max-width: 480px; }

/* ─── Footer ─── */
.footer {
  background: #060F1D;
  padding: 64px 0 32px;
}
.footer-logo { margin-bottom: 16px; }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.75; max-width: 280px; }
.footer-heading { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color var(--transition); }
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: all var(--transition);
}
.social-btn:hover { background: rgba(200,169,106,0.2); border-color: var(--gold); color: var(--gold); }

/* ─── Page Header (내부 페이지) ─── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(200,169,106,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,106,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-header-content { position: relative; z-index: 2; }
.page-header h1 { color: #fff; font-size: 2.2rem; margin-bottom: 8px; }
.page-header .breadcrumb { display: flex; gap: 8px; align-items: center; color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 16px; }
.page-header .breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.page-header .breadcrumb a:hover { color: var(--gold); }
.page-header .breadcrumb span { color: var(--gold); }

/* ─── Sidebar ─── */
.sidebar-card { padding: 24px; margin-bottom: 20px; }
.sidebar-card h4 { margin-bottom: 16px; color: var(--navy); padding-bottom: 12px; border-bottom: 1px solid var(--border); }

/* ─── Table ─── */
.table-wrapper { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th { padding: 12px 16px; text-align: left; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-soft); background: var(--bg); border-bottom: 2px solid var(--border); }
td { padding: 14px 16px; font-size: 0.875rem; border-bottom: 1px solid var(--border); color: var(--text-mid); }
tr:hover td { background: rgba(247,249,252,0.8); }

/* ─── Tabs ─── */
.tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 32px; }
.tab-btn {
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-soft);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--navy); }

/* ─── Process Steps ─── */
.process-steps { display: flex; gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step { flex: 1; text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 auto 16px;
  transition: all var(--transition);
}
.process-step:hover .step-num { background: var(--navy); color: #fff; border-color: var(--navy); }
.step-title { font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 0.8rem; color: var(--text-soft); max-width: 160px; margin: 0 auto; }

/* ─── Testimonial ─── */
.testimonial-card { padding: 32px; position: relative; }
.testimonial-card::before { content: '"'; font-size: 5rem; color: var(--gold); opacity: 0.2; position: absolute; top: 8px; left: 24px; line-height: 1; }
.testimonial-text { font-size: 0.95rem; line-height: 1.8; color: var(--text-mid); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700; font-size: 0.85rem; }
.testimonial-name { font-weight: 600; font-size: 0.875rem; }
.testimonial-role { font-size: 0.78rem; color: var(--text-soft); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero { padding: 32px 0 48px; min-height: unset; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .navbar-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .cta-block { padding: 40px 24px; }
  .process-steps { flex-direction: column; gap: 32px; }
  .process-steps::before { display: none; }
  .hero-visual { display: none; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 1.75rem; }
}

/* ─── Animations ─── */
.fade-in { animation: fadeIn 0.6s ease forwards; }
@keyframes fadeIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }

/* ─── Utilities ─── */
.hidden { display: none !important; }
.mt-8{margin-top:8px} .mt-12{margin-top:12px} .mt-16{margin-top:16px} .mt-24{margin-top:24px} .mt-32{margin-top:32px} .mt-48{margin-top:48px}
.mb-8{margin-bottom:8px} .mb-12{margin-bottom:12px} .mb-16{margin-bottom:16px} .mb-24{margin-bottom:24px}
.w-full{width:100%}
.rounded-full{border-radius:100px}
.bg-white{background:#fff}
.bg-bg{background:var(--bg)}
.bg-navy{background:var(--navy)}
.p-24{padding:24px}
.position-relative{position:relative}
.overflow-hidden{overflow:hidden}
