/* ═══════════════════════════════════════════════════════
   I-GROW 서브페이지 공통 디자인 시스템
   - 메인 페이지와 동일한 토큰/모션 언어
   - 섹션 컬러: 회사소개 green / 핵심사업 blue / 인재채용 violet / Contact navy
   ═══════════════════════════════════════════════════════ */

:root {
    --bg0: #06090f;
    --bg1: #f5f7fa;
    --ink: #10151c;
    --ink-inv: #f2f5f9;
    --muted-inv: #b7c2d2;
    --muted: #5c6878;
    --navy: #004b88;
    --blue: #2484c6;
    --green: #609336;
    --violet: #5f6db3;
    --steel: #8e97b2;
    --line: #e3e8ef;
    --brand-grad: linear-gradient(90deg, var(--steel), var(--green), var(--blue), var(--violet));
    --suit: 'SUIT Variable', 'SUIT-Regular', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    --poppins: 'Poppins', 'SUIT Variable', sans-serif;
    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --ease-pop: cubic-bezier(.34, 1.56, .64, 1);
}

p { margin: 0; }

/* ───────────────────────────────────────────
   페이지 히어로 (다크 밴드)
   ─────────────────────────────────────────── */
.page-hero {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: 84px 0 64px;
    font-family: var(--suit);
}

.page-hero.ph-green  { --pc: var(--green); }
.page-hero.ph-blue   { --pc: var(--blue); }
.page-hero.ph-violet { --pc: var(--violet); }
.page-hero.ph-navy   { --pc: var(--blue); }

/* 대형 워터마크 날개 (섹션 컬러) */
.page-hero::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -120px;
    width: 480px;
    height: 480px;
    background: var(--pc, var(--blue));
    opacity: .1;
    border-radius: 0 100% 100% 100%;
    transform: rotate(12deg);
    pointer-events: none;
}

.page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--brand-grad);
}

.page-hero-inner {
    position: relative;
    width: min(1160px, 92%);
    margin: 0 auto;
}

.page-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--poppins);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #66748a;
}

.page-eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 0 100% 100% 100%;
    background: var(--pc, var(--blue));
}

.page-title {
    margin: 16px 0 0;
    font-family: var(--suit);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.15;
    color: var(--ink);
}

.page-title .thin {
    font-weight: 300;
}

.page-lead {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 60ch;
}

/* 히어로 등장 모션 */
.page-hero .ph-el {
    opacity: 0;
    transform: translateY(22px);
    animation: phUp .8s var(--ease-out) both;
}

.page-hero .page-title { animation-delay: .08s; }
.page-hero .page-lead  { animation-delay: .16s; }

@keyframes phUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ───────────────────────────────────────────
   본문 영역
   ─────────────────────────────────────────── */
.sub-main {
    background: var(--bg1);
    padding: 76px 0 130px;
    font-family: var(--suit);
}

.sub-inner {
    width: min(1160px, 92%);
    margin: 0 auto;
}

.sec-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--poppins);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #66748a;
}

.sec-label::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--brand-grad);
    border-radius: 99px;
}

.sec-title {
    margin: 16px 0 12px;
    font-family: var(--suit);
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.3;
    color: var(--ink);
}

.sec-title strong,
.sec-title .hl {
    color: var(--blue);
    font-weight: 800;
}

.sec-sub {
    font-size: 17.5px;
    color: var(--muted);
    line-height: 1.8;
}

/* 이미지 프레임 */
.frame-img {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: clamp(16px, 3vw, 36px);
    text-align: center;
}

.frame-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 버튼 (메인과 동일 언어) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--suit);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    transition: transform .3s var(--ease-out), box-shadow .3s, background-color .3s, border-color .3s;
}

.btn .arr { transition: transform .3s var(--ease-out); }

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    box-shadow: 0 10px 26px rgba(36, 132, 198, .28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(36, 132, 198, .4);
}

.btn-primary:hover .arr { transform: translateX(4px); }

.btn-line {
    color: var(--ink);
    background: #fff;
    border: 1px solid #d6dce4;
}

.btn-line:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
    color: var(--blue);
}

/* ───────────────────────────────────────────
   스크롤 등장
   ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

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

/* ───────────────────────────────────────────
   준비중 상태
   ─────────────────────────────────────────── */
