/* ============================================================
   NAEILIJU — 미국 이민 전문 서비스
   Design tokens & base
   ============================================================ */
:root {
  --navy-950: #09637E;
  --navy-900: #088395;
  --navy-800: var(--navy-900);
  --navy-700: var(--navy-900);
  --navy-600: #3AA6B9;

  --paper: #F7F4EC;
  --paper-dim: #EEE9DB;
  --paper-line: #DDD6C2;

  --ink: #161D27;
  --slate: #5B6B82;
  --slate-soft: #8593A6;

  --brass: var(--navy-900);
  --brass-light: #63C9DB;
  --brass-deep: var(--navy-950);

  --stamp: #A33B2E;
  --stamp-deep: #7E2C22;

  --line-on-dark: rgba(99,201,219,0.28);
  --line-on-light: rgba(9,99,126,0.14);

  --radius-sm: 2px;
  --radius-md: 4px;

  --font-display: 'Pretendard', sans-serif;
  --font-body: var(--font-display);
  --font-mono: var(--font-display);

  --ease: cubic-bezier(.22,.68,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body { word-break: keep-all; overflow-wrap: break-word; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Focus ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

/* ── Eyebrow label ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--brass-deep);
}
.section-dark .eyebrow { color: var(--brass-light); }
.section-dark .eyebrow::before { background: var(--brass-light); }

/* ── Section ── */
.section { padding: 104px 0; position: relative; }
.section-dark { background: var(--navy-900); color: var(--paper); }
.section-dark .slate-text { color: #B7C2D4; }

/* ── Display heading ── */
.h-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: 1px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}

.btn-primary:hover { background: var(--brass-light); transform: translateY(-2px); }
.btn-ghost-dark { border-color: var(--line-on-dark); color: var(--paper); }
.btn-ghost-dark:hover { border-color: var(--brass-light); color: var(--brass-light); transform: translateY(-2px); }
.btn-ghost-light { border-color: var(--line-on-light); color: var(--navy-900); }
.btn-ghost-light:hover { border-color: var(--navy-900); transform: translateY(-2px); }
.btn-stamp { background: var(--stamp); color: var(--paper); }
.btn-stamp:hover { background: var(--stamp-deep); transform: translateY(-2px); }

/* ── Guilloche ── */
.guilloche {
  height: 34px;
  width: 100%;
  background-image: repeating-linear-gradient(115deg, var(--line-on-dark) 0px, var(--line-on-dark) 1px, transparent 1px, transparent 7px);
  opacity: .5;
}
.guilloche.on-light {
  background-image: repeating-linear-gradient(115deg, var(--line-on-light) 0px, var(--line-on-light) 1px, transparent 1px, transparent 7px);
}

/* ── Reveal animation ── */
.reveal { opacity: 1; transform: none; }
.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER
   ============================================================ */

.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:200;
  background:linear-gradient(180deg, rgba(6,14,20,0.65) 0%, rgba(6,14,20,0.32) 65%, transparent 100%);
  transition:background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(9,99,126,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--line-on-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height .3s var(--ease);
}
.is-scrolled .header-inner { height: 68px; }

.logo { display: flex; align-items: center; gap: 8px; }
.logo img {
  display: block;
  height: 38px;
  width: auto;
  transition: height .3s var(--ease);
}
.is-scrolled .logo img { height: 30px; }
.logo small {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--brass-light);
  letter-spacing: .16em;
}

.main-nav { display: flex; align-items: center; gap: 44px; }
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #DDE3EC;
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--brass-light);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { display: flex; align-items: center; gap: 20px; }
.header-phone {
  display: flex; flex-direction: column; align-items: flex-end;
  color: var(--paper);
}
.header-phone .num { font-family: var(--font-mono); font-size: 16px; font-weight: 600; color: var(--brass-light); }
.header-phone .lbl { font-size: 11px; color: #9AA8BC; letter-spacing: .06em; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-on-dark);
  background: transparent;
  position: relative;
  border-radius: 1px;
}
.nav-toggle span {
  position: absolute; left: 9px; right: 9px; height: 1px; background: var(--paper);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy-950);
  color: var(--paper);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 40px;
  overflow: hidden;
  text-align: center;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: transparent;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: flex; justify-content: center;
}
.hero-content { max-width: 780px; display: flex; flex-direction: column; align-items: center; }
.hero-eyebrow-row { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(38px, 5vw, 68px);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero h2 {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  }
  
.hero h1 .accent { color: var(--brass-light); }
.hero-sub {
  margin-top: 26px; max-width: 500px;
  font-size: 17px; color: #B7C2D4;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero-actions { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; justify-content: center; }
.hero-meta { display: flex; gap: 36px; margin-top: 64px; flex-wrap: wrap; justify-content: center; }
.hero-meta div b {
  display: block; font-family: var(--font-mono);
  font-size: 26px; color: var(--brass-light);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.hero-meta div span {
  font-size: 12px; color: #8B98AC;
  letter-spacing: .04em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.hero-scroll-cue {
  position: absolute; left: 50%; bottom: 36px;
  transform: translateX(-50%); z-index: 2;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(9,99,126,.35);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  animation: cue-bounce 2.2s ease-in-out infinite;
}
@keyframes cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs {
  padding: 70px 0 100px;
}
.program-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
  }
  .program-card{
    position:relative;
    display:block;
    height:420px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 24px 48px -14px rgba(0,0,0,.4);
    transition:transform .3s var(--ease), box-shadow .3s var(--ease);
  }
  .program-card:hover{ transform:translateY(-6px); box-shadow:0 32px 60px -14px rgba(0,0,0,.45); }
  .card-img{
    position:absolute; inset:0;
    z-index:0;
  }
  .card-img img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    transition:transform .5s var(--ease);
  }
  .program-card:hover .card-img img{ transform:scale(1.06); }
  .card-body{
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 26px 30px;
    background: transparent;
  }
  
  .card-body::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 65%;
      background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
      z-index: -1;
      border-radius: 0 0 16px 16px;
      pointer-events: none;
    }
    
  
  
  .card-title{
    font-family:var(--font-display);
    font-size:24px;
    font-weight:800;
    color:#fff;
  }
  .card-sub{
    margin-top:10px;
    font-size:14px;
    line-height:1.6;
    color:rgba(255,255,255,0.88);
  }
  .card-link{
    margin-top:18px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    font-weight:700;
    color:var(--brass-light);
  }
  .card-link svg{ width:14px; height:14px; transition:transform .25s var(--ease); }
  .program-card:hover .card-link svg{ transform:translateX(4px); }
  

  @media (max-width: 860px) {
      .card-title {
        font-size: 20px;
        text-shadow: 0 2px 8px rgba(0,0,0,0.5);
      }
      .card-sub {
        font-size: 13px;
        color: rgba(255,255,255,0.95);
        text-shadow: 0 1px 6px rgba(0,0,0,0.5);
      }
      .card-link {
        font-size: 12px;
      }
      .card-body {
        padding: 22px 20px 24px;
      }
    }
    
    @media (max-width: 860px) {
        .card-title {
          font-size: 20px;
          color: var(--ink);
          text-shadow: none;
        }
        .card-sub {
          font-size: 13px;
          color: var(--slate);
          text-shadow: none;
        }
        .card-link {
          font-size: 12px;
          color: var(--brass-deep);
        }
        .card-body {
          padding: 22px 20px 24px;
        }
      }
      
      @media (max-width: 480px) {
        .card-title {
          font-size: 18px;
        }
        .card-sub {
          font-size: 12px;
          line-height: 1.5;
        }
        .card-body {
          padding: 18px 16px 20px;
        }
      }
      
      @media (max-width: 860px) {
          .card-body::before {
            display: none;
          }
        }

/* ============================================================
   SECTION HEADS
   ============================================================ */
.sec-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.sec-head-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.section-dark .sec-head h2 { color: #fff; }

/* Eyebrow when inside sec-head-row — remove default ::before line */
.sec-head-row .eyebrow {
  margin: 0;
  white-space: nowrap;
}
.sec-head-row .eyebrow::before {
  display: none;
}

.sec-head p {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 500;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.7;
}

.section-dark .sec-head p { color: #B7C2D4; }

@media (max-width: 640px) {
  .sec-head { margin-bottom: 36px; }
  .sec-head-row { gap: 12px; }
  .sec-head h2 { font-size: clamp(28px, 8vw, 40px); }
  .sec-head p { font-size: 15px; margin-top: 10px; }
}

@media (max-width: 420px) {
  .sec-head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .sec-head-row .eyebrow::before {
    display: block;
  }
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-on-light);
  border-bottom: 1px solid var(--line-on-light);
}
.stat { padding: 36px 28px; border-left: 1px solid var(--line-on-light); }
.stat:first-child { border-left: none; }
.stat b {
  display: block; font-family: var(--font-mono);
  font-size: 34px; color: var(--navy-900);
}
.stat span { display: block; margin-top: 8px; font-size: 13px; color: var(--slate); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-on-light);
  border: 1px solid var(--line-on-light);
}
.service-card {
  background: var(--paper);
  padding: 36px 30px;
  transition: background .3s var(--ease);
}
.service-card:hover { background: #fff; }
.service-card .num { font-family: var(--font-mono); font-size: 12px; color: var(--brass-deep); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px; margin-top: 16px; color: var(--navy-900);
}
.service-card p { margin-top: 12px; font-size: 14px; color: var(--slate); }


/* ============================================================
   SLOGAN BANNER
   ============================================================ */
.slogan-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0a2e3d 0%, #09637E 40%, #0b8a9e 100%);
  padding: 4.5rem 0; margin-top: 3rem;
}
.slogan-bg-shape {
  position: absolute; top: -60%; right: -10%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.slogan-bg-shape::before {
  content: ''; position: absolute; bottom: -30%; left: -40%;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
}
.slogan-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
}
.slogan-text-group { flex: 1; }
.slogan-line1 {
  margin: 0; font-size: 1.85rem; font-weight: 800;
  color: #fff; line-height: 1.4; letter-spacing: -0.01em;
}
.slogan-br { display: none; }
.slogan-line2 {
  margin: 0.75rem 0 0; font-size: 1.2rem; font-weight: 400;
  color: rgba(255,255,255,0.7); line-height: 1.6; letter-spacing: 0.01em;
}
.btn-cta-arrow {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0.85rem 2rem;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 10px; color: #fff;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: all .3s ease;
}
.btn-cta-arrow:hover {
  background: #fff; color: #09637E; border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-cta-arrow svg { width: 18px; height: 18px; transition: transform .3s ease; }
.btn-cta-arrow:hover svg { transform: translateX(3px); }

/* ============================================================
   PROJECT CARDS (EB-5)
   ============================================================ */
.project-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 28px;
}
.project-card {
  display: flex; flex-direction: column; align-items: flex-start;
  background: #fff; border: 1px solid var(--paper-line);
  border-radius: 8px; padding: 26px 24px;
  text-align: left; cursor: pointer; font-family: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  border-color: var(--brass);
}
.project-sponsor {
  display: block; width: 100%;
  font-size: 14px; font-weight: 700; color: var(--navy-900);
  padding-bottom: 8px; margin-bottom: 12px;
  border-bottom: 2px solid var(--navy-900);
}
.project-name {
  display: block; font-size: 19px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.01em;
}

/* ============================================================
   PDF MODAL
   ============================================================ */
.pdf-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.pdf-modal-overlay.is-open { opacity: 1; visibility: visible; }
.pdf-modal {
  width: min(92vw, 860px); height: min(88vh, 780px);
  background: #fff; border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  transform: translateY(20px) scale(0.97);
  transition: transform .35s var(--ease);
}
.pdf-modal-overlay.is-open .pdf-modal { transform: translateY(0) scale(1); }
.pdf-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid #e5e7eb;
  background: #f9fafb; flex-shrink: 0;
}
.pdf-modal-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; color: var(--ink);
}
.pdf-modal-title svg { color: var(--brass-deep); flex: none; }
.pdf-modal-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #e5e7eb; background: #fff;
  border-radius: 8px; font-size: 20px; color: #6b7280; cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.pdf-modal-close:hover { background: var(--stamp); color: #fff; border-color: var(--stamp); }
