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

:root {
  /* 진한 네이비를 살짝 밝히고 메인은 신뢰감 있는 미디엄 블루로 */
  --blue-900: #1e3a8a;   /* 푸터 등 가장 진한 곳 (이전 #0a1628 → 진하지만 너무 어둡지 않게) */
  --blue-800: #1e40af;
  --blue-700: #2563eb;   /* 메인 브랜드 블루 */
  --blue-600: #3b82f6;
  --blue-500: #60a5fa;
  --blue-400: #2563eb;   /* 버튼 블루 (그대로) */
  --blue-300: #93c5fd;
  --blue-200: #bfdbfe;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --accent:   #f59e0b;
  --accent-light: #fef3c7;
  --green:    #10b981;
  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --font: 'Noto Sans KR', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-900); background: var(--white); line-height: 1.6; overflow-x: hidden; word-break: keep-all; overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-family: var(--font);
  font-size: 15px; font-weight: 700; cursor: pointer; border: none;
  transition: all 0.25s ease; text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
  color: var(--white); box-shadow: 0 4px 20px rgba(37,99,235,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,235,0.5); background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.btn-ghost { background: var(--white); color: var(--blue-700); border: 1.5px solid var(--blue-200); }
.btn-ghost:hover { background: var(--blue-50); border-color: var(--blue-400); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,99,235,0.12); }
.btn-nav { background: var(--accent); color: var(--gray-900); font-size: 14px; padding: 10px 22px; }
.btn-nav:hover { background: #d97706; transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-submit {
  width: 100%; padding: 18px 20px; font-size: 16px; font-weight: 800;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
  color: var(--white); border: none; border-radius: var(--radius); cursor: pointer;
  transition: all 0.25s ease; box-shadow: 0 4px 20px rgba(37,99,235,0.4);
  font-family: var(--font); margin-top: 8px;
  word-break: keep-all; white-space: normal; line-height: 1.4;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,235,0.5); }
.btn-floating {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
  color: var(--white); font-weight: 800; box-shadow: 0 4px 20px rgba(37,99,235,0.5);
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 12px 0;
}
.navbar.scrolled .nav-logo .logo-text { color: var(--blue-700); }
.nav-container {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-box {
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  color: var(--white); font-weight: 900; font-size: 18px;
  padding: 6px 12px; border-radius: 8px; letter-spacing: -0.5px;
}
.logo-text { font-weight: 800; font-size: 16px; color: var(--gray-900); transition: color 0.3s; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
  /* 라이트한 신뢰 그라디언트 — 화이트 베이스에 부드러운 블루 액센트 */
  background:
    radial-gradient(ellipse 90% 60% at 80% 30%, rgba(96,165,250,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(59,130,246,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%);
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--gray-200);
}
.hero-bg-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37,99,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(37,99,235,0.05); animation: float 8s infinite ease-in-out;
}
.particle:nth-child(1) { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.particle:nth-child(2) { width: 200px; height: 200px; bottom: 10%; left: 5%; animation-delay: 2s; }
.particle:nth-child(3) { width: 120px; height: 120px; top: 30%; right: 20%; animation-delay: 4s; }
.particle:nth-child(4) { width: 80px; height: 80px; top: 60%; right: 35%; animation-delay: 1s; }
.particle:nth-child(5) { width: 60px; height: 60px; bottom: 25%; right: 10%; animation-delay: 3s; }
@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-20px) scale(1.05); } }