.wip {
    text-align: center;
    padding: 90px 20px 40px;
}

.wip-mark {
    position: relative;
    width: 74px;
    height: 74px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 7px;
    animation: wipSpin 7s linear infinite;
}

.wip-mark span { display: block; }
.wip-mark span:nth-child(1) { background: var(--steel);  border-radius: 0 100% 100% 100%; }
.wip-mark span:nth-child(2) { background: var(--green);  border-radius: 100% 0 100% 100%; }
.wip-mark span:nth-child(3) { background: var(--violet); border-radius: 100% 100% 100% 0; }
.wip-mark span:nth-child(4) { background: var(--blue);   border-radius: 100% 100% 0 100%; }

@keyframes wipSpin {
    to { transform: rotate(360deg); }
}

.wip-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.01em;
}

.wip-text {
    margin-top: 12px;
    font-size: 16.5px;
    color: var(--muted);
    line-height: 1.8;
}

.wip .btn { margin-top: 30px; }

/* ───────────────────────────────────────────
   인사말 (introduce)
   ─────────────────────────────────────────── */
.greet-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: clamp(32px, 4vw, 60px);
    align-items: center;
    margin-top: 48px;
}

.greet-copy {
    display: flex;
    flex-direction: column;
}

.greet-quote {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: -.02em;
    color: var(--ink);
}

.greet-quote .hl {
    background: linear-gradient(transparent 62%, rgba(36, 132, 198, .22) 62%);
}

.greet-body {
    margin-top: 26px;
    font-size: 17.5px;
    line-height: 1.72;
    color: #3d4654;
}

.greet-body p + p {
    margin-top: 16px;
}

.greet-sign {
    margin-top: 24px;
    font-size: 16.5px;
    color: var(--muted);
}

.greet-sign b {
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    margin-left: 6px;
}

.greet-photo {
    position: relative;
    box-sizing: border-box;
    min-height: 560px;
    aspect-ratio: .86;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 14px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(16, 21, 28, .09);
}

.greet-photo img {
    position: absolute;
    inset: 28px;
    width: calc(100% - 56px);
    height: calc(100% - 56px);
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 14px;
}

/* ───────────────────────────────────────────
   조직구성
   ─────────────────────────────────────────── */
.org-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
    gap: clamp(48px, 8vw, 104px);
    align-items: center;
    padding: clamp(24px, 4vw, 52px) 0 clamp(68px, 8vw, 104px);
}

.org-overview-copy .sec-sub {
    max-width: 650px;
    margin-top: 20px;
}

.org-values {
    border-top: 1px solid #cfd6df;
}

.org-values > div {
    display: grid;
    grid-template-columns: 42px 110px 1fr;
    gap: 14px;
    align-items: center;
    padding: 22px 5px;
    border-bottom: 1px solid #cfd6df;
    transition: padding .3s var(--ease-out), background-color .3s;
}

.org-values > div:hover {
    padding-left: 15px;
    padding-right: 15px;
    background: rgba(96, 147, 54, .075);
}

.org-values span,
.org-team-num {
    font-family: var(--poppins);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--green);
}

.org-values strong {
    font-size: 18px;
    color: var(--ink);
}

.org-values p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
    word-break: keep-all;
}

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

.org-team {
    --org-c: var(--blue);
    position: relative;
    min-height: 270px;
    box-sizing: border-box;
    padding: 30px 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s;
}

.org-team::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--org-c);
    opacity: .08;
    transition: transform .5s var(--ease-out);
}

.org-team:hover {
    transform: translateY(-7px);
    border-color: var(--org-c);
    box-shadow: 0 20px 44px rgba(16, 21, 28, .09);
}

.org-team:hover::after {
    transform: scale(1.35);
}

.org-team-edu { --org-c: var(--green); }
.org-team-uni { --org-c: var(--blue); }
.org-team-biz { --org-c: var(--violet); }

.org-team-num {
    color: var(--org-c);
}

.org-team h4 {
    margin: 18px 0 9px;
    font-size: 24px;
    color: var(--ink);
}

.org-team > p {
    min-height: 48px;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--muted);
    word-break: keep-all;
}

.org-team ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.org-team li {
    padding: 8px 11px;
    border-radius: 999px;
    background: #f2f5f8;
    font-size: 13px;
    color: #4d5969;
}