.pdf-iframe-container { flex: 1; min-height: 0; background: #e5e7eb; }
.pdf-iframe-container iframe { width: 100%; height: 100%; border: none; display: block; }



/* ============================================================
 SERVICES.HTML
 ============================================================ */

 /* ============================================================
    STEP LIST — Dark context override
    (fixes invisible text when .step-list is inside .section-dark)
    ============================================================ */
 .section-dark .step-item h4 { color: #fff; }
 .section-dark .step-item p { color: #9AA8BC; }
 .section-dark .step-item .step-num::before { color: #fff; }
 .section-dark .step-item .step-num { color: var(--brass-light); }
 .section-dark .step-item {
   border-top-color: var(--line-on-dark);
 }
 .section-dark .step-item:last-child {
   border-bottom-color: var(--line-on-dark);
 }
 

/* ============================================================
 TRACKER.PHP & 자료실
 ============================================================ */

.board-page { max-width: 1180px; padding: 80px 24px 100px; }
.board-table-wrap { border-top: 2px solid var(--navy-900); border-bottom: 1px solid var(--line-on-light); background: #fff; overflow-x: auto; }
.board-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 640px; }
.board-table thead th { background: var(--paper-dim); color: var(--navy-900); font-weight: 600; text-align: center; padding: 18px 12px; border-bottom: 1px solid var(--line-on-light); white-space: nowrap; }
.board-table tbody td { padding: 18px 12px; border-bottom: 1px solid var(--line-on-light); text-align: center; color: var(--slate); transition: background .2s var(--ease); }
.board-table tbody tr:last-child td { border-bottom: none; }
.board-table tbody tr:hover td { background: #F7F4EC; }
.board-table .td-num { width: 80px; }
.board-table .td-writer { width: 120px; }
.board-table .td-date { width: 140px; font-family: var(--font-mono); color: var(--slate-soft); }
.board-table .td-title { text-align: left; padding-left: 24px; }
.board-table .td-title a { color: var(--ink); font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 500px; }
.board-table .td-title a:hover { color: var(--navy-900); text-decoration: underline; }

.board-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; }
.board-pagination a { display: flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 6px; border: 1px solid var(--line-on-light); background: #fff; font-family: var(--font-mono); font-size: 14px; color: var(--slate); transition: all .2s var(--ease); }
.board-pagination a:hover { border-color: var(--navy-900); color: var(--navy-900); }
.board-pagination .page-num.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.board-pagination .page-btn svg { color: var(--slate); }
.board-pagination .page-btn:hover svg { color: var(--navy-900); }

.board-search { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 32px; }
.board-search .search-select, .board-search .search-input { height: 44px; padding: 0 16px; border: 1px solid var(--line-on-light); background: #fff; font-family: var(--font-body); font-size: 14px; color: var(--ink); border-radius: 2px; }
.board-search .search-select { flex: 0 0 100px; cursor: pointer; }
.board-search .search-input { flex: 0 1 300px; }
.board-search .search-input:focus, .board-search .search-select:focus { outline: none; border-color: var(--navy-900); }
.board-search .search-btn { height: 44px; padding: 0 24px; background: var(--navy-900); color: #fff; border: none; font-size: 14px; font-weight: 600; cursor: pointer; border-radius: 2px; transition: background .2s var(--ease); }
.board-search .search-btn:hover { background: var(--navy-950); }

@media (max-width: 768px) {
  .board-search { flex-wrap: wrap; }
  .board-search .search-input { flex: 1 1 100%; }
}


/* ============================================================
   RESOURCES
   ============================================================ */
.resource-list { display: flex; flex-direction: column; }
.resource-row {
  display: grid; grid-template-columns: 120px 1fr auto;
  gap: 28px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--line-on-light);
  transition: padding-left .25s var(--ease);
}
.resource-row:hover { padding-left: 10px; }
.resource-row .tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  color: var(--brass-deep); border: 1px solid var(--brass-deep);
  padding: 5px 10px; text-align: center;
}
.resource-row h4 { font-size: 17px; color: var(--navy-900); font-weight: 600; }
.resource-row .date { font-family: var(--font-mono); font-size: 12px; color: var(--slate-soft); }

/* ============================================================
   ABOUT BAND / CTA
   ============================================================ */
.about-band {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-band p { margin-top: 20px; font-size: 15px; color: var(--slate); }
.about-signers { display: flex; gap: 40px; margin-top: 34px; }
.about-signers div b {
  display: block; font-family: var(--font-display);
  font-size: 18px; color: var(--navy-900);
}
.about-signers div span { font-size: 12px; color: var(--slate-soft); }

.cta-panel {
  background: var(--navy-950); padding: 48px;
  position: relative; overflow: hidden;
}
.cta-panel::after {
  content: ""; position: absolute; right: -40px; bottom: -40px;
  width: 180px; height: 180px;
  border: 1px dashed var(--line-on-dark); border-radius: 50%;
}
.cta-panel h3 {
  font-family: var(--font-display); font-size: 26px;
  color: #fff; max-width: 320px;
}
.cta-panel p { margin-top: 14px; font-size: 14px; color: #9AA8BC; max-width: 320px; }
.cta-panel .btn { margin-top: 28px; }

/* ============================================================
 ABOUT.HTML
 ============================================================ */
 
 
 
 
  /* ── Greeting ── */
  .greeting-block {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .greeting-block .greeting-text {
    text-align: left;
    font-size: 1.05rem;
    line-height: 2;
    color: #444;
  }
  .greeting-block .greeting-text p {
    margin-bottom: 1.2em;
  }
  .greeting-sign {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: right;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    font-weight: 600;
  }
  .greeting-sign .sign-role {
    display: block;
    font-weight: 400;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 2px;
  }

  /* ── Section divider ── */
  .section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d0d0d0 30%, #d0d0d0 70%, transparent);
    margin: 3rem 0;
  }

  /* ── Team group ── */
  .team-group {
    margin-bottom: 3rem;
  }
  .team-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #09637E;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #09637E;
  }
  .team-group-title .tg-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #09637E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .team-group-title .tg-icon svg {
    width: 18px;
    height: 18px;
  }

  /* ── Consultant card grid ── */
  .consultant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  .consultant-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 1.8rem 1.4rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .consultant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #09637E, #0fa0b8);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .consultant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(9,99,126,0.10);
    border-color: #09637E;
  }
  .consultant-card:hover::before {
    opacity: 1;
  }
  .consultant-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #09637E, #0fa0b8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .consultant-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
  }
  .consultant-role {
    font-size: 0.88rem;
    color: #09637E;
    font-weight: 600;
    margin-bottom: 0.6rem;
  }
  .consultant-desc {
    font-size: 0.84rem;
    color: #777;
    line-height: 1.6;
  }
  .consultant-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 0.8rem;
    font-size: 0.82rem;
    color: #09637E;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
  }
  .consultant-link:hover {
    color: #0fa0b8;
  }
  .consultant-link svg {
    width: 14px;
    height: 14px;
  }

  /* Attorney card variant */
  .consultant-card.is-attorney .consultant-avatar {
    background: linear-gradient(135deg, #1a3a5c, #09637E);
  }
  .consultant-card.is-cpa .consultant-avatar {
    background: linear-gradient(135deg, #2e7d32, #43a047);
  }

  /* ── Stats row ── */
  .about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 2.5rem 0 3rem;
  }
  .about-stat {
    text-align: center;
    padding: 1.5rem 0.5rem;
    background: #f7fafa;
    border-radius: 12px;
    border: 1px solid #e0efef;
  }
  .about-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #09637E;
    line-height: 1.2;
  }
  .about-stat-num span {
    font-size: 1.1rem;
    font-weight: 600;
  }
  .about-stat-label {
    font-size: 0.82rem;
    color: #666;
    margin-top: 4px;
    font-weight: 500;
  }


.cert-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 8px;
  }
  .cert-card{
    background: #fff;
    border: 1px solid var(--paper-line);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .cert-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(9,99,126,0.14);
  }
  .cert-image{
    border: 1px solid var(--paper-line);
    border-radius: 6px;
    overflow: hidden;
    background: var(--paper-dim);
    aspect-ratio: 3 / 4;
  }
  .cert-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .cert-caption{
    margin-top: 14px;
    font-weight: 700;
    font-size: 15px;
    color: var(--navy-900);
  }
  
  @media (max-width: 860px){
    .cert-grid{ grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px){
    .cert-grid{ grid-template-columns: 1fr; max-width: 320px; margin: 8px auto 0; }
  }
  
  /* ============================================================
     OFFICE GALLERY — 2x2 grid
     ============================================================ */
  .gallery-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .gallery-item{
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--paper-dim);
  }
  .gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }
  .gallery-item:hover img{ transform: scale(1.05); }
  


/* ============================================================
   MAP SECTION (찾아오시는 길)
   ============================================================ */