.hero-content { position: relative; z-index: 1; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff7e6; border: 1px solid rgba(245,158,11,0.35);
  color: #b45309; font-size: 13px; font-weight: 700;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
  max-width: 100%; flex-wrap: wrap; word-break: keep-all;
  box-shadow: 0 2px 8px rgba(245,158,11,0.12);
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-size: clamp(28px, 4.5vw, 48px); font-weight: 900; line-height: 1.18;
  color: var(--gray-900); margin-bottom: 20px; letter-spacing: -1px;
  word-break: keep-all; overflow-wrap: break-word;
  animation: fadeInDown 0.7s ease 0.1s both;
}
.gradient-text {
  background: linear-gradient(90deg, #2563eb, #1e40af);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px); color: var(--gray-600); margin-bottom: 36px;
  line-height: 1.75; animation: fadeInDown 0.7s ease 0.2s both;
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; animation: fadeInDown 0.7s ease 0.3s both; }
.hero-stats {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 28px; animation: fadeInDown 0.7s ease 0.4s both;
  box-shadow: 0 4px 24px rgba(37,99,235,0.06);
}
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 24px; }
.stat-number { font-size: 28px; font-weight: 900; color: var(--blue-700); line-height: 1; }
.stat-label { font-size: 12px; color: var(--gray-500); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--gray-200); }
.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
.scroll-arrow { width: 24px; height: 24px; border-right: 2px solid var(--gray-300); border-bottom: 2px solid var(--gray-300); transform: rotate(45deg); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   SECTION COMMON
============================================================ */
section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header.light .section-title,
.section-header.light .section-desc { color: var(--white); }
.section-header.light .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); }
/* strength 섹션은 라이트 배경으로 변경되었으므로 .light 클래스 무력화 */
.strength .section-header.light .section-title { color: var(--gray-900); }
.strength .section-header.light .section-desc { color: var(--gray-500); }
.strength .section-header.light .section-tag { background: var(--blue-100); color: var(--blue-700); }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  background: var(--blue-100); color: var(--blue-400); padding: 6px 14px;
  border-radius: 50px; margin-bottom: 16px; text-transform: uppercase;
}
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--gray-900); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-desc { font-size: 16px; color: var(--gray-500); max-width: 540px; margin: 0 auto; }

/* ============================================================
   REALITY (실체 강조)
============================================================ */
.reality { background: var(--white); }
.reality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.reality-card {
  background: var(--gray-50); border-radius: var(--radius-lg); padding: 36px 32px;
  border: 1px solid var(--gray-200); text-align: center; transition: all 0.3s ease;
}
.reality-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: var(--white); border-color: var(--blue-200); }
.reality-icon { font-size: 48px; margin-bottom: 20px; display: inline-block; }
.reality-title { font-size: 18px; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.reality-desc { font-size: 14.5px; color: var(--gray-600); line-height: 1.7; word-break: keep-all; }

/* ============================================================
   SERVICES
============================================================ */
.services { background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow); transition: all 0.3s ease; position: relative; overflow: hidden;
  border: 1px solid var(--gray-200);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-300)); opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(135deg, var(--blue-50), #f0f9ff);
  border: 2px solid var(--blue-400);
  box-shadow: 0 8px 32px rgba(37,99,235,0.12);
}
.service-card.featured .service-title { color: var(--blue-700); }
.service-card.featured .service-desc { color: var(--gray-600); }
.service-card.featured .service-features li { color: var(--gray-700); border-color: var(--blue-100); }
.service-card.featured .service-features li::before { background: var(--blue-400); }
.service-badge-card {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: var(--gray-900); font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
}
.service-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.service-title { font-size: 18px; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }
.service-features li {
  font-size: 13px; color: var(--gray-700); padding: 6px 0;
  border-top: 1px solid var(--gray-100); display: flex; align-items: center; gap: 8px;
}
.service-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400); flex-shrink: 0; }
.service-card { cursor: pointer; }
.service-card:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 4px; }
.service-more {
  display: inline-block; margin-top: 18px; padding-top: 14px;
  border-top: 1px dashed var(--gray-200);
  font-size: 13px; font-weight: 700; color: var(--blue-600);
  letter-spacing: 0.2px; transition: gap 0.2s, color 0.2s;
}
.service-card:hover .service-more { color: var(--blue-700); }
.service-card.featured .service-more { color: var(--blue-700); border-color: var(--blue-100); }

