@charset "utf-8";

/* page base */
.company-page { overflow-x: hidden; }

.site-header,
.company-header { position: absolute; left: 0; top: 0; width: 100%; z-index: 30; }
.site-header,
.company-header { pointer-events: none; }
.site-header__inner,
.company-header__inner {
    width: 96%;
    max-width: 1320px;
    margin: 0 auto;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-header__logo,
.company-header__logo { display: inline-flex; align-items: center; width: 186px; }
.site-header__logo img,
.company-header__logo img { display: block; width: 100%; height: auto; }
.site-header__logo,
.company-header__logo { pointer-events: auto; line-height: 0; }
.site-header__logo-svg,
.company-header__logo-svg { display: block; width: 100%; }
.site-header__logo-svg svg,
.company-header__logo-svg svg { display: block; width: 100%; height: auto; }
.site-header__util,
.company-header__util { pointer-events: auto; flex: 0 0 auto; display: flex; align-items: center; gap: 16px; }
.site-header__lang,
.company-header__lang { font-size: 14px; color: rgba(255,255,255,.75); font-weight: 500; }
.site-header__lang--active,
.company-header__lang--active { color: #fff; font-weight: 700; }
.site-header__menu,
.company-header__menu { width: 35px; height: 35px; display: none; align-items: center; justify-content: center; color: #fff; }
.site-header__menu-ico,
.company-header__menu-ico { width: 20px; height: 14px; position: relative; display: block; }
.site-header__menu-ico > span,
.company-header__menu-ico > span { position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; border-radius: 2px; }
.site-header__menu-ico > span:nth-child(1),
.company-header__menu-ico > span:nth-child(1) { top: 0; }
.site-header__menu-ico > span:nth-child(2),
.company-header__menu-ico > span:nth-child(2) { top: 6px; }
.site-header__menu-ico > span:nth-child(3),
.company-header__menu-ico > span:nth-child(3) { top: 12px; }

/* visual */
.company-visual {
    position: relative;
    height: 400px;
    padding-top: 120px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}
.company-visual__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(23,28,34,.75), rgba(23,28,34,.75)),
        url("/resources/img/company/hero_bg2.jpg") center/cover no-repeat;
}
.company-visual__inner {
    position: relative;
    height: 100%;
    width: 96%;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.company-visual__title {
    margin-top: 54px;
    text-align: center;
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
}

.company-tabs {
    margin-top: 48px;
    height: 80px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(25px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    overflow: hidden;
}
.company-tabs__item {
    position: relative;
    text-align: center;
    color: rgba(255,255,255,.8);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    padding: 0 12px;
}
.company-tabs__item + .company-tabs__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 20px;
    transform: translateY(-50%);
    background: rgba(255,255,255,.25);
}
.company-tabs__item--active { color: #fff; font-weight: 900; }
.company-tabs__item--active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -26px;
    width: 55px;
    height: 5px;
    transform: translateX(-50%);
    background: #d9d9d9;
}

/* intro + info */
.company-intro { padding: 80px 0 90px; background: #fff; }
.company-intro__lead {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 40px;
}
.company-intro__lead strong { font-weight: 800; }
.company-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #060606;
    line-height: 1.4;
    margin: 30px 0 24px;
}

/* Figma 67:694 — 3×2 + 우측 주소(2행 통합), 외곽·내부 모두 1px 실선 */
.company-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(260px, 332px);
    grid-template-rows: minmax(200px, auto) minmax(200px, auto);
    border: 1px solid #000;
    background: #fff;
}
.company-info__cell {
    margin: 0;
    min-height: 200px;
    padding: 34px 40px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    box-sizing: border-box;
}
.company-info__cell:nth-child(1) { grid-column: 1; grid-row: 1; }
.company-info__cell:nth-child(2) { grid-column: 2; grid-row: 1; }
.company-info__cell:nth-child(3) { grid-column: 3; grid-row: 1; }
.company-info__cell:nth-child(4) {
    grid-column: 4;
    grid-row: 1 / span 2;
    min-height: 400px;
    border-right: none;
    border-bottom: none;
}
.company-info__cell:nth-child(5) { grid-column: 1; grid-row: 2; }
.company-info__cell:nth-child(6) { grid-column: 2; grid-row: 2; }
.company-info__cell:nth-child(7) {
    grid-column: 3;
    grid-row: 2;
    border-right: none;
    border-bottom: none;
}

.company-info__cell dt {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #5c5c5c;
    margin-bottom: 18px;
}
.company-info__cell dt img {
    width: auto;
    height: 28px;
    max-width: 32px;
    object-fit: contain;
    flex-shrink: 0;
}
.company-info__cell dd {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
}

/* business — Figma 1:851 골드바 배경 + rgba(0,0,0,.6) 오버레이 */
.company-biz { position: relative; padding: 84px 0 90px; color: #fff; }
.company-biz__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/resources/img/sub/company2/biz_area_bg.jpg") center 38% / cover no-repeat;
}
.company-biz .inner { position: relative; }
.company-biz__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 56px;
}
.company-biz__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: start;
    justify-items: center;
}
/* Figma 1:674 — 350px 원 안에 아이콘 + 제목 + 설명 */
.company-biz__card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
}
.company-biz__bubble {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 22px 26px;
    overflow: hidden;
    color: #fff;
}
.company-biz__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    line-height: 0;
}
.company-biz__icon img {
    width: auto;
    height: 52px;
    max-width: 72px;
    object-fit: contain;
}
.company-biz__name {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
}
.company-biz__desc {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    opacity: 0.95;
    color: #fff;
}