.map-section {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.kakao-map {
  width: 100%;
  min-height: 460px;
  background: var(--paper-dim);
}

.map-info {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 1px solid var(--line-on-light);
  background: #fff;
}

.map-address {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 0;
}
.map-address svg {
  flex-shrink: 0;
  margin-top: 2px;
  margin-right: 6px;
}

.map-actions {
  display: flex;
  gap: 10px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  border: 1px solid var(--line-on-light);
  border-radius: var(--radius-sm);
  background: #fff;
  text-decoration: none;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-outline svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-outline:hover {
  border-color: var(--navy-900);
  background: var(--navy-950);
  color: #fff;
}
.btn-outline:hover svg { color: var(--brass-light); }

.map-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.map-contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
  border-top: 1px solid var(--line-on-light);
  font-size: 14px;
}
.map-contact-list li:first-child { border-top: none; }
.map-contact-list .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate-soft);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.map-contact-list .value {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.map-contact-list .value a {
  color: var(--brass-deep);
  text-decoration: none;
  transition: color .2s;
}
.map-contact-list .value a:hover {
  color: var(--navy-600);
  text-decoration: underline;
}

/* ── Map responsive ── */
@media (max-width: 860px) {
  .map-section {
    grid-template-columns: 1fr;
  }
  .map-info {
    border-left: none;
    border-top: 1px solid var(--line-on-light);
    padding: 28px 24px;
    gap: 22px;
  }
  .kakao-map {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .map-section {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .kakao-map {
    min-height: 260px;
  }
  .map-info {
    padding: 24px 20px;
    gap: 18px;
  }
  .map-address {
    font-size: 14px;
  }
  .map-actions {
    flex-direction: column;
  }
  .btn-outline {
    justify-content: center;
    padding: 12px 16px;
  }
  .map-contact-list li {
    padding: 12px 0;
    font-size: 13px;
  }
}



  /* ── Responsive ── */
  @media (max-width: 900px) {
    .about-stats {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .consultant-grid {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .consultant-card {
      padding: 1.4rem 1rem 1.2rem;
    }
    .consultant-avatar {
      width: 56px;
      height: 56px;
      font-size: 1.2rem;
    }
    .about-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .about-stat-num {
      font-size: 1.6rem;
    }
    .greeting-block .greeting-text {
      font-size: 0.98rem;
      line-height: 1.9;
    }
  }
  @media (max-width: 400px) {
    .consultant-grid {
      grid-template-columns: 1fr;
    }
  }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 2.5rem 0 2rem;
}
.footer-inner {
  display: flex; align-items: flex-start; gap: 3rem;
}

/* ── Brand ── */
.footer-brand {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; padding-top: 4px;
}
.footer-logo img { height: 46px; width: auto; display: block; }
.footer-brand-text { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.footer-company-en {
  font-size: 0.7rem; font-weight: 700; color: #999;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.footer-company-kr { font-size: 0.82rem; font-weight: 500; color: #000; }

/* ── Info ── */
.footer-info { flex: 1; min-width: 0; }
.footer-contact-line { font-size: 0.8rem; color: #555; line-height: 1.6; margin: 0; }
.footer-contact-line .dot { margin: 0 8px; color: #ccc; }
.footer-contact-line a { color: #555; text-decoration: none; }
.footer-contact-line a:hover { color: #09637E; text-decoration: underline; }

/* ── Bottom ── */

.footer-note { font-size: 0.72rem; color: #aaa; margin: 0 0 4px; line-height: 1.7; }
.footer-copy { font-size: 0.68rem; color: #bbb; margin: 0; letter-spacing: 0.01em; }

.footer-legal-links {
  list-style: none; padding: 0; margin: 8px 0;
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
}
.footer-legal-links li { margin: 0; padding: 0; }
.footer-legal-links li a {
  color: #636363; text-decoration: none; font-size: 0.8rem;
  transition: color .3s ease;
}
.footer-legal-links li a:hover { color: #09637E; text-decoration: underline; }
.footer-legal-links li.dot { color: #ccc; padding: 0 10px; font-size: 0.8rem; }

/* ============================================================
   FLOATING SIDE MENU
   ============================================================ */
.side-float {
  position: fixed; right: 26px; top: 50%; transform: translateY(-50%);
  z-index: 150; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--paper-line);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 12px 32px -8px rgba(9,99,126,0.22);
}
.side-float a, .side-float button {
  width: 84px; height: 84px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--navy-900); background: #fff; border: none;
  border-bottom: 1px solid var(--paper-line);
  font-size: 11px; font-weight: 600; letter-spacing: -0.01em;
  position: relative;
  transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.side-float a:last-child, .side-float button:last-child { border-bottom: none; }
.side-float a:hover, .side-float button:hover {
  background: var(--navy-900); color: #fff;
  box-shadow: inset 0 0 0 1px var(--navy-900); z-index: 1;
}
.side-float svg { width: 22px; height: 22px; }
.side-float .kakao-item:hover { background: #FEE500; color: #391B1B; box-shadow: none; }
.side-float .top-item { display: none; }
.side-float .top-item.is-visible { display: flex; }


/* ============================================================
   FACTBAR
   ============================================================ */
.factbar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--paper-dim);
  border-bottom: 1px solid var(--line-on-light);
}
.fact { padding: 26px 24px; border-left: 1px solid var(--line-on-light); }
.fact:first-child { border-left: none; }
.fact span { display: block; font-size: 12px; color: var(--slate); margin-bottom: 6px; }
.fact b { font-family: var(--font-mono); font-size: 18px; color: var(--navy-900); }

/* ============================================================
   STEP LIST
   ============================================================ */
.step-list { counter-reset: step; }
.step-item {
  display: grid; grid-template-columns: 88px 1fr;
  gap: 28px; padding: 32px 0;
  border-top: 1px solid var(--line-on-light);
}
.step-item:last-child { border-bottom: 1px solid var(--line-on-light); }
.step-item .step-num {
  counter-increment: step;
  font-family: var(--font-mono); font-size: 13px; color: var(--brass-deep);
}
.step-item .step-num::before {
  content: "0" counter(step); font-size: 34px; display: block;
  color: var(--navy-900); font-family: var(--font-display);
}
.step-item h4 { font-size: 18px; color: var(--navy-900); }
.step-item p { margin-top: 10px; font-size: 14px; color: var(--slate); max-width: 560px; }

/* ============================================================
   DETAIL SPLIT
   ============================================================ */
.detail-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.detail-split .figure {
  background: var(--navy-950); padding: 40px;
  color: #fff; position: relative; overflow: hidden;
}
.detail-split .figure .amount {
  font-family: var(--font-display); font-size: 44px; color: var(--brass-light);
}
.detail-split .figure .amount-label { font-size: 13px; color: #9AA8BC; margin-top: 10px; }
.detail-split ul.check-list { margin-top: 0; }

.check-list li {
  display: flex; gap: 12px; padding: 14px 0;
  border-top: 1px solid var(--line-on-light);
  font-size: 14px; color: var(--ink);
}
.check-list li:last-child { border-bottom: 1px solid var(--line-on-light); }
.check-list li svg { flex: none; width: 18px; height: 18px; margin-top: 2px; color: var(--brass-deep); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border-top: 1px solid var(--line-on-light); }
.faq-item:last-child { border-bottom: 1px solid var(--line-on-light); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 4px; font-size: 16px; font-weight: 600; color: var(--navy-900);
}
.faq-q .plus {
  font-family: var(--font-mono); font-size: 18px; color: var(--brass-deep);
  transition: transform .25s var(--ease); flex: none; margin-left: 20px;
}
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 4px 24px; font-size: 14px; color: var(--slate); max-width: 640px; }

/* ============================================================
   PROSE BLOCK
   ============================================================ */
.prose-block p {
  font-size: 15px; color: var(--slate); line-height: 1.8;
  margin-top: 16px; max-width: 720px;
}
.prose-block p:first-child { margin-top: 0; }


/*=============================================================
VISA.HTML
==============================================================*/


/* ============================================================
   OVERVIEW BOX — Bordered content block
   ============================================================ */
.overview-box {
  border: 1px solid var(--line-on-light);
  border-radius: 10px;
  padding: 36px 32px;
  background: #fff;
  margin-bottom: 32px;
}

.overview-box-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--navy-900);
  position: relative;
}
.overview-box-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--brass);
}

.overview-box-desc {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  margin: 0;
}

.overview-box-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brass-deep);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--line-on-light);
  border-radius: 6px;
  transition: all .25s var(--ease);
}
.overview-box-link:hover {
  border-color: var(--brass-deep);
  background: var(--navy-950);
  color: #fff;
}
.overview-box-link:hover svg { color: var(--brass-light); }
.overview-box-link svg { color: var(--brass-deep); transition: color .25s var(--ease); }

.overview-box-advantages {
  margin-top: 28px;
  padding: 24px;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid var(--paper-line);
}

.overview-box-adv-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.overview-box-adv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.overview-box-adv-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
}

.overview-box-adv-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brass-deep);
}

.overview-box-note {
  margin: 24px 0 0;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
  padding: 16px 20px;
  background: rgba(8,131,149,0.04);
  border-left: 3px solid var(--brass);
  border-radius: 0 6px 6px 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .overview-box {
    padding: 24px 18px;
    border-radius: 8px;
  }
  .overview-box-title {
    font-size: 19px;
    padding-bottom: 14px;
    margin-bottom: 16px;
  }
  .overview-box-desc { font-size: 14px; }
  .overview-box-advantages { padding: 18px 16px; margin-top: 22px; }
  .overview-box-adv-list li { font-size: 13px; }
  .overview-box-note { font-size: 13px; padding: 14px 16px; margin-top: 20px; }
}


  /* ── Tab content visibility ── */
  .tab-content { display: none; }
  .tab-content.active { display: block; }

  /* ── Prose block ── */
  .prose-block { max-width: 780px; font-size: 1rem; line-height: 1.95; color: #444; }
  .prose-block p { margin-bottom: 1.1em; }
  .prose-block strong { color: #1a1a1a; }

  /* ── Overview tables ── */
  .overview-tables { display: grid; gap: 28px; }
 
  .tuition-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
  .tuition-table thead th { background: #09637E; color: #fff; padding: 10px 16px; text-align: center; font-weight: 600; font-size: 0.86rem; border-right: 1px solid rgba(255,255,255,0.15); }
  .tuition-table thead th:first-child { border-radius: 8px 0 0 0; text-align: left; }
  .tuition-table thead th:last-child { border-radius: 0 8px 0 0; border-right: none; }
  .tuition-table tbody td { padding: 11px 16px; border-bottom: 1px solid #eee; text-align: center; }
  .tuition-table tbody td:first-child { text-align: left; font-weight: 500; }
  .tuition-table .total-row { background: #eef7f8; font-weight: 700; }
  .tuition-table .total-row td { color: #09637E; }
  .table-source { font-size: 0.78rem; color: #999; margin-top: 8px; text-align: right; }
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* ── Benefits ── */
  .benefit-list { display: grid; gap: 14px; }
  .benefit-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px; background: rgba(255,255,255,0.06); border-radius: 10px; font-size: 0.98rem; color: #ddd; }
  .benefit-item svg { width: 22px; height: 22px; flex-shrink: 0; color: #4dd0e1; margin-top: 1px; }
  .benefit-item h4 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
  .sub-check { list-style: none; padding: 0; margin: 0; display: grid; gap: 5px; }
  .sub-check li { font-size: 0.88rem; color: #bbb; padding-left: 18px; position: relative; }
  .sub-check li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: #4dd0e1; opacity: 0.6; }

  /* ── Section dark ── */
  .section-dark { background: #0e2a36; color: #ddd; border-radius: 16px; padding: 2.5rem 2rem; margin: 2rem 0; }

  /* ── Info card ── */
  .info-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin: 1.5rem 0; }
  .info-card { background: #f7fafa; border: 1px solid #e0efef; border-radius: 12px; padding: 1.3rem 1.2rem; transition: transform 0.25s, box-shadow 0.25s; }
  .info-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(9,99,126,0.08); }
  .info-card-label { font-size: 0.78rem; color: #09637E; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
  .info-card-value { font-size: 0.94rem; color: #333; line-height: 1.6; font-weight: 500; }

  

  /* ── Criteria grid ── */
  .criteria-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin: 1.5rem 0; }
  .criteria-card {
    background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; padding: 1.4rem 1.3rem;
    position: relative; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; overflow: hidden;
  }
  .criteria-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #09637E, #0fa0b8); opacity: 0; transition: opacity 0.25s;
  }
  .criteria-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(9,99,126,0.10); border-color: #09637E; }
  .criteria-card:hover::before { opacity: 1; }
  .criteria-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 8px; background: #09637E; color: #fff;
    font-size: 0.85rem; font-weight: 800; margin-bottom: 10px;
  }
  .criteria-ko { font-size: 0.92rem; font-weight: 600; color: #1a1a1a; margin-bottom: 6px; line-height: 1.5; }
  .criteria-en { font-size: 0.78rem; color: #999; line-height: 1.5; font-style: italic; }

  /* ── Dhanasar diagram ── */
  .dhanasar-diagram { margin: 2rem 0; }
  .dhanasar-prong { display: flex; gap: 0; margin-bottom: 12px; position: relative; }
  .dhanasar-prong:last-child { margin-bottom: 0; }
  .dhanasar-badge {
    width: 64px; min-height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #09637E, #0fa0b8); color: #fff; font-size: 1.4rem; font-weight: 800;
    flex-shrink: 0; border-radius: 12px 0 0 12px; position: relative;
  }
  .dhanasar-body {
    flex: 1; background: #f7fafa; border: 1px solid #e0efef; border-left: none;
    border-radius: 0 12px 12px 0; padding: 1.2rem 1.5rem;
  }
  .dhanasar-title { font-size: 0.92rem; font-weight: 700; color: #09637E; margin-bottom: 6px; line-height: 1.5; }
  .dhanasar-desc { font-size: 0.86rem; color: #555; line-height: 1.8; }
  .dhanasar-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 700; color: #09637E;
    background: #e0efef; padding: 3px 10px; border-radius: 20px; margin-top: 8px;
  }
  .dhanasar-prong:not(:last-child)::after {
    content: ''; position: absolute; left: 32px; bottom: -12px;
    width: 2px; height: 12px; background: #b0d4db;
  }

 
  /* ── Highlight box ── */
  .highlight-box {
    background: linear-gradient(135deg, #eef7f8, #f5fafa); border-left: 4px solid #09637E;
    border-radius: 0 12px 12px 0; padding: 1.3rem 1.5rem; margin: 1.5rem 0; font-size: 0.9rem; line-height: 1.8; color: #444;
  }
  .highlight-box strong { color: #09637E; }

  /* ── CTA banner ── */
  .cta-banner {
    text-align: center; padding: 2.5rem 2rem; background: linear-gradient(135deg, #09637E, #0b8a9e);
    border-radius: 16px; margin: 2rem 0; color: #fff;
  }
  .cta-banner h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
  .cta-banner p { font-size: 0.92rem; opacity: 0.85; margin-bottom: 1.2rem; }
  .cta-btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 0.75rem 2rem;
    background: #fff; color: #09637E; border-radius: 8px; font-size: 0.95rem;
    font-weight: 700; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  }
  .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
  .cta-btn svg { width: 18px; height: 18px; }

  /* ── Note callout ── */
  .note-callout {
    display: flex; gap: 12px; padding: 1.2rem 1.4rem; background: #fff; border: 1px solid #088395;
    border-radius: 10px; margin: 1.5rem 0; font-size: 0.86rem; line-height: 1.75; color: #4d4d4d;
  }
  .note-callout-icon { flex-shrink: 0; font-size: 1.2rem; margin-top: 1px; }

  /* ── Target tags ── */
  .target-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 1rem 0; }
  .target-tag {
    padding: 6px 14px; background: #e0efef; color: #09637E; border-radius: 20px;
    font-size: 0.82rem; font-weight: 600;
  }

  /* ── Qualification box ── */
  .qual-box { display: flex; gap: 16px; margin: 1.5rem 0; }
 .qual-item {
     flex: 1; padding: 1.2rem; border-radius: 12px; text-align: center;
     border: 4px solid #3b7789; transition: border-color 0.25s;
   }
  .qual-item:hover { border-color: #09637E; }
  .qual-or {
    display: flex; align-items: center; font-size: 1rem; font-weight: 800; color: #09637E; flex-shrink: 0;
  }
  .qual-label { font-size: 0.78rem; color: #09637E; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 6px; }
  .qual-text { font-size: 0.88rem; color: #333; font-weight: 500; line-height: 1.6; }

  /* ── Project download section ── */
  .project-download-section {
    margin: 2.5rem 0; padding: 2rem;
    background: linear-gradient(135deg, #f7fafa 0%, #eef7f8 100%);
    border: 1px solid #d0e8ec; border-radius: 16px; text-align: center;
  }
  .project-download-section .pd-label {
    font-size: 0.78rem; font-weight: 700; color: #09637E;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem;
  }
  .project-download-section h3 { font-size: 1.15rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.4rem; }
  .project-download-section .pd-desc { font-size: 0.88rem; color: #666; margin-bottom: 1.2rem; line-height: 1.6; }
  .pdf-open-btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #09637E, #0fa0b8); color: #fff; border: none;
    border-radius: 10px; font-size: 0.95rem; font-weight: 700; cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s; font-family: inherit;
  }
  .pdf-open-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(9,99,126,0.3); }
  .pdf-open-btn svg { width: 20px; height: 20px; }

  /* ═══════════════════════════════════════════════════
     PDF IFRAME VIEWER (single clean version)
     ═══════════════════════════════════════════════════ */
  .pdf-modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    align-items: center; justify-content: center; padding: 16px;
    opacity: 0; transition: opacity 0.3s ease;
  }
  .pdf-modal-overlay.is-open { display: flex; opacity: 1; }
  .pdf-modal {
    background: #fff; border-radius: 14px; width: 100%; max-width: 900px;
    height: 90vh; max-height: 800px; display: flex; flex-direction: column;
    overflow: hidden; box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .pdf-modal-overlay.is-open .pdf-modal { transform: scale(1) translateY(0); }
  .pdf-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; background: #f8f9fa; border-bottom: 1px solid #e9ecef; flex-shrink: 0;
  }
  .pdf-modal-title {
    font-size: 0.95rem; font-weight: 600; color: #333;
    display: flex; align-items: center; gap: 8px;
  }
  .pdf-modal-title svg { width: 20px; height: 20px; color: #09637E; }
  .pdf-modal-close {
    width: 36px; height: 36px; border-radius: 8px; border: 1px solid #dee2e6;
    background: #fff; color: #666; font-size: 1.4rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; line-height: 1;
  }
  .pdf-modal-close:hover { background: #fee; border-color: #fcc; color: #e00; }
  .pdf-iframe-container { flex: 1; min-height: 0; position: relative; background: #e9ecef; }

  /* ═══════════════════════════════════════════════════
     MOBILE RESPONSIVE
     ═══════════════════════════════════════════════════ */
  @media (max-width: 900px) {
    .criteria-grid { grid-template-columns: 1fr 1fr; }
    .info-cards { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 700px) {
    .section-dark { padding: 1.8rem 1.2rem; border-radius: 12px; margin: 1.5rem 0; }
    .prose-block { font-size: 0.95rem; line-height: 1.85; }
    .benefit-item { padding: 12px 14px; font-size: 0.9rem; }
    .benefit-item h4 { font-size: 0.92rem; }
    .sub-check li { font-size: 0.82rem; }

    .info-cards { grid-template-columns: 1fr; gap: 12px; }
    .info-card { padding: 1.1rem 1rem; }
    .info-card-value { font-size: 0.88rem; }

    .criteria-grid { grid-template-columns: 1fr; gap: 12px; }
    .criteria-card { padding: 1.2rem 1.1rem; }
    .criteria-ko { font-size: 0.88rem; }



    .qual-box { flex-direction: column; gap: 10px;}
    .qual-or { justify-content: center; }

    .dhanasar-prong { flex-direction: column; }
    .dhanasar-badge { width: 100%; min-height: auto; border-radius: 12px 12px 0 0; padding: 12px; }
    .dhanasar-body { border-left: 1px solid #e0efef; border-radius: 0 0 12px 12px; padding: 1rem 1.2rem; }
    .dhanasar-prong:not(:last-child)::after { display: none; }
    .dhanasar-title { font-size: 0.85rem; }
    .dhanasar-desc { font-size: 0.82rem; }

    .highlight-box { padding: 1rem 1.1rem; font-size: 0.85rem; line-height: 1.7; border-radius: 0 10px 10px 0; }

    .note-callout { flex-direction: column; gap: 8px; padding: 1rem 1.1rem; font-size: 0.82rem; }
    .note-callout-icon { margin-top: 0; }

    .cta-banner { padding: 1.8rem 1.2rem; border-radius: 12px; margin: 1.5rem 0; }
    .cta-banner h3 { font-size: 1.05rem; }
    .cta-banner p { font-size: 0.85rem; margin-bottom: 1rem; }
    .cta-btn { padding: 0.7rem 1.5rem; font-size: 0.88rem; }

    .project-download-section { padding: 1.5rem 1.2rem; border-radius: 12px; margin-top: 2rem; }
    .project-download-section h3 { font-size: 1.05rem; }
    .project-download-section .pd-desc { font-size: 0.82rem; }
    .pdf-open-btn { width: 100%; justify-content: center; padding: 0.75rem 1.5rem; font-size: 0.9rem; }

    .compare-table { font-size: 0.8rem; }
    .compare-table thead th { padding: 10px 8px; font-size: 0.78rem; }
    .compare-table tbody td { padding: 10px 8px; }
    .compare-table tbody td:first-child { white-space: normal; min-width: 70px; }

  
    .tuition-table { font-size: 0.8rem; }
    .tuition-table thead th { padding: 8px 6px; font-size: 0.74rem; }
    .tuition-table tbody td { padding: 8px 6px; }

    .overview-tables { gap: 20px; }

    .target-tags { gap: 6px; }
    .target-tag { padding: 5px 10px; font-size: 0.78rem; }

    /* PDF modal */
    .pdf-modal-overlay { padding: 8px; }
    .pdf-modal { height: 95vh; max-height: none; border-radius: 10px; }
    .pdf-modal-header { padding: 12px 14px; }
    .pdf-modal-title { font-size: 0.82rem; gap: 6px; }
    .pdf-modal-title svg { width: 16px; height: 16px; }
    .pdf-modal-close { width: 32px; height: 32px; font-size: 1.2rem; }
  }

  @media (max-width: 400px) {
   
    .qual-item { padding: 1rem 0.8rem; }
    .cta-banner { padding: 1.5rem 1rem; }
    .cta-banner h3 { font-size: 0.98rem; }
  }
  
  
  /* ═══════════════════════════════════════════════════
     LAYOUT WRAPPER — Mobile Fix (overrides style.css)
     ═══════════════════════════════════════════════════ */
  @media (max-width: 768px) {
    section.layout-wrapper,
    .layout-wrapper {
      display: flex !important;
      flex-direction: column !important;
      gap: 0 !important;
    }
  
    .visa-sidebar {
      width: 100% !important;
      max-width: 100% !important;
      min-width: 0 !important;
      flex-shrink: 0 !important;
      position: static !important;
      top: auto !important;
      margin-bottom: 0 !important;
      border-right: none !important;
      border-bottom: 1px solid #e0e0e0 !important;
    }
  
    .visa-menu {
      display: flex !important;
      flex-direction: row !important;
      overflow-x: auto !important;
      -webkit-overflow-scrolling: touch !important;
      gap: 0 !important;
      padding: 0 !important;
      margin: 0 !important;
      list-style: none !important;
      border-bottom: none !important;
    }
  
    .visa-menu li {
      flex-shrink: 0 !important;
      margin: 0 !important;
      padding: 0 !important;
    }
  
    .visa-menu li a {
      display: block !important;
      padding: 14px 18px !important;
      font-size: 0.88rem !important;
      font-weight: 500 !important;
      color: #666 !important;
      white-space: nowrap !important;
      border-bottom: 2px solid transparent !important;
      transition: all 0.2s !important;
    }
  
    .visa-menu li.active a {
      color: #09637E !important;
      border-bottom-color: #09637E !important;
      font-weight: 700 !important;
    }
  
    .visa-menu li a:hover {
      color: #09637E !important;
      background: #f7fafa !important;
    }
  
    .sidebar-title {
      display: none !important;
    }
  
    .visa-content {
      width: 100% !important;
      min-width: 0 !important;
      flex: 1 !important;
    }
  
    /* Force full-width content sections */
    .visa-content .section,
    .visa-content .section-dark,
    .visa-content .prose-block,
    .visa-content .overview-tables,
    .visa-content .info-cards,
    .visa-content .criteria-grid,
    .visa-content .highlight-box,
    .visa-content .cta-banner,
    .visa-content .note-callout,
    .visa-content .qual-box,
    .visa-content .dhanasar-diagram,
    .visa-content .process-flow,
    .visa-content .target-tags,
    .visa-content .table-wrap,
    .visa-content .project-download-section {
      margin-left: 0 !important;
      margin-right: 0 !important;
      max-width: 100% !important;
    }
  }
  
  @media (max-width: 480px) {
    .visa-menu li a {
      padding: 12px 14px !important;
      font-size: 0.82rem !important;
    }
  }
  

/* VISA */

/* ============================================================
 서브페이지 상단 공통
 ============================================================ */

.page-hero{
    background: var(--navy-950);
    color: #fff;
    padding: 30px 0 36px;
    position: relative;
    overflow: hidden;
  }
  .page-hero .eyebrow{ color: var(--brass-light); }
  .page-hero .eyebrow::before{ background: var(--brass-light); }
.page-hero .breadcrumb{
    position: relative;
    font-family: var(--font-mono);
    font-size: 14px;
    color: #ffffff;
    padding-top: 84px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    line-height: 1;
  }
   .page-hero .breadcrumb .dot {
       display: inline-flex;
       align-items: center;
       margin: 0 8px;
     }
     
  .page-hero .breadcrumb a:hover{ color: var(--brass-light); }
 .page-hero h1{
     position: relative;
     font-family: var(--font-display);
     font-size: clamp(32px, 4.6vw, 54px);
     max-width: 100%;
     margin-top: 10px;
     line-height: 1.2;
   }
   .page-hero .lede{
     position: relative;
     margin-top: 10px;
     max-width: 100%;
     font-size: 16px;
     color: #B7C2D4;
     line-height: 1.55;
   }

/* ============================================================
   TABLES — Redesigned
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  border: 1px solid var(--line-on-light);
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  margin-bottom: 28px;
}
.table-wrap:last-child { margin-bottom: 0; }

.overview-tables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}


/* ── Compare table (EB-5) ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
}

.compare-table thead th {
  background: var(--navy-950);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 18px 24px;
  text-align: center;
  letter-spacing: -0.01em;
  border-bottom: none;
  position: relative;
}
.compare-table thead th::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brass-light);
}
.compare-table thead th:first-child {
  text-align: left;
  background: var(--navy-900);
}

.compare-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line-on-light);
  vertical-align: top;
  text-align: center;
  color: var(--ink);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--navy-900);
  background: var(--paper-dim);
  width: 140px;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr {
  transition: background .2s ease;
}
.compare-table tbody tr:hover {
  background: rgba(8,131,149,0.03);
}

/* Highlight "대다수 선택" cell */
.compare-table tbody tr:last-child td:last-child {
/* color: var(--brass-deep); */
 /* font-weight: 700; */
}


/* ============================================================
   IMMIGRATION TABLE — Rowspan-safe design
   ============================================================ */
.imm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
}

.imm-table caption {
  background: var(--navy-950);
  color: #fff;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 15px;
  text-align: left;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  position: relative;
}
.imm-table caption::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brass-light);
}

.imm-table thead th {
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  text-align: center;
  border-bottom: 2px solid var(--brass-light);
}

/* ── All td base ── */
.imm-table td {
  padding: 14px 20px;
  vertical-align: middle;
  background: #fff;
}

/* ── Row separators — all columns ── */
.imm-table td {
  border-bottom: 1px solid var(--line-on-light);
}

/* Remove border on last row */
.imm-table tbody tr:last-child td {
  border-bottom: none;
}



/* ── Note badges ── */
.imm-table em {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--slate-soft);
  font-style: normal;
  padding: 4px 10px;
  background: var(--paper-dim);
  border-radius: 4px;
  border-left: 3px solid var(--brass);
  line-height: 1.4;
}

/* ── Row hover ── */
.imm-table tbody tr {
  transition: background .2s ease;
}
.imm-table tbody tr:hover td:nth-child(2),
.imm-table tbody tr:hover td:nth-child(3) {
  background: rgba(8,131,149,0.03);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .imm-table caption { font-size: 14px; padding: 16px 18px; }
  .imm-table thead th { padding: 12px 14px; font-size: 12px; }
  .imm-table td { padding: 12px 14px; font-size: 13px; }
  .imm-table td:first-child { width: 76px; font-size: 14px; }
  .imm-table td:nth-child(2) { width: 88px; font-size: 13px; }
  .imm-table em { font-size: 11px; padding: 3px 8px; }
}

@media (max-width: 540px) {
  .imm-table thead th { font-size: 11px; padding: 10px 8px; }
  .imm-table td { padding: 10px 10px; font-size: 12px; }
  .imm-table td:first-child { width: 60px; font-size: 13px; }
  .imm-table td:nth-child(2) { width: 72px; font-size: 12px; }
  .imm-table td:nth-child(3) { font-size: 12px; }
  .imm-table em {
    font-size: 10px;
    padding: 2px 6px;
    margin-top: 4px;
    display: block;
    margin-left: 0;
  }
}


/* ============================================================
   LAYOUT: SIDEBAR + CONTENT TABS
   ============================================================ */
.layout-wrapper {
  display: flex; gap: 40px; padding: 60px 24px;
  max-width: 1180px; margin: 0 auto; align-items: flex-start;
}
.visa-sidebar {
  flex: 0 0 260px; position: sticky; top: 90px;
  background: #fff; border: 1px solid var(--line-on-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.sidebar-title {
  background: var(--navy-950); color: #fff;
  padding: 18px 24px; font-family: var(--font-display);
  font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
}
.visa-menu li a {
  display: block; padding: 18px 24px;
  border-bottom: 1px solid var(--line-on-light);
  font-size: 15px; color: var(--slate);
  transition: all .25s var(--ease);
}
.visa-menu li:last-child a { border-bottom: none; }
.visa-menu li a:hover { background: var(--paper-dim); color: var(--navy-900); padding-left: 28px; }
.visa-menu li.active a {
  background: var(--paper-dim); color: var(--brass-deep);
  font-weight: 700; border-left: 4px solid var(--brass-deep); padding-left: 20px;
}

.visa-content { flex: 1; min-width: 0; }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.tab-head {
  padding: 40px 0; border-bottom: 1px solid var(--line-on-light); margin-bottom: 40px;
}
.tab-head h2 { font-size: 28px; color: var(--navy-900); margin-bottom: 12px; font-family: var(--font-display); }
.tab-head p { color: var(--slate); }

.visa-content .section { padding: 8px 0; }
.visa-content .section.section-dark {
  border-radius: 4px; overflow: hidden; margin: 16px 0; padding: 64px 48px;
}
.visa-content .factbar {
  border: 1px solid var(--line-on-light);
  border-radius: 4px; overflow: hidden; margin-bottom: 24px;
}
.visa-content .about-band { gap: 40px; }

/* ============================================================
   EB-1A DIAGNOSIS & PROCESS FLOW
   ============================================================ */
.eb1a-diagnosis-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.diag-card {
  background: #fff; border: 1px solid var(--line-on-light);
  padding: 32px 24px; text-align: left;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.diag-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,0.08); }
.diag-card h4 {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  color: var(--navy-900); margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 2px solid var(--brass); display: inline-block;
}
.diag-card p { font-size: 14px; color: var(--slate); line-height: 1.7; }

.process-flow {
  position: relative; display: flex; align-items: flex-start;
  justify-content: space-between; gap: 8px; padding: 8px 0;
}
.process-flow::before {
  content: ''; position: absolute; top: 44px; left: 11%; right: 11%;
  border-top: 2px dashed var(--brass-light); opacity: .5;
}
.flow-step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1; padding: 0 10px;
}
.flow-icon-wrap {
  position: relative; width: 88px; height: 88px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid var(--brass-light);
  margin-bottom: 20px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.flow-icon-wrap svg { width: 32px; height: 32px; color: var(--brass-light); }
.flow-step:hover .flow-icon-wrap {
  transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.25); border-color: #fff;
}
.flow-num {
  position: absolute; top: -6px; right: -6px; width: 26px; height: 26px;
  border-radius: 50%; background: var(--brass-light); color: var(--navy-950);
  font-weight: 700; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--navy-900);
}
.flow-step h4 { font-size: 15px; color: #fff; margin-bottom: 6px; letter-spacing: .01em; }
.flow-step p { font-size: 13px; color: var(--slate); }
.flow-step--final .flow-icon-wrap {
  background: radial-gradient(circle, rgba(201,168,109,.2), transparent 70%);
  border-width: 2px;
}

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap {
  overflow-x: auto; border: 1px solid var(--line-on-light);
  background: #fff; margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
}
.table-wrap:last-child { margin-bottom: 0; }

.overview-tables { display: grid; grid-template-columns: 1fr; gap: 28px; }



.tuition-table {
  width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px;
}
.tuition-table th, .tuition-table td {
  padding: 16px 12px; text-align: center;
  border-bottom: 1px solid var(--line-on-light);
  border-right: 1px solid var(--line-on-light);
}
.tuition-table th:last-child, .tuition-table td:last-child { border-right: none; }
.tuition-table thead th {
  background: var(--paper-dim); color: var(--navy-900);
  font-weight: 600; border-bottom: 2px solid var(--navy-900);
}
.tuition-table tbody tr:last-child td { border-bottom: none; }
.tuition-table .total-row { background: rgba(8,131,149,0.05); font-weight: 700; color: var(--navy-900); }

.table-source { font-size: 12px; color: var(--slate-soft); margin-top: 10px; text-align: right; padding: 0 12px; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefit-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; color: #fff;
  background: var(--navy-800); padding: 24px;
  border: 1px solid var(--line-on-dark);
}
.benefit-item svg { width: 20px; height: 20px; color: var(--brass-light); flex: none; margin-top: 2px; }

/* ============================================================
   BADGE SEAL
   ============================================================ */
.badge-seal { width: 64px; height: 64px; }

/* ============================================================
   SHARED RESPONSIVE — Section padding
   ============================================================ */

/* ============================================================
   FORMS (reservation, assessment, etc.)
   ============================================================ */
.form-page { padding: 60px 0 80px; }

.form-error-banner {
  display: none;
  background: #FEF2F2; border: 1px solid #FECACA;
  color: #B91C1C; padding: 16px 20px; border-radius: 8px;
  font-size: 14px; margin-bottom: 32px;
}
.form-error-banner.is-visible { display: block; }

.consult-form { max-width: 760px; margin: 0 auto; }

.form-section { margin-bottom: 48px; }
.form-section:last-of-type { margin-bottom: 0; }

.form-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--navy-900); margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 2px solid var(--line-on-light);
}
.req { color: var(--stamp); }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
}
.form-grid .field.full { grid-column: 1 / -1; }

.field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-sm);
  background: #fff; color: var(--ink);
  font-family: var(--font-body); font-size: 14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--slate-soft); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(8,131,149,0.1);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235B6B82' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.radio-group { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 6px; }
.radio-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--ink); cursor: pointer;
}
.radio-label input[type="radio"] {
  width: 16px; height: 16px; accent-color: var(--brass-deep); cursor: pointer;
}

.checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.check-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink); cursor: pointer;
  padding: 10px 12px; border: 1px solid var(--paper-line);
  border-radius: var(--radius-sm);
  transition: border-color .2s, background .2s;
}
.check-item:hover { border-color: var(--brass); background: rgba(8,131,149,0.03); }
.check-item input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--brass-deep); cursor: pointer; flex: none;
}

.terms-box {
  background: var(--paper-dim); border: 1px solid var(--paper-line);
  padding: 24px; border-radius: var(--radius-md);
  font-size: 13px; color: var(--slate); line-height: 1.8;
}

.agree-check {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; font-size: 14px; color: var(--ink); cursor: pointer;
}
.agree-check input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--brass-deep); cursor: pointer; flex: none;
}

.captcha-row {
  display: flex; align-items: center; gap: 12px;
  margin-top: 32px; flex-wrap: wrap;
}
.captcha-row img { border-radius: var(--radius-sm); border: 1px solid var(--paper-line); }
.captcha-refresh {
  padding: 10px 16px; font-size: 13px; font-weight: 500;
  background: var(--paper-dim); border: 1px solid var(--paper-line);
  border-radius: var(--radius-sm); color: var(--slate);
  transition: background .2s, color .2s;
}
.captcha-refresh:hover { background: var(--paper-line); color: var(--ink); }
.captcha-row input[type="text"] {
  width: 160px; padding: 10px 14px;
  border: 1px solid var(--paper-line); border-radius: var(--radius-sm);
  font-size: 14px; font-family: var(--font-mono);
}
.captcha-row input[type="text"]:focus {
  border-color: var(--brass); box-shadow: 0 0 0 3px rgba(8,131,149,0.1); outline: none;
}

.form-submit { margin-top: 40px; }
.btn-block { width: 100%; }

/* ── Form responsive ── */

/* ============================================================
   DRAG & DROP UPLOAD ZONE
   ============================================================ */
.drop-zone {
  position: relative;
  border: 2px dashed rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .25s, background .25s;
  background: rgba(0,0,0,0.015);
}
.drop-zone:hover,
.drop-zone.is-dragover {
  border-color: #2563eb;
  background: rgba(37,99,235,0.04);
}
.drop-zone.is-dragover { transform: scale(1.005); }
.drop-zone-icon {
  display: flex; justify-content: center; margin-bottom: 12px;
  color: rgba(0,0,0,0.25); transition: color .25s;
}
.drop-zone:hover .drop-zone-icon,
.drop-zone.is-dragover .drop-zone-icon { color: #2563eb; }
.drop-zone-main {
  font-size: 0.95rem; font-weight: 600; color: rgba(0,0,0,0.75); margin-bottom: 4px;
}
.drop-zone-main span.highlight { color: #2563eb; text-decoration: underline; text-underline-offset: 2px; }
.drop-zone-desc { font-size: 0.8rem; color: rgba(0,0,0,0.4); margin-top: 4px; }
.drop-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.file-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.file-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 14px; border-radius: 8px;
  background: rgba(0,0,0,0.03); font-size: 0.85rem;
}
.file-item-info { display: flex; align-items: center; gap: 10px; min-width: 0; overflow: hidden; }
.file-item-info svg { flex-shrink: 0; color: #2563eb; }
.file-item-name {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: rgba(0,0,0,0.8); font-weight: 500;
}
.file-item-size { flex-shrink: 0; color: rgba(0,0,0,0.4); font-size: 0.78rem; }
.file-item-remove {
  flex-shrink: 0; width: 28px; height: 28px;
  border: none; background: rgba(0,0,0,0.06);
  border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.4); transition: background .2s, color .2s;
}
.file-item-remove:hover { background: #ef4444; color: #fff; }

.drop-zone-error { margin-top: 8px; font-size: 0.8rem; color: #ef4444; display: none; }
.drop-zone-error.is-visible { display: block; }

/* ============================================================
   RESPONSIVE (consolidated — one block per breakpoint)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero-scroll-cue { animation: none; } 
}

@media (max-width: 960px) {
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--navy-950);
    flex-direction: column; align-items: flex-start;
    padding: 110px 32px 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    border-left: 1px solid var(--line-on-dark);
    z-index: 199;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { font-size: 19px; }
  .header-phone { display: none; }
  .nav-toggle { display: block; }

  .side-float {
    right: 0; top: auto; bottom: 0; left: 0; transform: none;
    flex-direction: row; width: 100%;
    border: none; border-top: 1px solid var(--paper-line);
    border-radius: 0;
    box-shadow: 0 -8px 24px -8px rgba(9,99,126,0.18);
    justify-content: space-between;
  }
  .side-float a, .side-float button {
    flex: 1; height: 68px; border-bottom: none;
    border-right: 1px solid var(--paper-line); font-size: 9.5px;
  }
  .side-float a:last-child, .side-float button:last-child { border-right: none; }
  .side-float svg { width: 18px; height: 18px; }
  .side-float .top-item { display: none !important; }
  body { padding-bottom: 68px; }

  .layout-wrapper { flex-direction: column; gap: 32px; padding: 40px 20px; }
  .visa-sidebar { position: static; flex: none; width: 100%; }
  .visa-menu { display: grid; grid-template-columns: repeat(2, 1fr); }
  .visa-menu li a { padding: 16px; text-align: center; border-bottom: 1px solid var(--line-on-light); }
  .visa-menu li.active a { border-left: none; border-bottom: 4px solid var(--brass-deep); padding-left: 16px; }
  .visa-content .section.section-dark { padding: 48px 24px; }
  .tab-head { padding: 28px 0; margin-bottom: 28px; }
  .tab-head h2 { font-size: 24px; }
}

@media (max-width: 900px) {
  .hero { min-height: 42vh; padding-top: 96px; padding-bottom: 36px; }

  .programs { padding: 72px 0 64px; }
  .program-grid {
    grid-template-columns: 1fr;
    gap: 20px; max-width: 440px; margin: 0 auto;
  }
  .card-img img { height: 220px; }
  .card-body { padding: 24px 22px 20px; }
  .card-body .card-title { font-size: 1.3rem; }
  .card-body .card-sub { font-size: 0.88rem; }
}

@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr; } 

  .project-cards { grid-template-columns: repeat(2, 1fr); }

  .tracker-panel { grid-template-columns: 1fr; gap: 40px; }

  .about-band { grid-template-columns: 1fr; gap: 40px; }



  .detail-split { grid-template-columns: 1fr; gap: 32px; }

  .eb1a-diagnosis-grid { grid-template-columns: repeat(2, 1fr); }

  .overview-tables { grid-template-columns: 1fr; }


  .benefit-list { grid-template-columns: repeat(2, 1fr); }

  .section { padding: 64px 0; }
}

@media (max-width: 760px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat { padding: 28px 20px; }
  .stat b { font-size: 28px; }

  .factbar { grid-template-columns: repeat(2, 1fr); }
  .fact { padding: 20px 16px; }
  .fact b { font-size: 16px; }

  .process-flow { flex-direction: column; align-items: flex-start; gap: 28px; }
  .process-flow::before { display: none; }
  .flow-step {
    flex-direction: row; text-align: left; align-items: center; gap: 16px; padding-left: 0;
  }
  .flow-step:not(:last-child)::after {
    content: ''; position: absolute; left: 43px; top: 88px; height: 28px;
    border-left: 2px dashed var(--brass-light); opacity: .5;
  }
  .flow-icon-wrap { margin-bottom: 0; flex-shrink: 0; width: 72px; height: 72px; }
  .flow-icon-wrap svg { width: 26px; height: 26px; }
  .flow-num { width: 22px; height: 22px; font-size: 10px; }
}

@media (max-width: 700px) {
  .slogan-banner { padding: 3rem 0; margin-top: 2rem; }
  .slogan-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .slogan-line1 { font-size: 1.4rem; }
  .slogan-br { display: block; }
  .slogan-line2 { font-size: 0.9rem; }
  .btn-cta-arrow { width: 100%; justify-content: center; }

  .footer-inner {
    flex-direction: column; align-items: center;
    text-align: center; gap: 1.5rem;
  }
  .footer-brand { flex-direction: row; gap: 14px; padding-top: 0; }
  .footer-brand-text { align-items: flex-start; }
  .footer-contact-line .dot { margin: 0 4px; }
  .footer-bottom { text-align: center; }
  .footer-legal-links { justify-content: center; }
}

@media (max-width: 640px) {
  .sec-head { margin-bottom: 40px; }
  .gallery-grid{ grid-template-columns: 1fr;}
  .pdf-modal { width: 100vw; height: 100vh; border-radius: 0; }
  .pdf-modal-header { padding: 12px 16px; }
  .pdf-modal-title { font-size: 13px; gap: 8px; }
  .pdf-modal-title svg { width: 16px; height: 16px; }
  .pdf-modal-close { width: 32px; height: 32px; font-size: 18px; }

  .resource-row { grid-template-columns: 1fr; gap: 10px; }
  .resource-row .date { order: 3; }
  .resource-row .tag { width: fit-content; }

  .step-item { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .step-item .step-num::before { font-size: 28px; }
  .step-item h4 { font-size: 16px; }

  .faq-q { padding: 20px 2px; font-size: 15px; }
  .faq-a p { padding: 0 2px 20px; font-size: 13px; }

  .form-page { padding: 40px 0 60px; }
  .form-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
  .form-section { margin-bottom: 36px; }
  .form-title { font-size: 18px; margin-bottom: 20px; }
  .captcha-row { flex-direction: column; align-items: stretch; }
  .captcha-row img { align-self: flex-start; }
  .captcha-row input[type="text"] { width: 100%; }
  .terms-box { padding: 18px 16px; font-size: 12px; }
}

@media (max-width: 540px) {
  .project-cards { grid-template-columns: 1fr; }
  .project-card { padding: 20px 18px; }
  .project-name { font-size: 17px; }
}

@media (max-width: 520px) {
  .visa-menu { grid-template-columns: 1fr; }
  .layout-wrapper { padding: 32px 16px; }
}

@media (max-width: 480px) {
  .hero { min-height: 46vh; padding-top: 88px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 15px 24px; }
  .hero-meta { gap: 24px; margin-top: 40px; }
  .hero-meta div b { font-size: 22px; }
  .hero-scroll-cue { display: none; }

  .card-img img { height: 200px; }
  .card-body { padding: 20px 18px 18px; }
  .card-body .card-title { font-size: 1.2rem; margin-bottom: 10px; }
  .card-body .card-sub { font-size: 0.85rem; line-height: 1.65; }
  .card-link { margin-top: 14px; padding-top: 14px; font-size: 0.82rem; }

  .stat b { font-size: 24px; }
  .stat span { font-size: 12px; }

  .service-card { padding: 28px 20px; } 

  .lookup-card { padding: 28px 20px; }

  .cta-panel { padding: 32px 20px; }
  .cta-panel h3 { font-size: 22px; max-width: none; }
  .cta-panel p { max-width: none; }
  .about-signers { flex-direction: column; gap: 16px; }


  .fact { padding: 16px 12px; }
  .fact span { font-size: 11px; }
  .fact b { font-size: 14px; }

  .detail-split .figure { padding: 28px 20px; }
  .detail-split .figure .amount { font-size: 34px; }
  .check-list li { padding: 12px 0; font-size: 13px; }

  .eb1a-diagnosis-grid { grid-template-columns: 1fr; }
  .diag-card { padding: 24px 20px; }
  .diag-card h4 { font-size: 16px; }

  .flow-step h4 { font-size: 14px; }
  .flow-step p { font-size: 12px; }


  .table-source { text-align: left; }

  .benefit-list { grid-template-columns: 1fr; }
  .benefit-item { padding: 20px 18px; font-size: 14px; }

  .badge-seal { width: 48px; height: 48px; }

  .section { padding: 48px 0; }
  .container { padding: 0 16px; }

  .checkbox-grid { grid-template-columns: 1fr; }
  .radio-group { gap: 10px; }

  .drop-zone { padding: 28px 16px; }
  .drop-zone-icon svg { width: 32px; height: 32px; }
  .drop-zone-main { font-size: 0.88rem; }
  .file-item { padding: 8px 10px; font-size: 0.8rem; }
}

/* VISA.HTML */


/* ============================================================
   OVERVIEW BOX — Bordered content block
   ============================================================ */
.overview-box {
  border: 1px solid var(--line-on-light);
  border-radius: 10px;
  padding: 36px 32px;
  background: #fff;
  margin-bottom: 32px;
}

.overview-box-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--navy-900);
  position: relative;
}
.overview-box-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--brass);
}

.overview-box-desc {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  margin: 0;
}

.overview-box-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brass-deep);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--line-on-light);
  border-radius: 6px;
  transition: all .25s var(--ease);
}
.overview-box-link:hover {
  border-color: var(--brass-deep);
  background: var(--navy-950);
  color: #fff;
}
.overview-box-link:hover svg { color: var(--brass-light); }
.overview-box-link svg { color: var(--brass-deep); transition: color .25s var(--ease); }