/* ============================================================
   SERVICE DETAIL MODAL
============================================================ */
.service-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.service-modal.is-open { display: flex; }
.service-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  animation: serviceModalFade 0.18s ease;
}
.service-modal-dialog {
  position: relative; z-index: 1;
  width: 100%; max-width: 640px; max-height: 88vh;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
  display: flex; flex-direction: column;
  animation: serviceModalRise 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.service-modal-close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border: none; background: transparent;
  font-size: 24px; line-height: 1; color: var(--gray-500); cursor: pointer;
  border-radius: 50%; transition: background 0.15s, color 0.15s;
}
.service-modal-close:hover { background: var(--gray-100); color: var(--gray-900); }
.service-modal-header {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 32px 20px;
  background: linear-gradient(135deg, var(--blue-50), #f0f9ff);
  border-bottom: 1px solid var(--gray-100);
}
.service-modal-icon { font-size: 44px; line-height: 1; }
.service-modal-tag {
  display: inline-block; font-size: 11px; font-weight: 800;
  color: var(--blue-600); letter-spacing: 1.4px; margin-bottom: 4px;
}
.service-modal-title { font-size: 22px; font-weight: 800; color: var(--gray-900); margin: 0; }
.service-modal-body {
  padding: 24px 32px; overflow-y: auto; flex: 1;
}
.service-modal-body h4 {
  font-size: 14px; font-weight: 800; color: var(--blue-700);
  margin: 22px 0 10px; letter-spacing: 0.2px;
}
.service-modal-body h4:first-child { margin-top: 0; }
.service-modal-body p { font-size: 14px; color: var(--gray-700); line-height: 1.7; margin-bottom: 14px; }
.service-modal-body ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.service-modal-body li {
  font-size: 14px; color: var(--gray-700); padding-left: 22px; position: relative; line-height: 1.6;
}
.service-modal-body li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--blue-600); font-weight: 800;
}
.service-modal-body .modal-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 6px;
}
.service-modal-body .modal-stat {
  background: var(--gray-50); border-radius: var(--radius); padding: 14px 12px; text-align: center;
}
.service-modal-body .modal-stat-num {
  display: block; font-size: 20px; font-weight: 800; color: var(--blue-600); margin-bottom: 2px;
}
.service-modal-body .modal-stat-label { font-size: 12px; color: var(--gray-600); }
.service-modal-footer {
  padding: 16px 32px 22px; border-top: 1px solid var(--gray-100);
  display: flex; flex-direction: column; gap: 10px;
}
.service-modal-footer .btn { padding: 10px 20px; font-size: 14px; }
.service-modal-btn-secondary {
  padding: 10px 20px; font-size: 14px; font-weight: 700;
  background: var(--white); color: var(--gray-700);
  border: 1px solid var(--gray-300); border-radius: var(--radius);
  cursor: pointer; transition: background 0.15s, border-color 0.15s;
}
.service-modal-btn-secondary:hover { background: var(--gray-50); border-color: var(--gray-400); }
@keyframes serviceModalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes serviceModalRise { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (max-width: 640px) {
  .service-modal { padding: 0; align-items: flex-end; }
  .service-modal-dialog { max-width: 100%; max-height: 92vh; border-radius: 16px 16px 0 0; }
  .service-modal-header { padding: 22px 22px 16px; }
  .service-modal-body { padding: 20px 22px; }
  .service-modal-footer { padding: 14px 22px 20px; }
  .service-modal-body .modal-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   STRENGTH
============================================================ */
.strength { position: relative; background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%); overflow: hidden; }
.strength-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(37,99,235,0.06) 0%, transparent 70%);
}
.strength-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; position: relative; z-index: 1; }
.strength-item {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(37,99,235,0.04);
}
.strength-item:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(37,99,235,0.10); border-color: var(--blue-300); }
.strength-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  background: var(--blue-50); display: flex; align-items: center; justify-content: center;
}
.strength-icon { font-size: 26px; }
.strength-title { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.strength-title strong { color: var(--blue-700); }
.strength-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--white); position: relative; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 8px;
}
.testimonial-card {
  position: relative; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 12px; right: 22px;
  font-family: Georgia, serif; font-size: 84px; line-height: 1;
  color: var(--blue-100); pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12);
  border-color: var(--blue-200);
}
.testimonial-rating {
  font-size: 16px; color: #fbbf24; letter-spacing: 2px; line-height: 1;
}
.testimonial-rating .star-empty { color: var(--gray-200); }
.testimonial-quote {
  font-size: 15px; color: var(--gray-800); line-height: 1.75;
  margin: 0; flex: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--gray-100);
}
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; flex-shrink: 0;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.testimonial-meta strong { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.testimonial-meta span { font-size: 13px; color: var(--gray-500); }
.testimonial-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.testimonial-tag {
  font-size: 11px; font-weight: 700; color: var(--blue-700);
  background: var(--blue-50); padding: 4px 10px; border-radius: 50px;
  letter-spacing: 0.2px;
}
.testimonial-card.is-hidden { display: none; }
.testimonials-more-wrap { text-align: center; margin-top: 32px; }
.testimonials-more-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px;
  background: var(--white); color: var(--blue-700);
  border: 1.5px solid var(--blue-200);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06);
}
.testimonials-more-btn:hover {
  background: var(--blue-50); border-color: var(--blue-400);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.12);
}
.testimonials-more-btn .more-count {
  background: var(--blue-50); color: var(--blue-700);
  padding: 2px 10px; border-radius: 50px;
  font-size: 12px; font-weight: 800;
}
.testimonials-more-btn:hover .more-count { background: var(--blue-100); }
.testimonials-more-btn .more-arrow { font-size: 12px; transition: transform 0.2s; }
.testimonials-more-btn.is-expanded .more-arrow { transform: rotate(180deg); }
.testimonials-note {
  text-align: center; font-size: 12px; color: var(--gray-400);
  margin-top: 28px;
}
@media (max-width: 960px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS
============================================================ */
.process { background: var(--white); }
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-line {
  position: absolute; top: 48px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 2px; background: linear-gradient(90deg, var(--blue-400), var(--blue-300));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-number {
  font-size: 11px; font-weight: 800; color: var(--blue-400); letter-spacing: 2px;
  margin-bottom: 12px; display: block;
}
.step-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,99,235,0.3);
}
.step-title { font-size: 17px; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

/* ============================================================
   LEAD FORM
============================================================ */
.lead-form-section { background: var(--gray-50); padding: 96px 0; }
.lead-form-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
  background: var(--white); border-radius: 24px; padding: 60px 56px;
  box-shadow: var(--shadow-xl); border: 1px solid var(--gray-200);
  overflow: hidden;
}
.lead-form-left { min-width: 0; overflow: hidden; }
.lead-title {
  font-size: clamp(22px, 3.5vw, 38px); font-weight: 900; color: var(--gray-900);
  line-height: 1.25; margin: 12px 0 16px; letter-spacing: -0.5px;
  word-break: keep-all; overflow-wrap: break-word;
}
.lead-subtitle { font-size: 15px; color: var(--gray-500); margin-bottom: 40px; line-height: 1.75; word-break: keep-all; overflow-wrap: break-word; }
.lead-benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.lead-benefit-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; font-weight: 500; color: var(--gray-700);
  word-break: keep-all; overflow-wrap: break-word;
}
.benefit-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.trust-badge {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #eef5ff; border-radius: 16px; padding: 14px 10px;
  min-width: 0; border: 1px solid rgba(37,99,235,0.08);
}
.trust-icon { 
  font-size: 24px; flex-shrink: 0; width: 32px; height: 32px; 
  display: flex; align-items: center; justify-content: center;
}
.trust-num { display: block; font-size: 19px; font-weight: 900; color: var(--blue-500); line-height: 1.1; }
.trust-label { font-size: 11.5px; color: var(--gray-500); white-space: nowrap; font-weight: 600; }
.form-card { background: var(--gray-50); border-radius: var(--radius-lg); padding: 36px 32px; border: 1px solid var(--gray-200); }
.form-card-title { font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.form-card-subtitle { font-size: 13px; color: var(--gray-500); margin-bottom: 28px; }

/* Form elements */
.form-row { display: flex; gap: 16px; }
.form-row.two-col > .form-group { flex: 1; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; }
.required { color: #ef4444; }
.form-input {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-family: var(--font); font-size: 14px;
  color: var(--gray-900); background: var(--white); transition: all 0.2s ease;
  outline: none;
}
.form-input:focus { border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-input::placeholder { color: var(--gray-300); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }
.form-error-banner {
  background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius);
  padding: 12px 16px; margin-bottom: 20px; display: flex; align-items: center;
  gap: 8px; font-size: 14px; color: #b91c1c;
}
.field-error { font-size: 12px; color: #ef4444; margin-top: 4px; display: block; }
.form-privacy { font-size: 12px; color: var(--gray-500); text-align: center; margin-top: 12px; line-height: 1.6; }
.hidden { display: none; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: linear-gradient(180deg, var(--gray-900) 0%, #0c1426 100%); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-inner { display: flex; gap: 60px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand { flex: 2; min-width: 220px; }
.footer-logo { font-size: 20px; font-weight: 900; color: var(--white); display: block; margin-bottom: 12px; }
.footer-desc { font-size: 14px; margin-bottom: 10px; }
.footer-address { font-size: 13px; }
.footer-links { flex: 1; display: flex; gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; }
.footer-legal { color: rgba(255,255,255,0.4); }

/* ============================================================
   FLOATING CTA
============================================================ */
.floating-cta {
  position: fixed; bottom: 24px; left: 0; right: 0; z-index: 999;
  display: flex; justify-content: center; pointer-events: none;
  opacity: 0; transform: translateY(20px); transition: all 0.3s ease;
}
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
@media (min-width: 769px) { .floating-cta { display: none !important; } }

/* ============================================================
   SUCCESS PAGE
============================================================ */
.success-section { min-height: 100vh; display: flex; align-items: center; background: var(--gray-50); padding: 120px 0 60px; }
.success-card { max-width: 560px; margin: 0 auto; text-align: center; background: var(--white); border-radius: 24px; padding: 60px 48px; box-shadow: var(--shadow-xl); }
.success-animation { position: relative; width: 100px; height: 100px; margin: 0 auto 32px; }
.success-circle {
  width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-400), var(--blue-600));
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 2;
  animation: scaleIn 0.5s ease both;
}
.success-checkmark { font-size: 42px; color: var(--white); }
.success-ripple {
  position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--blue-400);
  animation: ripple 2s infinite ease-out;
}
.success-ripple.delay-1 { animation-delay: 1s; }
@keyframes ripple { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2); opacity: 0; } }
@keyframes scaleIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-title { font-size: 26px; font-weight: 900; color: var(--gray-900); margin-bottom: 14px; }
.success-subtitle { font-size: 15px; color: var(--gray-500); line-height: 1.8; margin-bottom: 32px; }
.success-info-box { display: flex; gap: 16px; margin-bottom: 36px; }
.success-info-item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  background: var(--gray-50); border-radius: var(--radius); padding: 16px; text-align: left;
}
.success-info-icon { font-size: 22px; }
.success-info-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--gray-700); margin-bottom: 2px; }
.success-info-item span { font-size: 14px; color: var(--gray-500); }
.success-info-item a { color: var(--blue-400); font-weight: 600; }