.org-chart-panel {
    margin-top: clamp(76px, 9vw, 116px);
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(16, 21, 28, .06);
}

.org-chart-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 30px;
}

.org-chart-head .sec-title {
    margin-bottom: 0;
}

.org-chart-head > p {
    padding-bottom: 8px;
    font-size: 15.5px;
    line-height: 1.7;
    text-align: right;
    color: var(--muted);
}

.org-chart-img {
    padding: clamp(12px, 2vw, 24px);
    border-color: #edf0f4;
    background: #f8fafc;
}

/* ───────────────────────────────────────────
   오시는길 (direction)
   ─────────────────────────────────────────── */
.direction-overview {
    margin-top: 48px;
}

.direction-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
    column-gap: clamp(32px, 6vw, 88px);
    align-items: end;
}

.direction-section-label,
.direction-guide-label {
    grid-column: 1 / -1;
    margin-bottom: 12px;
    font-family: var(--poppins);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .19em;
    color: var(--green);
}

.direction-section-head h3,
.direction-map-head h3 {
    margin: 0;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.2;
    letter-spacing: -.035em;
    color: var(--ink);
}

.direction-section-head > p:last-child,
.direction-map-head > div > p:last-child {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    word-break: keep-all;
}

.visit-grid {
    margin: clamp(34px, 5vw, 58px) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    list-style: none;
}

.visit-card {
    min-width: 0;
    min-height: 178px;
    box-sizing: border-box;
    padding: 28px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 17px;
    align-items: start;
    align-content: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(16, 21, 28, .045);
    transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
}

.visit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(36, 132, 198, .36);
    box-shadow: 0 20px 42px rgba(16, 21, 28, .08);
}

.visit-card > div,
.direction-guide-list,
.direction-guide-item > div {
    min-width: 0;
}

.visit-card > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.visit-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: #eef3f8;
}

.visit-label {
    margin: 0;
    min-height: 17px;
    font-family: var(--poppins);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.3;
    color: #8a95a5;
}

.visit-value {
    min-height: 53px;
    margin: 7px 0 4px;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    line-height: 1.55;
    color: var(--ink);
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.visit-card a {
    color: inherit;
    text-decoration: none;
}

.visit-card small {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: #8a95a5;
}

.direction-guide {
    position: relative;
    isolation: isolate;
    margin-top: clamp(64px, 8vw, 104px);
    padding: clamp(38px, 5vw, 62px);
    overflow: hidden;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(135deg, #17364f 0%, #0b253b 58%, #071c2e 100%);
    box-shadow: 0 30px 70px rgba(11, 37, 59, .16);
}

.direction-guide::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -150px;
    bottom: -230px;
    width: 430px;
    height: 430px;
    border-radius: 0 100% 100% 100%;
    background: rgba(96, 147, 54, .28);
    transform: rotate(18deg);
}

.direction-guide::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -170px;
    right: -120px;
    width: 330px;
    height: 330px;
    border-radius: 100% 0 100% 100%;
    background: rgba(36, 132, 198, .16);
}

.direction-guide-label {
    margin-bottom: 13px;
    color: #9ecf7a;
}

.direction-guide-head {
    max-width: 800px;
}

.direction-guide-head h3 {
    margin: 0 0 14px;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.2;
    letter-spacing: -.035em;
}

.direction-guide-head > p:last-child {
    max-width: 680px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .72);
    word-break: keep-all;
}