.overview-box-advantages {
  margin-top: 28px;
  padding: 24px;
  background: var(--paper);
  border-radius: 8px;
  border: 1px solid var(--paper-line);
}

.overview-box-adv-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.overview-box-adv-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.overview-box-adv-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
}

.overview-box-adv-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brass-deep);
}

.overview-box-note {
  margin: 24px 0 0;
  font-size: 14px;
  color: var(--slate);
  line-height: 1.75;
  padding: 16px 20px;
  background: rgba(8,131,149,0.04);
  border-left: 3px solid var(--brass);
  border-radius: 0 6px 6px 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .overview-box {
    padding: 24px 18px;
    border-radius: 8px;
  }
  .overview-box-title {
    font-size: 19px;
    padding-bottom: 14px;
    margin-bottom: 16px;
  }
  .overview-box-desc { font-size: 14px; }
  .overview-box-advantages { padding: 18px 16px; margin-top: 22px; }
  .overview-box-adv-list li { font-size: 13px; }
  .overview-box-note { font-size: 13px; padding: 14px 16px; margin-top: 20px; }
}


/* ============================================================
   CRITERIA OVERVIEW — EB-1A 심사기준
   ============================================================ */
.criteria-overview {
  margin-bottom: 40px;
}

.criteria-overview-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--navy-900);
  position: relative;
}
.criteria-overview-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--brass);
}