/* ============================================================
   ABOUT JRH SECTION
============================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  align-items: stretch;
}
.about-intro {
  display: flex; flex-direction: column; gap: 24px;
}
.about-intro-body {
  font-size: 15px; color: var(--gray-700); line-height: 1.85;
}
.about-intro-body p { margin: 0 0 14px; }
.about-intro-body p:last-child { margin-bottom: 0; }
.about-vision {
  margin: 0; padding: 22px 26px;
  background: linear-gradient(135deg, var(--blue-50), #f0f9ff);
  border-left: 4px solid var(--blue-500, var(--blue-600));
  border-radius: var(--radius);
  position: relative;
}
.about-vision-tag {
  display: inline-block; font-size: 11px; font-weight: 800;
  color: var(--blue-700); letter-spacing: 1.6px; margin-bottom: 8px;
}
.about-vision-quote {
  margin: 0; font-size: 15px; font-weight: 600;
  color: var(--gray-900); line-height: 1.7;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  align-content: start;
}
.about-stat {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  padding: 24px 22px;
  background: linear-gradient(135deg, #f8fbff, var(--gray-50));
  border: 1px solid var(--blue-100); border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.10);
}
.about-stat-num {
  font-size: 28px; font-weight: 900; color: var(--blue-700);
  line-height: 1.1; letter-spacing: -0.5px;
}
.about-stat-label {
  font-size: 13px; font-weight: 600; color: var(--gray-600);
  line-height: 1.4;
}

/* ============================================================
   GLOBAL NETWORK SECTION
============================================================ */
.network { background: var(--white); }
.network-map {
  max-width: 880px; margin: 0 auto 40px;
  background: linear-gradient(135deg, #f8fbff, #eff6ff);
  border-radius: var(--radius-lg);
  border: 1px solid var(--blue-100);
  padding: 20px;
  box-shadow: 0 4px 20px rgba(37,99,235,0.06);
}
.network-svg {
  display: block; width: 100%; height: auto;
  max-height: 360px;
  border-radius: var(--radius);
}
.network-svg .main-node circle:first-of-type {
  animation: networkPulse 2.4s ease-in-out infinite;
}
@keyframes networkPulse {
  0%, 100% { opacity: 0.14; r: 22; }
  50% { opacity: 0.32; r: 30; }
}

.network-nodes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 32px;
}
.network-node {
  position: relative;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: all 0.25s ease;
}
.network-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.network-node.is-main {
  background: linear-gradient(135deg, var(--blue-50), #f0f9ff);
  border: 2px solid var(--blue-500, var(--blue-600));
  box-shadow: 0 6px 24px rgba(37,99,235,0.14);
}
.network-node-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--blue-700); color: var(--white);
  font-size: 10px; font-weight: 900; letter-spacing: 1.5px;
  padding: 4px 12px; border-radius: 50px;
  white-space: nowrap;
}
.network-node-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
}
.network-node-flag {
  font-size: 32px; line-height: 1; flex-shrink: 0;
}
.network-node-title-wrap {
  display: flex; flex-direction: column; gap: 2px;
}
.network-node-city {
  font-size: 20px; font-weight: 900; color: var(--gray-900);
  margin: 0; letter-spacing: -0.3px;
}
.network-node-country {
  font-size: 12px; font-weight: 700; color: var(--gray-500); letter-spacing: 0.5px;
}
.network-node-role {
  font-size: 14px; color: var(--gray-700); line-height: 1.6;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--gray-200);
}
.network-node-since {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--blue-700);
}
.network-node-since-icon { font-size: 14px; }