.direction-guide-list {
    margin-top: clamp(30px, 4vw, 46px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.direction-guide-item {
    min-height: 196px;
    box-sizing: border-box;
    padding: 26px 24px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    align-content: start;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.direction-guide-num {
    padding-top: 2px;
    font-family: var(--poppins);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #9ecf7a;
}

.direction-guide-item h4 {
    min-height: 24px;
    margin: 0 0 9px;
    font-size: 18px;
    letter-spacing: -.015em;
}

.direction-guide-item p {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .68);
    word-break: keep-all;
    overflow-wrap: anywhere;
}

.direction-map {
    margin-top: clamp(72px, 9vw, 120px);
}

.direction-map-head {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.direction-map-head .direction-section-label {
    margin-bottom: 11px;
}

.direction-map-head h3 {
    font-size: clamp(28px, 3vw, 40px);
}

.direction-map-head > div > p:last-child {
    margin-top: 12px;
}

.direction-map-actions {
    flex: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 11px;
}

.direction-map-actions a {
    min-height: 56px;
    box-sizing: border-box;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #ccd5df;
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    font-size: 15.5px;
    font-weight: 700;
    background: #fff;
    transition: color .25s, background-color .25s, border-color .25s, transform .25s var(--ease-out);
}

.direction-map-actions a:first-child {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--navy));
}

.direction-map-actions a:hover,
.direction-map-actions a:focus-visible {
    outline: none;
    transform: translateY(-2px);
}

.map-frame {
    width: 100%;
    height: clamp(430px, 43vw, 570px);
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #eef2f6;
    box-shadow: 0 22px 54px rgba(16, 21, 28, .08);
}

.map-frame #map {
    width: 100%;
    height: 100%;
}

/* ───────────────────────────────────────────
   복지 카드 (culture)
   ─────────────────────────────────────────── */
.benefit-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.benefit {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px 22px;
    display: flex;
    gap: 16px;
    align-items: center;
    transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}

.benefit:hover {
    transform: translateY(-5px);
    border-color: var(--violet);
    box-shadow: 0 16px 34px rgba(16, 21, 28, .08);
}

.benefit img {
    flex: none;
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.benefit b {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
}

.benefit small {
    display: block;
    margin-top: 5px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.5;
    word-break: keep-all;
}

/* 카드별 순차 등장 — 화면을 벗어나면 다시 초기화 */
.benefit.reveal {
    --benefit-delay: 0ms;
    opacity: 0;
    transform: translateY(34px) scale(.985);
    transition: opacity .72s var(--ease-out) var(--benefit-delay),
                transform .72s var(--ease-out) var(--benefit-delay),
                box-shadow .3s var(--ease-out),
                border-color .3s var(--ease-out);
}

.benefit.reveal.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.benefit.reveal.benefit-ready {
    transition-delay: 0s;
}

.benefit.reveal.show:hover {
    transform: translateY(-5px) scale(1);
}

/* ───────────────────────────────────────────
   채용안내 (recruit)
   ─────────────────────────────────────────── */
.qa-wrap {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bubble {
    max-width: 560px;
    padding: 20px 24px;
    border-radius: 20px;
    font-size: 17px;
    line-height: 1.7;
    word-break: keep-all;
}

.bubble-q {
    align-self: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-bottom-left-radius: 6px;
    font-weight: 700;
    color: var(--ink);
}

.bubble-a {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    border-bottom-right-radius: 6px;
    color: #fff;
}

.bubble-a b {
    font-weight: 800;
    color: #cfe8ff;
}

.req-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.req-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 26px;
    transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}

.req-card:hover {
    transform: translateY(-5px);
    border-color: var(--c, var(--blue));
    box-shadow: 0 16px 34px rgba(16, 21, 28, .08);
}

.req-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18.5px;
    font-weight: 800;
    color: var(--ink);
}

.req-head::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 0 100% 100% 100%;
    background: var(--c, var(--blue));
}

.req-card ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.req-card li {
    position: relative;
    padding: 6px 0 6px 18px;
    font-size: 16.5px;
    color: #3d4654;
    line-height: 1.65;
    word-break: keep-all;
}

.req-card li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c, var(--blue));
    opacity: .55;
}

.rq-1 { --c: var(--blue); }
.rq-2 { --c: var(--green); }
.rq-3 { --c: var(--violet); }
.rq-4 { --c: var(--navy); }

/* 채용 링크 버튼 묶음 */
.job-links {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.job-links .btn-job {
    flex: 0 1 360px;
    min-height: 58px;
    box-sizing: border-box;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--violet), var(--navy));
    box-shadow: 0 10px 26px rgba(66, 81, 154, .22);
}

.job-links .btn-job:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(66, 81, 154, .34);
}

.job-links .btn-job:hover .arr {
    transform: translateX(4px);
}

/* ───────────────────────────────────────────
   Contact
   ─────────────────────────────────────────── */
.contact-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 24px;
    text-align: center;
    transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--navy);
    box-shadow: 0 16px 34px rgba(16, 21, 28, .08);
}

.contact-card .visit-ico {
    margin: 0 auto 14px;
}