.criteria-overview-desc {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  margin: 0 0 32px;
  max-width: 720px;
}

/* ── Phase block (1단계) ── */
.criteria-phase {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--navy-950);
  border-radius: 10px;
  margin-bottom: 24px;
}

.criteria-phase-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: #e6e6e6;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  border-radius: 6px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.criteria-phase-body {
  min-width: 0;
}

.criteria-phase-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.criteria-phase-title em {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: var(--brass-light);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.criteria-phase-desc {
  font-size: 14px;
  color: #B7C2D4;
  line-height: 1.7;
  margin: 0;
}
.criteria-phase-desc strong {
  color: #fff;
  font-weight: 700;
}

/* ── Two paths ── */
.criteria-paths {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.criteria-path {
  display: flex;
  gap: 18px;
  padding: 28px 24px;
  border: 1px solid var(--line-on-light);
  border-radius: 10px;
  background: #fff;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.criteria-path:hover {
  border-color: var(--brass);
  box-shadow: 0 8px 24px rgba(9,99,126,0.08);
}

.criteria-path-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-dim);
  border: 2px solid var(--line-on-light);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-900);
  transition: all .25s var(--ease);
}
.criteria-path:hover .criteria-path-num {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--navy-950);
}

.criteria-path-content {
  min-width: 0;
}