.network-summary {
  margin: 0; padding: 20px 28px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  color: var(--white); border-radius: var(--radius-lg);
  font-size: 15px; line-height: 1.6; text-align: center;
  box-shadow: 0 8px 24px rgba(37,99,235,0.25);
}
.network-summary strong { font-weight: 900; }
.network-summary-emoji { font-size: 18px; margin-right: 6px; }

/* ============================================================
   TRUST & HISTORY SECTION
============================================================ */
.trust { background: var(--gray-50); }
.trust-certs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-bottom: 56px;
}
.trust-cert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 16px 18px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); transition: all 0.2s ease;
}
.trust-cert:hover {
  border-color: var(--blue-300, #93b8f9);
  box-shadow: 0 4px 14px rgba(37,99,235,0.08);
  transform: translateY(-2px);
}
.trust-cert-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; flex-shrink: 0;
  background: var(--blue-50); color: var(--blue-700);
  border-radius: 50%; font-size: 13px; font-weight: 800;
}
.trust-cert-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.trust-cert-title {
  font-size: 13px; font-weight: 700; color: var(--gray-900);
  line-height: 1.3;
}
.trust-cert-sub {
  font-size: 11px; color: var(--gray-500); line-height: 1.3;
}
.trust-timeline-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); padding: 32px 36px;
}
.trust-timeline-heading {
  font-size: 16px; font-weight: 800; color: var(--gray-900);
  margin: 0 0 24px; padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.trust-timeline {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.trust-timeline-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 20px;
  align-items: baseline; position: relative;
  padding-left: 16px;
}
.trust-timeline-item::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-500, var(--blue-600));
  box-shadow: 0 0 0 3px var(--blue-100);
}
.trust-timeline-year {
  font-size: 16px; font-weight: 800; color: var(--blue-700);
  letter-spacing: -0.3px;
}
.trust-timeline-desc {
  font-size: 14px; color: var(--gray-700); line-height: 1.6;
}