.contact-card b {
    display: block;
    font-family: var(--poppins);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
}

.contact-card small {
    display: block;
    margin-top: 6px;
    font-size: 14.5px;
    color: #8a95a5;
}

.contact-card p {
    margin-top: 14px;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.6;
    word-break: keep-all;
}

/* 폼 */
.form-panel {
    margin-top: 48px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: clamp(26px, 4vw, 46px);
}

.hp-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field.full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    font-size: 15.5px;
    font-weight: 700;
    color: #3a4454;
    margin-bottom: 8px;
}

.field label .req {
    color: #e0455a;
    margin-right: 2px;
}

.field input,
.field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    font-family: var(--suit);
    font-size: 16px;
    color: var(--ink);
    background: #fbfcfe;
    border: 1px solid #d6dce4;
    border-radius: 12px;
    transition: border-color .25s, box-shadow .25s, background-color .25s;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #a6afbd;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(36, 132, 198, .14);
}

.field textarea {
    resize: vertical;
    min-height: 170px;
}

.form-foot {
    margin-top: 26px;
    display: flex;
    justify-content: flex-end;
}

/* ───────────────────────────────────────────
   접근성 / 반응형
   ─────────────────────────────────────────── */
.btn:focus-visible,
.field input:focus-visible,
.field textarea:focus-visible {
    outline: 3px solid rgba(36, 132, 198, .45);
    outline-offset: 2px;
}

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

    .direction-section-head,
    .visit-grid,
    .direction-guide-list {
        grid-template-columns: 1fr;
    }

    .direction-section-head {
        row-gap: 14px;
    }

    .direction-section-head > p:last-child {
        max-width: 620px;
    }

    .direction-map-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .direction-map-actions {
        justify-content: flex-start;
    }

    .greet-photo {
        position: relative;
        order: -1;
        width: min(440px, 100%);
        aspect-ratio: 1003 / 1568;
        min-height: 0;
        max-width: 100%;
        justify-self: center;
    }

    .req-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 52px;
    }

    .direction-guide {
        padding: 34px 22px;
        border-radius: 22px;
    }

    .direction-guide-item {
        padding: 19px 18px;
        grid-template-columns: 34px 1fr;
        gap: 12px;
    }

    .direction-map-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .direction-map-actions a {
        width: 100%;
        justify-content: center;
    }

    .page-hero::before {
        width: 300px;
        height: 300px;
        top: -80px;
        right: -90px;
    }

    .sub-main {
        padding: 56px 0 90px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .bubble {
        max-width: 86%;
    }
}