.criteria-path-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.criteria-path-en {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-soft);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.criteria-path-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.7;
  margin: 0 0 14px;
}

.criteria-path-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.01em;
}
.criteria-path:first-child .criteria-path-tag {
  background: rgba(8,131,149,0.08);
  color: var(--brass-deep);
  border: 1px solid rgba(8,131,149,0.15);
}
.criteria-path:last-child .criteria-path-tag {
  background: var(--paper-dim);
  color: var(--slate);
  border: 1px solid var(--paper-line);
}

/* ── "또는" divider ── */
.criteria-or {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  flex-shrink: 0;
}
.criteria-or::before {
  content: '또는';
  font-size: 12px;
  font-weight: 700;
  color: var(--slate-soft);
  background: var(--paper);
  padding: 10px 0;
  position: relative;
  z-index: 1;
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .criteria-paths {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .criteria-or {
    width: 100%;
    height: 0;
    position: relative;
    padding: 0;
    margin: -1px 0;
  }
  .criteria-or::before {
    padding: 0 14px;
    background: var(--paper);
  }
  .criteria-or::after {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    top: 50%;
    height: 1px;
    background: var(--line-on-light);
  }
  .criteria-path {
    border-radius: 0;
  }
  .criteria-path:first-child {
    border-radius: 10px 10px 0 0;
    border-bottom: none;
  }
  .criteria-path:last-child {
    border-radius: 0 0 10px 10px;
    border-top: none;
  }
}

@media (max-width: 540px) {
  .criteria-phase {
    flex-direction: column;
    gap: 14px;
    padding: 20px 18px;
  }
  .criteria-phase-badge {
    align-self: flex-start;
  }
  .criteria-path {
    flex-direction: column;
    gap: 14px;
    padding: 22px 18px;
  }
  .criteria-path-num {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .criteria-path-title { font-size: 15px; }
  .criteria-overview-title { font-size: 19px; }
  .criteria-overview-desc { font-size: 14px; }
}

/* ============================================================
   EVALUATION BLOCK — EB-1A 2단계 심사 & 전략
   ============================================================ */
.evaluation-block {
  margin-bottom: 40px;
}

/* ── Phase block (reuses criteria-phase style) ── */
.eval-phase {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--navy-950);
  border-radius: 10px;
  margin-bottom: 24px;
}

.eval-phase-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: #e6e6e6;
  color: var(--navy-150);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  border-radius: 6px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.eval-phase-body { min-width: 0; }

.eval-phase-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.eval-phase-title em {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  color: var(--brass-light);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.eval-phase-desc {
  font-size: 14px;
  color: #B7C2D4;
  line-height: 1.7;
  margin: 0;
}
.eval-phase-desc strong {
  color: #fff;
  font-weight: 700;
}

/* ── Check list (시계 아이콘) ── */
.eval-check-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line-on-light);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.eval-check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line-on-light);
  transition: background .2s ease;
}
.eval-check-list li:last-child { border-bottom: none; }
.eval-check-list li:hover { background: rgba(8,131,149,0.03); }