/* ============================================================
   FULFILLMENT CYCLE BAND (above services grid)
============================================================ */
.fulfillment-cycle {
  background: linear-gradient(135deg, #eef5ff 0%, #f8fbff 100%);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 28px 32px 22px;
  margin-bottom: 32px;
  position: relative;
}
.cycle-overlay {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px dashed var(--blue-200, #c7dafc);
}
.cycle-overlay-tag {
  display: inline-block; font-size: 11px; font-weight: 800;
  color: var(--blue-700); letter-spacing: 1.4px;
  background: rgba(37,99,235,0.08); padding: 4px 12px; border-radius: 50px;
}
.cycle-overlay-items { display: flex; gap: 14px; flex-wrap: wrap; }
.cycle-overlay-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--gray-700);
}
.cycle-overlay-icon { font-size: 16px; }
.cycle-stages {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.cycle-stage {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--blue-100);
  border-radius: 50px; padding: 8px 16px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.06);
}
.cycle-stage::before {
  content: '#' attr(data-step);
  font-size: 11px; font-weight: 800;
  color: var(--blue-600); background: var(--blue-50);
  padding: 2px 8px; border-radius: 50px;
}
.cycle-stage-icon { font-size: 18px; }
.cycle-stage-label { font-size: 13px; font-weight: 700; color: var(--gray-900); }
.cycle-arrow {
  font-size: 18px; font-weight: 700; color: var(--blue-400);
}
.cycle-note {
  text-align: center; font-size: 12px; color: var(--gray-500);
  margin: 14px 0 0;
}