@media (max-width: 480px) {
    /* 모바일 헤더(80px)와 content-wrapper 여백(100px) 차이 보정 */
    .page-hero {
        margin-top: -20px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-hero .ph-el {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .wip-mark {
        animation: none;
    }
}

/* ───────────────────────────────────────────
   좌/우 슬라이드 리빌 (쇽쇽)
   ─────────────────────────────────────────── */
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

.reveal-left  { transform: translateX(-80px); }
.reveal-right { transform: translateX(80px); }

.reveal-left.show,
.reveal-right.show {
    opacity: 1;
    transform: translateX(0);
}

/* ───────────────────────────────────────────
   핵심사업 스크롤 스토리
   ─────────────────────────────────────────── */
.core-scroll-section {
    position: relative;
    padding: clamp(84px, 10vw, 138px) 0 10vh;
    overflow: clip;
    background:
        radial-gradient(circle at 8% 10%, rgba(36, 132, 198, .09), transparent 24%),
        linear-gradient(180deg, #f5f7fa 0%, #eef2f6 100%);
    font-family: var(--suit);
}

.core-scroll-intro {
    position: relative;
    z-index: 1;
    padding-bottom: clamp(78px, 11vw, 150px);
}

.core-scroll-intro .sec-sub {
    max-width: 660px;
}

.core-scroll-cue {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 38px;
    font-family: var(--poppins);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    color: #778496;
}

.core-scroll-cue span {
    position: relative;
    width: 46px;
    height: 1px;
    overflow: hidden;
    background: #c2cad5;
}

.core-scroll-cue span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--blue);
    transform: translateX(-100%);
    animation: coreCue 2s var(--ease-out) infinite;
}

@keyframes coreCue {
    55%, 100% { transform: translateX(100%); }
}

.core-scroll-stage {
    position: relative;
    width: min(1320px, 94%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    gap: clamp(48px, 7vw, 110px);
}

.core-visual-column {
    position: relative;
    min-width: 0;
}

.core-visual-shell {
    position: sticky;
    top: 142px;
    height: min(66vh, 690px);
    min-height: 460px;
}

.core-media {
    --core-scale: .58;
    position: absolute;
    inset: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: clamp(22px, 3vw, 38px);
    background: #dce6ef;
    box-shadow: 0 34px 80px rgba(13, 39, 65, .2);
    opacity: 0;
    transform: scale(.58);
    filter: saturate(.82);
    transition: opacity .58s ease, filter .7s ease;
    will-change: transform, opacity;
}

.core-media.is-active {
    z-index: 1;
    opacity: 1;
    filter: saturate(1);
    transform: scale(var(--core-scale));
}

.core-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.core-media-fit {
    background: #fff;
}

.core-media-fit img {
    box-sizing: border-box;
    padding: clamp(20px, 3vw, 44px);
    object-fit: contain;
}

.core-visual-status {
    position: absolute;
    z-index: 3;
    left: clamp(18px, 3vw, 34px);
    right: clamp(18px, 3vw, 34px);
    bottom: clamp(18px, 3vw, 30px);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #fff;
    background: rgba(6, 18, 31, .76);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-family: var(--poppins);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
}

.core-current {
    color: #86cafa;
}

.core-status-line {
    flex: 1;
    height: 2px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255, 255, 255, .25);
}

.core-status-line i {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #77c9ff, #fff);
    transition: width .12s linear;
}

.core-story {
    min-height: 96vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 135px;
}

.core-story:first-child {
    min-height: 104vh;
}

.core-story-card {
    position: relative;
    max-width: 500px;
    padding: 38px 8px 38px 32px;
    border-left: 2px solid #cdd6e0;
    opacity: .38;
    transform: translateY(28px);
    transition: opacity .55s var(--ease-out), transform .65s var(--ease-out), border-color .45s;
}

.core-story.is-active .core-story-card {
    opacity: 1;
    transform: translateY(0);
    border-left-color: var(--blue);
}

.core-story-num {
    display: block;
    margin-bottom: 22px;
    font-family: var(--poppins);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .16em;
    color: var(--blue);
}

.core-story-kicker {
    font-family: var(--poppins);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    color: #7b8798;
}

.core-story-card h4 {
    margin: 10px 0 18px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.15;
    letter-spacing: -.035em;
    color: var(--ink);
}

.core-story-card > p:not(.core-story-kicker) {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.9;
    color: #536071;
    word-break: keep-all;
}

.core-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.core-tags li {
    padding: 8px 13px;
    border: 1px solid #ccd5df;
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
    font-size: 13px;
    font-weight: 600;
    color: #526073;
}

/* ───────────────────────────────────────────
   사업실적 설명 / 성과
   ─────────────────────────────────────────── */
.performance-story {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    gap: clamp(48px, 8vw, 104px);
    align-items: center;
    padding: clamp(28px, 4vw, 54px) 0 clamp(76px, 9vw, 120px);
}

.performance-copy > p:not(.sec-label) {
    max-width: 620px;
    margin-top: 14px;
    color: #4f5b6c;
    font-size: 17px;
    line-height: 1.9;
    word-break: keep-all;
}

.performance-points {
    border-top: 1px solid #cfd6df;
}

.performance-point {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 18px;
    padding: 22px 4px;
    border-bottom: 1px solid #cfd6df;
    transition: padding .3s var(--ease-out), background-color .3s;
}

.performance-point:hover {
    padding-left: 14px;
    padding-right: 14px;
    background: rgba(96, 147, 54, .075);
}

.performance-point > span {
    grid-row: 1 / span 2;
    padding-top: 2px;
    font-family: var(--poppins);
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
}

.performance-point strong {
    font-family: var(--poppins);
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 600;
    letter-spacing: .025em;
    color: var(--ink);
}

.performance-point p {
    margin-top: 7px;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--muted);
}

.performance-chart {
    width: min(1050px, 100%);
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(16, 21, 28, .06);
}

.performance-chart-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 28px;
}