.eval-check-list li svg {
  flex-shrink: 0;
  color: var(--brass-deep);
}

/* ── Requirement block ── */
.eval-requirement {
  border: 1px solid var(--line-on-light);
  border-radius: 10px;
  padding: 32px;
  background: #fff;
  margin-bottom: 32px;
}

.eval-req-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--navy-900);
  position: relative;
}
.eval-req-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--brass);
}

.eval-req-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin: 0 0 20px;
}

.eval-req-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.eval-req-item {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  transition: border-color .25s var(--ease);
}
.eval-req-item:hover { border-color: var(--brass); }

.eval-req-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--brass-deep);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.eval-req-text {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
}

/* ── Strategy section ── */
.eval-strategy {
  margin-bottom: 32px;
}

.eval-strategy-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--navy-900);
  position: relative;
}
.eval-strategy-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--brass);
}

.eval-strategy-desc {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.8;
  margin: 0 0 28px;
  max-width: 720px;
}

.strategy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.strategy-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  border: 1px solid var(--line-on-light);
  border-radius: 10px;
  background: #fff;
  transition: all .25s var(--ease);
}
.strategy-card:hover {
  border-color: var(--brass);
  box-shadow: 0 8px 24px rgba(9,99,126,0.08);
  transform: translateY(-2px);
}