/* Step badge on each service card */
.service-step-badge {
  display: inline-block; font-size: 11px; font-weight: 800;
  color: var(--blue-700); background: var(--blue-50);
  padding: 4px 10px; border-radius: 50px;
  margin-bottom: 14px; letter-spacing: 0.2px;
}
.service-step-badge.crosscut-badge {
  color: var(--gray-700); background: var(--gray-100);
}
.service-card.crosscut {
  border-style: dashed;
}

/* ============================================================
   INTEREST AREAS (multi-checkbox in lead form)
============================================================ */
.form-label-hint {
  font-size: 11px; font-weight: 500; color: var(--gray-500);
  margin-left: 6px;
}
.interest-areas-group {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.interest-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: var(--radius);
  border: 1.5px solid var(--gray-200); background: var(--white);
  cursor: pointer; transition: all 0.15s ease;
  font-size: 13px; color: var(--gray-700);
}
.interest-pill:hover { border-color: var(--blue-300, #93b8f9); background: #f8fbff; }
.interest-pill input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--blue-600);
  cursor: pointer; flex-shrink: 0; margin: 0;
}
.interest-pill input[type="checkbox"]:checked + .interest-pill-text {
  color: var(--blue-700); font-weight: 700;
}
.interest-pill:has(input:checked) {
  border-color: var(--blue-400);
  background: var(--blue-50);
  box-shadow: 0 0 0 2px rgba(37,99,235,0.08);
}
.interest-pill.is-just-selected {
  animation: interestPulse 1.4s ease;
}
@keyframes interestPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(37,99,235,0.08); }
  30% { box-shadow: 0 0 0 6px rgba(37,99,235,0.18); transform: scale(1.02); }
}