/* org — Figma 67:693 직각 트리 (SVG 1px #000) */
.company-org { padding: 80px 0 120px; background: #fff; }
.company-org__chart {
    margin-top: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.company-org__node {
    width: 245px;
    height: 80px;
    border-radius: 8px;
    border: 1px solid #000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #060606;
    box-sizing: border-box;
    flex-shrink: 0;
}
.company-org__node--root {
    background: #000;
    color: #fff;
    border-color: #000;
}
.company-org__svg {
    display: block;
    width: 100%;
    max-width: 920px;
    height: auto;
    margin: 0;
    flex-shrink: 0;
}
.company-org__svg path {
    stroke: #000;
    stroke-width: 1;
    fill: none;
    vector-effect: non-scaling-stroke;
}
.company-org__row {
    width: 100%;
    max-width: 920px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px 16px;
    box-sizing: border-box;
}
.company-org__row .company-org__node {
    width: 245px;
    max-width: calc((100% - 32px) / 3);
    flex: 0 1 245px;
}

/* footer */
.site-footer,
.company-footer { background: #171c22; color: #fff; border-radius: 60px 60px 0 0; }
.site-footer__inner,
.company-footer__inner {
    width: 96%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 56px 0 40px;
    display: grid;
    grid-template-columns: 280px 1fr 260px;
    grid-template-areas:
        "brand tel top"
        "meta meta meta";
    align-items: start;
    gap: 18px 28px;
}
.site-footer__brand,
.company-footer__brand { grid-area: brand; width: 252px; }
.site-footer__logo-svg,
.company-footer__logo-svg { display: block; width: 100%; }
.site-footer__logo-svg svg,
.company-footer__logo-svg svg { display: block; width: 100%; height: auto; }
.site-footer__tel,
.company-footer__tel { grid-area: tel; }
.site-footer__label,
.company-footer__label { font-size: 16px; font-weight: 600; opacity: .95; line-height: 1.4; }
.site-footer__num,
.company-footer__num { margin-top: 6px; font-size: 32px; font-weight: 500; line-height: 1.1; }
.site-footer__top,
.company-footer__top { grid-area: top; display: flex; justify-content: flex-end; }
.site-footer__topbtn,
.company-footer__topbtn {
    width: 100px;
    height: 35px;
    border: 1px solid #525252;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.site-footer__meta,
.company-footer__meta { grid-area: meta; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.site-footer__corp,
.company-footer__corp { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.site-footer__line,
.company-footer__line { font-size: 14px; font-weight: 400; opacity: .95; line-height: 1.4; }

/* responsive */
@media (max-width: 1400px) {
    .site-header__inner,
    .company-header__inner { max-width: 1280px; }
    .company-visual__inner { max-width: 1280px; }
    .company-footer__inner { max-width: 1280px; }
    .site-footer__inner { max-width: 1280px; }
    .company-info__cell { padding: 30px 32px; }
}

@media (max-width: 1024px) {
    .site-header__nav,
    .company-header__nav { display: none; }
    .site-header__menu,
    .company-header__menu { display: inline-flex; }
    .company-visual { height: 360px; }
    .company-tabs { grid-template-columns: repeat(2, 1fr); height: auto; padding: 10px 0; }
    .company-tabs__item { padding: 18px 12px; }
    .company-tabs__item + .company-tabs__item::before { display: none; }
    .company-tabs__item--active::after { bottom: 8px; }

    .company-info {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .company-info__cell:nth-child(1) { grid-column: 1; grid-row: 1; }
    .company-info__cell:nth-child(2) { grid-column: 2; grid-row: 1; border-right: none; }
    .company-info__cell:nth-child(3) {
        grid-column: 1 / -1;
        grid-row: 2;
        border-right: none;
        border-bottom: 1px solid #000;
    }
    .company-info__cell:nth-child(4) {
        grid-column: 1 / -1;
        grid-row: 3;
        min-height: 200px;
        border-right: none;
        border-bottom: 1px solid #000;
    }
    .company-info__cell:nth-child(5) { grid-column: 1; grid-row: 4; border-right: 1px solid #000; }
    .company-info__cell:nth-child(6) { grid-column: 2; grid-row: 4; border-right: none; }
    .company-info__cell:nth-child(7) {
        grid-column: 1 / -1;
        grid-row: 5;
        border-right: none;
        border-bottom: none;
    }

    .company-biz__grid { grid-template-columns: 1fr; gap: 36px; }
    .company-biz__card { max-width: 350px; }

    .company-org__row {
        justify-content: center;
        gap: 20px;
    }
    .company-org__row .company-org__node {
        flex: 1 1 200px;
        max-width: 245px;
    }
    .company-org__svg {
        max-width: 100%;
    }

    .company-footer__inner,
    .site-footer__inner { grid-template-columns: 1fr; grid-template-areas: "brand" "tel" "top" "meta"; }
    .company-footer__top,
    .site-footer__top { justify-content: flex-start; }
}

@media (max-width: 768px) {
    .site-header__inner,
    .company-header__inner { height: 88px; width: 100%; padding: 0 24px; }
    .site-header__logo,
    .company-header__logo { width: 150px; }
    .company-visual { padding-top: 88px; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; }
    .company-visual__title { font-size: 28px; margin-top: 44px; }
    .company-intro__lead { font-size: 28px; }
    .company-section-title { font-size: 22px; }
    .company-info {
        grid-template-columns: 1fr;
    }
    .company-info__cell,
    .company-info__cell:nth-child(1),
    .company-info__cell:nth-child(2),
    .company-info__cell:nth-child(3),
    .company-info__cell:nth-child(4),
    .company-info__cell:nth-child(5),
    .company-info__cell:nth-child(6),
    .company-info__cell:nth-child(7) {
        grid-column: 1;
        grid-row: auto;
        border-right: none;
        border-bottom: 1px solid #000;
        min-height: 0;
    }
    .company-info__cell:nth-child(7) { border-bottom: none; }
    .company-info__cell { padding: 26px 22px; min-height: 0; }
    .company-biz__bubble {
        width: 280px;
        height: 280px;
        padding: 22px 16px 20px;
        gap: 8px;
    }
    .company-biz__icon img {
        height: 44px;
        max-width: 60px;
    }
    .company-biz__name {
        font-size: 20px;
    }
    .company-biz__desc {
        font-size: 15px;
        line-height: 1.3;
    }
    .company-biz__card { max-width: 280px; }
    .company-footer,
    .site-footer { border-radius: 36px 36px 0 0; }
}