.strategy-card-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-950);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  border-radius: 8px;
  transition: background .25s var(--ease);
}
.strategy-card:hover .strategy-card-num {
  background: var(--brass);
  color: var(--navy-950);
}

.strategy-card-body { min-width: 0; }

.strategy-card-en {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--brass-deep);
  letter-spacing: 0.01em;
  margin: 0 0 6px;
  line-height: 1.4;
}

.strategy-card-ko {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

/* ── Closing CTA ── */
.eval-closing {
  padding: 32px;
  background: var(--navy-950);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.eval-closing::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93,216,235,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.eval-closing p {
  position: relative;
  font-size: 15px;
  color: #B7C2D4;
  line-height: 1.8;
  margin: 0 0 20px;
  max-width: 680px;
}

.eval-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  background: var(--brass);
  border-radius: 8px;
  transition: all .25s var(--ease);
}
.eval-cta:hover {
  background: var(--brass-light);
  color: var(--navy-950);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(93,216,235,0.3);
}
.eval-cta svg { flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 760px) {
  .strategy-cards { grid-template-columns: 1fr; }
  .eval-req-items { grid-template-columns: 1fr; }
  .eval-requirement { padding: 24px 20px; }
}

@media (max-width: 540px) {
  .eval-phase {
    flex-direction: column;
    gap: 14px;
    padding: 20px 18px;
  }
  .eval-check-list li {
    padding: 16px 18px;
    font-size: 14px;
    gap: 10px;
  }
  .eval-check-list li svg { width: 16px; height: 16px; }
  .eval-requirement { padding: 20px 16px; }
  .eval-strategy-title { font-size: 19px; }
  .eval-closing { padding: 24px 18px; }
  .eval-cta {
    font-size: 14px;
    padding: 12px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ============================================================
   DHANASAR PRONGS — EB-2 NIW 3대 심사기준 카드
   ============================================================ */
.dhanasar-prongs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}

.dhanasar-prong-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line-on-light);
  border-radius: 10px;
  background: #fff;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.dhanasar-prong-card:hover {
  border-color: var(--brass);
  box-shadow: 0 8px 24px rgba(9,99,126,0.08);
}

.dhanasar-prong-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-950);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  border-radius: 12px;
  transition: all .25s var(--ease);
}
.dhanasar-prong-card:hover .dhanasar-prong-num {
  background: var(--brass);
  color: #ffffff;
  border-radius: 50%;
}

.dhanasar-prong-body {
  min-width: 0;
  flex: 1;
}

.dhanasar-prong-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.dhanasar-prong-en {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--slate-soft);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.dhanasar-prong-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  margin: 0 0 14px;
}

.dhanasar-prong-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dhanasar-prong-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.65;
}
.dhanasar-prong-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  opacity: 0.5;
}

.dhanasar-prong-list li strong {
  font-weight: 700;
  color: var(--navy-900);
}

/* ── Strategy cards 4-column variant ── */
.strategy-cards--4col {
  grid-template-columns: repeat(2, 1fr);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .dhanasar-prong-card {
    flex-direction: column;
    gap: 14px;
    padding: 22px 18px;
  }
  .dhanasar-prong-num {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
  }
  .dhanasar-prong-card:hover .dhanasar-prong-num {
    border-radius: 10px;
  }
  .dhanasar-prong-title { font-size: 16px; }
  .dhanasar-prong-desc { font-size: 13px; }
  .dhanasar-prong-list li { font-size: 12px; }

  .strategy-cards--4col {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   EB-5 SPECIFIC STYLES
   ============================================================ */

/* ── Compare table inside overview-box ── */
.compare-table-wrap {
  margin: 20px 0 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line-on-light);
}

.eb5-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
}

.eb5-compare thead th {
  background: var(--navy-950);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 14px 20px;
  text-align: center;
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--brass);
  position: relative;
}

.eb5-compare thead th:first-child {
  text-align: left;
  background: var(--navy-900);
}

.eb5-compare td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-on-light);
  vertical-align: middle;
  text-align: center;
  color: var(--ink);
  font-size: 14px;
}

.eb5-compare td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--navy-900);
  background: var(--paper-dim);
  width: 120px;
}

.eb5-compare tbody tr:last-child td {
  border-bottom: none;
}

.eb5-compare tbody tr {
  transition: background .2s ease;
}
.eb5-compare tbody tr:hover td {
  background: rgba(8,131,149,0.03);
}
.eb5-compare tbody tr:hover td:first-child {
  background: var(--paper-dim);
}

/* TEA note inside cell */
.compare-note {
  display: block;
  font-size: 11px;
  color: var(--slate-soft);
  font-weight: 400;
  margin-top: 2px;
}

/* ── Prose inside overview-box ── */
.overview-box-prose {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-on-light);
}

.overview-box-prose p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.8;
  margin: 0 0 12px;
}
.overview-box-prose p:last-child { margin-bottom: 0; }

.overview-box-highlight {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--navy-900) !important;
  padding: 14px 20px;
  background: rgba(8,131,149,0.05);
  border-left: 3px solid var(--brass);
  border-radius: 0 6px 6px 0;
  margin: 16px 0 0 !important;
}

/* ── Expert Tip block ── */
.expert-tip {
  border: 1px solid var(--stamp);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
  background: #fff;
}

.expert-tip-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background:#9c9291;
  color: #fff;
}

.expert-tip-header svg {
  flex-shrink: 0;
}

.expert-tip-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.expert-tip-body {
  padding: 28px;
}

.expert-tip-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.expert-tip-desc {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.75;
  margin: 0 0 16px;
}

.overview-box-link--sm {
  font-size: 12px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.expert-tip-warning {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.75;
  margin: 0 0 20px;
  padding: 14px 20px;
  background: rgba(163,59,46,0.05);
  border-left: 3px solid #9c9291;
  border-radius: 0 6px 6px 0;
  font-weight: 500;
}

.expert-tip-checklist {
  margin: 0;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
}

.expert-tip-check-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.expert-tip-checklist .overview-box-adv-list {
  margin-top: 0;
}

/* ── RC Investment points ── */
.rc-investment-points {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line-on-light);
  border-radius: 8px;
  overflow: hidden;
}

.rc-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-on-light);
  transition: background .2s ease;
}
.rc-point:last-child { border-bottom: none; }
.rc-point:hover { background: rgba(8,131,149,0.03); }

.rc-point svg {
  flex-shrink: 0;
  color: var(--brass-deep);
  margin-top: 1px;
}

.rc-point p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 760px) {
  .eb5-compare thead th,
  .eb5-compare td {
    padding: 12px 14px;
    font-size: 13px;
  }
  .eb5-compare td:first-child { width: 90px; }
  .expert-tip-body { padding: 22px 18px; }
}

@media (max-width: 540px) {
  .compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px -18px 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
  .eb5-compare { min-width: 480px; }
  .eb5-compare thead th,
  .eb5-compare td { padding: 10px 12px; font-size: 12px; }
  .compare-note { font-size: 10px; }
  .expert-tip-body { padding: 18px 16px; }
  .expert-tip-title { font-size: 16px; }
  .rc-point { padding: 16px 18px; gap: 12px; }
  .rc-point svg { width: 18px; height: 18px; }
  .rc-point p { font-size: 14px; }
  .overview-box-prose { padding-top: 20px; margin-top: 20px; }
}


/* ============================================================
   HERO HEADLINE — Redesigned
   ============================================================ */
.hero-headline {
  margin: 10px 0 0 0;
  letter-spacing: -0.03em;
}

.hero-headline-accent {
  display: inline-block;
  position: relative;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: #016577;
  line-height: 0.38;
}

.hero-headline-stats {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 15px; /* 0에서 15px로 변경하여 두 줄 사이 간격 확보 */
  margin-bottom: 46px; 
  padding: 0;
  border-top: none;
}

.hero-stat-number {
  padding-top: -10px;
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: #016577;
  letter-spacing: -0.03em;
  line-height: 0.38;
  text-shadow: 0 2px 12px rgba(99,201,219,0.3);
}

.hero-stat-text {
  font-size: 2em;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.01em;
  line-height: 1.58;
}

.lede-sub {
  position: relative;
  margin-top: 0; /* 위에서 추가한 마진과 겹치지 않게 0으로 조정 */
  margin-bottom: 14px;
  font-size: 14px;
  color: #000000;
  line-height: 1.7;
  padding-left: 16px;
  border-left: 2px solid rgba(99,201,219,0.3);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .hero-headline-stats {
    margin-top: 14px;
    padding: 14px 0;
  }
}

@media (max-width: 640px) {
  .hero-headline-accent::after {
    height: 2px;
  }
  .hero-headline-stats {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    margin-top: 12px;
    padding: 12px 0;
  }
  .hero-stat-number {
    font-size: 36px;
  }
  .hero-stat-text {
    font-size: 15px;
  }
  .lede-sub {
    padding-left: 14px;
    font-size: 13px;
  }
}

/* ============================================================
   PROCESS FLOW — Light Background Adaptation
   ============================================================ */
.eval-strategy-title {
  margin-bottom: 5px !important; 
  color: #1a2b2b; /* 제목 텍스트 진한색으로 */
}

.process-card {
  padding: 15px 20px !important; 
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin-top: 0;
  padding: 5px 0;
}

/* 연결선: 밝은 배경에 맞춰 연한 회색/틸 계열로 변경 */
.process-flow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #cfd8dc; /* 연한 회색 선 */
  transform: translateY(-50%);
  z-index: 0;
}

.process-step {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 0 3px;
}

/* 박스: 반투명에서 깔끔한 흰색 박스 + 얇은 테두리로 변경 */
.process-step-circle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  background: #ffffff; /* 흰색 배경 */
  border: 1px solid #dce5e5; /* 연한 테두리 */
  border-radius: 50px;
  position: relative;
  z-index: 2;
  backdrop-filter: none; /* 블러 효과 제거 */
  width: 100%;
  max-width: 130px;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0, 50, 60, 0.06); /* 미세한 그림자로 입체감 추가 */
}

/* 아이콘: 진한 틸/네이비 색상 */
.process-step-circle svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #016577; /* 기존 액센트 컬러 적용 */
}

/* 번호: 진한 틸/네이비 색상 */
.process-step-num {
  font-size: 12px;
  font-weight: 800;
  color: #016577; /* 기존 액센트 컬러 적용 */
  line-height: 1;
  margin-right: 0;
}

/* 텍스트: 어두운 회색으로 가독성 확보 */
.process-step-title {
  font-size: 13px;
  font-weight: 600;
  color: #333333; /* 진한 회색 텍스트 */
  line-height: 1.2;
  text-align: left;
  white-space: normal;
}