/* Modal footer microcopy */
.service-modal-microcopy {
  font-size: 12px; color: var(--gray-600);
  margin: 0; padding: 0 4px;
  flex: 1 1 100%;
}
.service-modal-microcopy strong { color: var(--blue-700); }
.service-modal-actions {
  display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap;
  width: 100%;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reality-grid { grid-template-columns: repeat(2, 1fr); }
  .strength-grid { grid-template-columns: 1fr; }
  .lead-form-wrapper { grid-template-columns: 1fr; padding: 40px 32px; gap: 40px; }
  .lead-title { font-size: clamp(22px, 5vw, 34px); }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-certs { grid-template-columns: repeat(2, 1fr); }
  .network-nodes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .fulfillment-cycle { padding: 22px 18px 18px; }
  .cycle-stages { gap: 8px; }
  .cycle-stage { padding: 6px 12px; }
  .cycle-stage-label { font-size: 12px; }
  .cycle-arrow { font-size: 16px; }
  .cycle-overlay { gap: 10px; padding-bottom: 14px; margin-bottom: 14px; }
  .interest-areas-group { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .trust-certs { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-timeline-wrap { padding: 24px 22px; }
  .trust-timeline-item { grid-template-columns: 60px 1fr; gap: 14px; }
  .trust-timeline-year { font-size: 14px; }
  .network-map { padding: 14px; margin-bottom: 28px; }
  .network-summary { padding: 16px 20px; font-size: 14px; }
  .reality-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .process-line { display: none; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 16px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; text-align: center; justify-content: center; }
  .form-row.two-col { flex-direction: column; }
  .lead-form-wrapper { padding: 28px 20px; gap: 32px; }
  .lead-title { font-size: clamp(20px, 6vw, 28px); letter-spacing: -0.3px; }
  .lead-subtitle { font-size: 14px; margin-bottom: 24px; }
  .lead-benefits { gap: 12px; margin-bottom: 28px; }
  .lead-benefit-item { font-size: 14px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; }
  .success-info-box { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .process-track { grid-template-columns: 1fr; }
  .lead-form-wrapper { padding: 24px 16px; }
  .form-card { padding: 20px 14px; }
  .lead-title { font-size: clamp(18px, 7vw, 24px); }
  .trust-badges { gap: 8px; }
  .trust-badge { padding: 10px 12px; }
  .trust-num { font-size: 16px; }
  .trust-icon { font-size: 18px; }
  .btn-submit { font-size: 14px; padding: 16px 14px; }
}

.pc-only { display: inline; }
@media (max-width: 768px) {
  .pc-only { display: none; }
}

/* Certification Gallery Improvements */
.cert-gallery {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: auto; padding-top: 15px;
}
.cert-img {
  height: 85px; width: auto; border-radius: 8px; background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); border: 1px solid #eef2f6; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); padding: 4px; cursor: pointer;
}
.cert-img:hover {
  transform: translateY(-8px) scale(1.08); 
  box-shadow: 0 12px 24px rgba(0,0,0,0.12); 
  border-color: var(--blue-200);
}

/* Certification Pill Improvements */
.cert-pill {
  display: flex; align-items: center; gap: 8px; padding: 6px 14px;
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 50px;
  font-size: 13px; font-weight: 600; color: #475569;
  transition: all 0.3s ease; cursor: pointer;
}
.cert-pill:hover {
  background: #fff; border-color: var(--blue-400); 
  box-shadow: 0 4px 12px rgba(37,99,235,0.1); transform: translateY(-2px);
}
.cert-pill-thumb {
  height: 20px; width: auto; border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Bottom Certification Grid */
.cert-grid-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  width: 100%;
}
.cert-item-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.cert-large-img {
  width: 100%;
  max-width: 140px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border: 1px solid #f1f5f9;
  transition: transform 0.3s ease;
}
.cert-large-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .cert-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}
