/* 취업역량개발센터소개 페이지 스타일 */
:root {
    --navy: #0b2447;
    --navy-mid: #19376d;
    --navy-light: #576cbc;
    --ink: #1a1d2e;
    --ink-mid: #4a5170;
    --ink-soft: #7a819b;
    --line: #e3e7ef;
    --bg-soft: #f5f7fb;
    --bg-tint: #eef2f9;
    --white: #ffffff;

    --brand: #c8102e;
    --brand-dark: #9d0c24;
    --brand-soft: #ffeef1;

    --c-rose: #e83e6b;
    --c-rose-soft: #ffe7ee;
    --c-amber: #f59e0b;
    --c-amber-soft: #fff3d6;
    --c-emerald: #10b981;
    --c-emerald-soft: #d6f3e7;
    --c-violet: #7c5cf3;
    --c-violet-soft: #ebe5ff;

    --radius-lg: 24px;
    --radius-md: 16px;

    --shadow-soft: 0 10px 30px -12px rgba(11, 36, 71, 0.12);
    --shadow-hover: 0 24px 50px -16px rgba(11, 36, 71, 0.2);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  img, svg { max-width: 100%; height: auto; }

  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }
  button { font-family: inherit; cursor: pointer; border: none; }

  /* ============ HERO ============ */
  .hero {
    background: var(--white);
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0; right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.04) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 92, 243, 0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero { text-align: center; }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.1s forwards;
  }
  .hero-eyebrow::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--brand);
    border-radius: 50%;
  }

  .hero h1 {
    font-family: 'Black Han Sans', 'Pretendard Variable', sans-serif;
    font-weight: 400;
    font-size: clamp(38px, 6.5vw, 78px);
    line-height: 1.25;
    letter-spacing: -2px;
    color: var(--navy);
    margin-bottom: 44px;
  }

  .hero h1 .line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s ease forwards;
  }
  .hero h1 .line:nth-child(1) { animation-delay: 0.2s; }
  .hero h1 .line:nth-child(2) { animation-delay: 0.4s; }
  .hero h1 .line:nth-child(3) { animation-delay: 0.6s; }
  .hero h1 .line:nth-child(4) { animation-delay: 0.8s; }

  .hero h1 .red {
    color: var(--brand);
    position: relative;
    display: inline-block;
  }
  .hero h1 .red::before,
  .hero h1 .red::after {
    content: '"';
    color: var(--ink-soft);
    margin: 0 6px;
    font-weight: 400;
  }

  .hero h1 .underline {
    background: linear-gradient(180deg, transparent 65%, rgba(232, 62, 107, 0.22) 65%);
    padding: 0 6px;
  }

  .hero-lead {
    font-size: 18px;
    color: var(--ink-mid);
    line-height: 1.95;
    max-width: 820px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp 0.9s ease 1s forwards;
  }
  .hero-lead p { margin-bottom: 12px; }
  .hero-lead strong {
    color: var(--navy);
    font-weight: 800;
  }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  /* ============ HUB DIAGRAM ============ */
  .hub-diagram {
    padding: 40px 0 100px;
    background: var(--white);
    text-align: center;
  }

  .diagram-wrap {
    position: relative;
    width: min(620px, 92%);
    margin: 0 auto;
    aspect-ratio: 1;
  }

  .diagram-wrap svg {
    width: 100%;
    height: 100%;
  }

  .diagram-wrap .pulse-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 60%;
    border: 2px solid rgba(200, 16, 46, 0.15);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.3; }
  }

  /* ============ STATS ============ */
  .stats {
    background: var(--white);
    padding: 0 0 80px;
    border-bottom: 1px solid var(--line);
  }
  .stats-inner {
    padding: 60px 0;
    border-top: 1px solid var(--line);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
  }
  .stat-item {
    border-right: 1px solid var(--line);
    padding: 0 20px;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(36px, 4.5vw, 52px);
    color: var(--brand);
    letter-spacing: -2px;
    line-height: 1;
  }
  .stat-num .unit {
    font-size: 17px;
    color: var(--ink-mid);
    margin-left: 4px;
    font-family: 'Pretendard Variable', sans-serif;
    letter-spacing: -0.5px;
  }
  .stat-label {
    margin-top: 14px;
    font-size: 13.5px;
    color: var(--ink-soft);
    font-weight: 600;
    letter-spacing: 0.3px;
  }

  /* ============ SECTION HEADERS ============ */
  .section-head {
    text-align: center;
    margin-bottom: 60px;
  }
  .section-head .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: var(--brand-soft) !important;
    color: var(--brand);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
  }
  .section-head .badge::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--brand);
    border-radius: 50%;
  }
  .section-head h2 {
    font-family: 'Black Han Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(30px, 4vw, 46px);
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1.25;
  }
  .section-head h2 .accent {
    color: var(--brand);
  }
  .section-head p {
    margin-top: 18px;
    color: var(--ink-mid);
    font-size: 15.5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ============ SERVICES ============ */
  .services {
    padding: 100px 0;
    background: var(--bg-soft);
  }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .card {
    --c: var(--c-rose);
    --c-soft: var(--c-rose-soft);
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 38px 34px 32px;
    border: 1px solid var(--line);
    transition: all 0.35s ease;
    overflow: hidden;
  }

  .card::before {
    content: "";
    position: absolute;
    top: -60px; right: -60px;
    width: 180px; height: 180px;
    background: var(--c-soft);
    border-radius: 50%;
    opacity: 0.6;
    transition: all 0.5s ease;
    z-index: 0;
  }
  .card::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--c);
  }
  .card:hover::before {
    transform: scale(1.5);
    opacity: 0.85;
  }
  .card:hover::after { transform: scaleX(1); }
  .card:hover .card-icon {
    transform: rotate(-6deg) scale(1.08);
  }

  .card > * { position: relative; z-index: 1; }

  .card.rose    { --c: var(--c-rose);    --c-soft: var(--c-rose-soft); }
  .card.amber   { --c: var(--c-amber);   --c-soft: var(--c-amber-soft); }
  .card.emerald { --c: var(--c-emerald); --c-soft: var(--c-emerald-soft); }
  .card.violet  { --c: var(--c-violet);  --c-soft: var(--c-violet-soft); }

  .card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
  }
  .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--c);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px -6px color-mix(in srgb, var(--c) 50%, transparent);
    transition: transform 0.35s ease;
  }
  .card-icon svg { width: 28px; height: 28px; }

  .card-number {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 14px;
    color: var(--c);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 5px;
  }
  .card-title {
    font-size: 21px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1.3;
  }

  .card-list { margin-bottom: 22px; }
  .card-list > li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.55;
  }
  .card-list > li::before {
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 7px; height: 7px;
    background: var(--c);
    border-radius: 50%;
  }
  .card-list .sub {
    padding-left: 0;
    margin-top: 6px;
    margin-bottom: 6px;
  }
  .card-list .sub::before { display: none; }
  .sub-item {
    font-size: 13.5px;
    color: var(--ink-soft);
    font-weight: 500;
    padding-left: 14px;
    position: relative;
    margin-bottom: 4px;
    line-height: 1.55;
  }
  .sub-item::before {
    content: "–";
    position: absolute;
    left: 0; top: 0;
    color: var(--c);
    font-weight: 800;
  }

  .card-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    background: var(--c-soft);
    color: var(--c);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.2px;
  }
  .card-tag::before {
    content: "✓";
    font-weight: 900;
  }

  /* ============ PROCESS ============ */
  .process {
    padding: 100px 0;
    background: var(--white);
  }
  .process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 60px;
    position: relative;
  }
  .process-step {
    text-align: center;
    padding: 38px 24px 32px;
    background: var(--bg-soft);
    border-radius: 18px;
    border: 1.5px solid var(--line);
    position: relative;
    transition: all 0.35s ease;
  }
  .process-step:hover {
    background: var(--white);
    border-color: var(--brand);
    box-shadow: 0 14px 36px -12px rgba(200, 16, 46, 0.18);
    transform: translateY(-4px);
  }
  .process-step .num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--brand);
    font-family: 'Black Han Sans', sans-serif;
    font-size: 18px;
    border: 2px solid var(--brand);
    margin-bottom: 18px;
    letter-spacing: 1px;
  }
  .process-step h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
  }
  .process-step p {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.6;
  }
  .process-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -14px;
    color: var(--brand);
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
  }

  /* ============ CTA ============ */
  .cta-section {
    background:
      radial-gradient(800px 400px at 80% 20%, rgba(200, 16, 46, 0.15), transparent 60%),
      linear-gradient(135deg, #0b2447 0%, #19376d 60%, #2b4f8e 100%);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.5;
  }
  .cta-section > .container { position: relative; z-index: 1; }

  .cta-section h3 {
    font-family: 'Pretendard Variable', Pretendard, sans-serif;
    font-weight: 600;
    font-size: clamp(26px, 3.6vw, 38px);
    letter-spacing: -1px;
    line-height: 1.4;
    margin-bottom: 14px;
  }
  .cta-section p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 36px;
  }
  .cta-buttons {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn2 {
    padding: 16px 30px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-primary2 {
    background: var(--brand);
    color: var(--white);
  }
  .btn-primary2:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px -12px rgba(200, 16, 46, 0.6);
  }

  .btn-ghost2 {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
  }
  .btn-ghost2:hover { background: rgba(255,255,255,0.12); }

  /* ============ FOOTER ============ */
  aside {
    background: #061332;
    color: rgba(255,255,255,0.85);
    padding: 30px 0;
    font-size: 14px;
    letter-spacing: 0.3px;
  }
  .footer-inner2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
  }
  .footer-name2 {
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
  }
  .footer-phone2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-family: 'Pretendard Variable', Pretendard, sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    transition: all 0.2s ease;
  }
  .footer-phone2:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.35);
  }
  .footer-phone2 svg { opacity: 0.85; }

  /* ============ SCROLL REVEAL ============ */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-d1 { transition-delay: 0.1s; }
  .reveal-d2 { transition-delay: 0.2s; }
  .reveal-d3 { transition-delay: 0.3s; }
  .reveal-d4 { transition-delay: 0.4s; }

  /* SVG diagram animations */
  .node-circle { animation: nodeFloat 4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
  .node-rose    { animation-delay: 0s; }
  .node-amber   { animation-delay: 1s; }
  .node-emerald { animation-delay: 2s; }
  .node-violet  { animation-delay: 3s; }
  @keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }




  /* ============ RESPONSIVE ============ */
  /* Desktop-only line breaks (hidden on mobile) */
  .br-desktop { display: none; }

  @media (min-width: 768px) {
    .br-desktop { display: inline; }
  }

  /* Tablet landscape */
  @media (max-width: 1024px) {
    .container { width: min(1200px, 94%); }
  }

  /* Tablet portrait & large phones */
  @media (max-width: 900px) {
    .hero { padding: 80px 0 60px; }
    .hero h1 { font-size: clamp(30px, 6.5vw, 48px); }
    .hub-diagram { padding: 20px 0 70px; }
    .diagram-wrap { width: min(480px, 88%); }
    .services, .process { padding: 70px 0; }
    .stats-inner { padding: 40px 0; }
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px 20px;
    }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item { padding: 0 10px; }
    .card-grid { grid-template-columns: 1fr; gap: 18px; }
    .process-flow {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .process-arrow { display: none; }
    .section-head { margin-bottom: 50px; }
    .section-head h2 { font-size: clamp(26px, 4.2vw, 36px); }
  }

  /* Phones */
  @media (max-width: 640px) {
    .container { width: min(1200px, 92%); }

    .hero { padding: 64px 0 44px; }
    .hero::before, .hero::after { display: none; }
    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: 2px;
      padding: 6px 14px;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-size: clamp(28px, 8.5vw, 42px);
      letter-spacing: -1.2px;
      margin-bottom: 28px;
      line-height: 1.3;
    }
    .hero h1 .red { display: inline-block; }
    .hero h1 .red::before,
    .hero h1 .red::after { margin: 0 3px; }
    .hero-lead { font-size: 14.5px; line-height: 1.85; }
    .hero-lead p { margin-bottom: 14px; }

    .hub-diagram { padding: 10px 0 60px; }
    .diagram-wrap { width: 92%; max-width: 380px; }

    .stats { padding: 0 0 50px; }
    .stats-inner { padding: 30px 0; }
    .stats-grid { grid-template-columns: 1fr; gap: 0; }
    .stat-item {
      border-right: none;
      border-bottom: 1px solid var(--line);
      padding: 22px 0;
    }
    .stat-item:last-child { border-bottom: none; }
    .stat-num { font-size: 34px; letter-spacing: -1.5px; }
    .stat-num .unit { font-size: 15px; }
    .stat-label { font-size: 12.5px; margin-top: 10px; }

    .services, .process { padding: 60px 0; }

    .partners { padding: 60px 0 70px; }
    .partners .section-head { margin-bottom: 30px; }
    .logo-track { gap: 16px; animation-duration: 30s; }
    .logo-item {
      width: 150px;
      height: 80px;
      padding: 14px 18px;
      border-radius: 12px;
    }

    .section-head { margin-bottom: 40px; }
    .section-head .badge {
      font-size: 11px;
      letter-spacing: 2px;
      padding: 6px 14px;
      margin-bottom: 16px;
    }
    .section-head h2 {
      font-size: 24px;
      line-height: 1.35;
      letter-spacing: -0.6px;
    }
    .section-head p {
      margin-top: 14px;
      font-size: 14px;
      line-height: 1.7;
    }

    .card { padding: 28px 22px 24px; border-radius: 18px; }
    .card-head { gap: 12px; margin-bottom: 18px; }
    .card-icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
    }
    .card-icon svg { width: 24px; height: 24px; }
    .card-number { font-size: 12px; letter-spacing: 1.5px; }
    .card-title { font-size: 17.5px; }
    .card-list { margin-bottom: 18px; }
    .card-list > li {
      font-size: 14px;
      padding-left: 18px;
      margin-bottom: 8px;
    }
    .card-list > li::before {
      width: 6px;
      height: 6px;
      top: 8px;
    }
    .sub-item { font-size: 12.5px; padding-left: 12px; }
    .card-tag {
      font-size: 12px;
      padding: 8px 14px;
      letter-spacing: 0;
    }

    .process-flow { grid-template-columns: 1fr; gap: 12px; }
    .process-step { padding: 28px 22px 24px; border-radius: 16px; }
    .process-step .num {
      width: 42px;
      height: 42px;
      font-size: 16px;
      margin-bottom: 14px;
    }
    .process-step h4 { font-size: 16.5px; margin-bottom: 8px; }
    .process-step p { font-size: 13px; }

    .cta-section { padding: 60px 0; }
    .cta-section h3 {
      font-size: 22px;
      line-height: 1.4;
      margin-bottom: 10px;
    }
    .cta-section p { font-size: 14.5px; margin-bottom: 28px; }
    .cta-buttons {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 100%;
      max-width: 320px;
      margin: 0 auto;
    }
    
    .btn2 {
      width: 100%;
      justify-content: center;
      padding: 14px 24px;
      font-size: 14.5px;
    }
	

    aside { padding: 24px 0; }
    .footer-inner2 {
      flex-direction: column;
      gap: 12px;
    }
    .footer-name2 { font-size: 14px; }
    .footer-phone2 {
      font-size: 14px;
      padding: 7px 14px;
    }
  }

  /* Very small phones (iPhone SE 등) */
  @media (max-width: 380px) {
    .hero h1 { font-size: 23px; }
    .section-head h2 { font-size: 22px; }
    .stat-num { font-size: 30px; }
    .card-title { font-size: 16.5px; }
  }
  /* ============ PARTNER LOGOS ============ */
  .partners {
    padding: 70px 0 80px;
    background: var(--bg-soft);
    overflow: hidden;
  }
  .partners .section-head {
    margin-bottom: 44px;
  }
  .logo-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .logo-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: logoScroll 45s linear infinite;
  }
  .logo-marquee:hover .logo-track { animation-play-state: paused; }
  @keyframes logoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
  }
  .logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 20px;
    transition: all 0.3s ease;
  }
  .logo-item:hover {
    border-color: var(--brand);
    box-shadow: 0 10px 24px -8px rgba(200,16,46,0.16);
  }
  .logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.88;
    transition: all 0.3s ease;
  }
  .logo-item:hover img { filter: grayscale(0%); opacity: 1; }