.performance-chart-head > p {
    padding-bottom: 8px;
    font-size: 15.5px;
    line-height: 1.75;
    text-align: right;
    color: var(--muted);
    word-break: keep-all;
}

.performance-chart .sec-title {
    margin-bottom: 0;
}

.performance-chart .frame-img {
    padding: 0;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
}

.history-head {
    margin-top: clamp(88px, 10vw, 132px);
}

/* ───────────────────────────────────────────
   연혁 타임라인
   ─────────────────────────────────────────── */
.tl {
    margin-top: 50px;
    position: relative;
}

.tl::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 118px;
    width: 2px;
    background: linear-gradient(180deg, var(--green), var(--blue), var(--violet));
    opacity: .35;
}

.tl-year {
    position: relative;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 46px;
    padding: 22px 0;
}

.tl-year::before {
    content: "";
    position: absolute;
    left: 112px;
    top: 32px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--blue);
    box-sizing: border-box;
}

.tl-y {
    font-family: var(--poppins);
    font-size: 27px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    text-align: right;
}

.tl-year ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tl-year li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-size: 16.5px;
    line-height: 1.7;
    color: #3d4654;
    word-break: keep-all;
}

.tl-year li b {
    flex: none;
    font-family: var(--poppins);
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
}

@media (max-width: 900px) {
    .tl::before { left: 64px; }
    .tl-year { grid-template-columns: 48px 1fr; gap: 34px; }
    .tl-year::before { left: 58px; top: 30px; }
    .tl-y { font-size: 22px; }

    .performance-story {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .org-overview {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .org-team-grid {
        grid-template-columns: 1fr;
    }

    .org-team {
        min-height: 0;
    }

    .org-chart-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .org-chart-head > p {
        padding-bottom: 0;
        text-align: left;
    }

    .performance-chart-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .performance-chart-head > p {
        padding-bottom: 0;
        text-align: left;
    }

    .core-scroll-section {
        padding-bottom: 4vh;
    }

    .core-scroll-stage {
        width: min(680px, 92%);
        display: block;
    }

    .core-visual-column {
        position: sticky;
        z-index: 2;
        top: 96px;
        height: 50vh;
        min-height: 330px;
    }

    .core-visual-shell {
        position: relative;
        top: auto;
        height: 100%;
        min-height: 0;
    }

    .core-story-column {
        position: relative;
        z-index: 3;
        margin-top: -16vh;
    }

    .core-story,
    .core-story:first-child {
        min-height: 72vh;
        align-items: flex-end;
        padding-bottom: 6vh;
    }

    .core-story-card {
        max-width: none;
        margin: 0 12px;
        padding: 25px 24px;
        border: 1px solid rgba(255, 255, 255, .88);
        border-radius: 20px;
        background: rgba(255, 255, 255, .93);
        box-shadow: 0 18px 46px rgba(13, 39, 65, .13);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .core-story.is-active .core-story-card {
        border-color: rgba(36, 132, 198, .35);
    }
}

@media (max-width: 560px) {
    .performance-story {
        padding-top: 12px;
    }

    .performance-point {
        grid-template-columns: 32px 1fr;
        column-gap: 10px;
    }

    .performance-chart {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .org-overview {
        padding-top: 10px;
    }

    .org-values > div {
        grid-template-columns: 30px 76px 1fr;
        gap: 8px;
    }

    .org-values strong {
        font-size: 16px;
    }

    .org-values p {
        font-size: 13.5px;
    }

    .org-chart-panel {
        padding: 24px 14px;
        border-radius: 20px;
    }

    .core-scroll-intro {
        padding-bottom: 80px;
    }

    .core-visual-column {
        top: 90px;
        height: 43vh;
        min-height: 280px;
    }

    .core-story-column {
        margin-top: -10vh;
    }

    .core-story,
    .core-story:first-child {
        min-height: 68vh;
    }

    .core-story-card {
        margin: 0 6px;
        padding: 22px 19px;
    }

    .core-story-num {
        margin-bottom: 13px;
    }

    .core-tags {
        margin-top: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .core-scroll-cue span::after {
        animation: none;
    }

    .core-media,
    .core-media.is-active,
    .core-story-card,
    .core-status-line i {
        transition: none !important;
        transform: none !important;
    }
}
