@font-face {
    font-family: 'Soehne';
    src: url('../font/soehne-buch.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Soehne';
    src: url('../font/soehne-halbfett.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
:root {
    --c-green: #52F756;
    --c-black: #050505;
    --c-bg: #000000;
    --c-eaeaea: #eaeaea;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--c-bg);
    color: #fff;
    font-family: 'Soehne', 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
}
.c-green {
    color: var(--c-green);
}
.c-eaeaea {
    color: var(--c-eaeaea)
}
/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    transition: background 0.3s, backdrop-filter 0.3s;
}
.header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}
.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 24px;
}
.header-utils {
    display: flex;
    gap: 12px;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    border: 1px solid var(--c-green);
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-outline:hover {
    background: rgba(82, 247, 86, 0.1);
    color: var(--c-green);
}
.btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    background: #333;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s;
}
.btn-solid:hover {
    background: #444;
}
.btn-share .ico {
    display: none;
}
/* Scroll Sequence */
.scroll-sequence {
    width: 100%;
    height: 450vh;
    background: #000;
    position: relative;
}
.sticky-wrap {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.seq-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    visibility: hidden;
}
.seq-panel.seq-1 {
    visibility: visible;
}
.seq-panel.seq-2 {
    background: radial-gradient(50% 50% at 50% 50%, rgba(82, 247, 86, 0.15) 0%, rgba(24, 45, 20, 0.15) 100%);
}
.seq-panel.seq-3 {
    background: #000;
}
.seq-panel .content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
}
/* Section 1 - Split Layout */
.seq-1 {
    background: #000;
}
.panel-1-layout {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Max-width container for text, matching other sections */
.panel-1-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    padding: 0 80px;
    text-align: left;
}
.panel-1-text {
    text-align: left;
}
.text-line-wrap {
    overflow: hidden;
}
.p1-line {
    font-size: clamp(36px, 4.5vw, 68px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #fff;
    opacity: 0;
    transform: translateY(60px);
    display: block;
    text-align: left;
    white-space: nowrap;
}
.panel-1-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    z-index: 0;
}
.panel-1-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center top;
    transform: translateY(0);
    display: block;
    animation: imgFloat 8s ease-in-out infinite;
    will-change: transform;
}
@keyframes imgFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8%);
    }
}
/* Dark overlay over image for animation/readability */
.p1-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}
/* Remove old leftover pseudo-elements if any */
.panel-1-img-wrap::after,
.panel-1-img-wrap::before {
    display: none !important;
}
/* Scroll down indicator */
.scroll-down-wrap {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}
.btn-scroll-down {
    display: block;
    width: 24px;
    height: auto;
    animation: scrollBounce 2s infinite ease-in-out;
}
.btn-scroll-down img {
    width: 100%;
    display: block;
}
@keyframes scrollBounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}
@media (max-width: 768px) {
    .scroll-down-wrap {
        display: none;
    }
}
.seq-h2 {
    font-size: clamp(24px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
}
.seq-2-text {
    font-size: clamp(24px, 4vw, 50px);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.02em;
}
.bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
}
.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bg-on {
    opacity: 0;
}
.dim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}
.glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, rgba(82, 247, 86, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
}
.relative {
    position: relative;
}
.count-num {
    font-variant-numeric: tabular-nums;
    display: inline-block;
    width: 0.6em;
    text-align: center;
}
.dot {
    display: none;
}
.blink-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: #fff;
}
@keyframes blink {
    50% {
        opacity: 0;
    }
}
/* Normal Flow Sections */
.normal-flow-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}
/* Sequence 2 Layout */
.seq-2-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 10;
    gap: 60px;
}
.seq-2-layout .left-content {
    flex: 0 0 auto;
    text-align: center;
    padding: 0;
}
.seq-2-layout .right-content.swiper-news-wrap {
    flex: 0 0 auto;
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}
.news-swiper {
    width: 100%;
    height: 420px;
    opacity: 0;
    transform: translateY(20px);
    overflow: hidden;
}
@media (max-width: 768px) {
    .news-swiper {
        width: 260px;
        height: 360px;
        overflow: visible;
    }
}
.news-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: #000;
    border: 1px solid rgba(82, 247, 86, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}
.news-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}
.news-card .news-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #111;
}
.news-card .news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-card .news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    background: #000;
    text-align: left;
}
.news-content .news-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: auto;
    word-break: keep-all;
}
.news-content .btn-news-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin-top: 16px;
    border: 1px solid #52F756;
    color: #52F756;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.news-content .btn-news-link:hover {
    background: rgba(82, 247, 86, 0.1);
}
.swiper-news-wrap .swiper-pagination {
    display: none;
}
.swiper-news-wrap .swiper-pagination-bullet {
    background: #555;
    opacity: 1;
    width: 6px;
    height: 6px;
    border-radius: 0;
}
.swiper-news-wrap .swiper-pagination-bullet-active {
    background: #52F756;
}
.swiper-news-wrap .swiper-button-prev,
.swiper-news-wrap .swiper-button-next {
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    display: none;
}
.swiper-news-wrap .swiper-button-prev::after,
.swiper-news-wrap .swiper-button-next::after {
    display: none;
}
@media (max-width: 768px) {
    .swiper-news-wrap .swiper-button-prev,
    .swiper-news-wrap .swiper-button-next {
        display: block;
    }
    .swiper-news-wrap .swiper-button-prev {
        left: 0;
        background: url('../img/arrow-left.svg') no-repeat center center;
        background-size: contain;
    }
    .swiper-news-wrap .swiper-button-next {
        right: 0;
        background: url('../img/arrow-right.svg') no-repeat center center;
        background-size: contain;
    }
}
/* Sequence 3 Layout */
.seq-3-layout {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 10;
}
.text-bg-glow {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle at center, rgba(82, 247, 86, 0.20) 0%, rgba(0, 0, 0, 0) 65%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}
@media (max-width: 768px) {
    .text-bg-glow {
        transform: translateY(-100%);
    }
}
.seq-3-layout .content {
    flex: 0 1 1000px;
    text-align: left;
    white-space: normal;
    position: relative;
    z-index: 3;
}
.map-globe-wrap {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 640px;
    pointer-events: none;
    z-index: 2;
}
.map-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}
.map-image {
    width: 100%;
    height: auto;
    display: block;
}
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@keyframes dashTravel {
    to {
        stroke-dashoffset: -50;
    }
}
.svg-anim-dash {
    animation: dashTravel 2s linear infinite;
}
/* Section Cards 4 */
.seq-4 {
    padding-top: 120px;
}
.seq-4 .inner {
    opacity: 0;
    transform: translateY(50px);
}
.seq-panel.section-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    color: #fff;
    text-align: left;
}
.section-cards .inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.sec-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-align: left;
    margin-bottom: 80px;
}
.sec-subtitle {
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 30px;
}
.s4-list-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.s4-list-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 40px;
    transition: background 0.3s ease;
}
.s4-list-card:hover {
    background: #1a1a1a;
}
.s4-list-card .card-text {
    text-align: left;
    flex: 1;
    padding-right: 30px;
}
.s4-list-card .card-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.s4-list-card .card-desc {
    font-size: 18px;
    color: #999;
    line-height: 1.5;
    word-break: keep-all;
}
.s4-list-card .card-icon {
    flex: 0 0 auto;
    width: 100px;
}
.s4-list-card .card-icon img {
    width: 100%;
    display: block;
}

/* ✅ PC 기본: 2열 */
.card-img-wrap {
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    gap: 20px;
}

.card-img-wrap img {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.card-img-wrap img:hover {
    transform: translateY(-8px);
}

/* Section Jobs 5 */
.section-jobs {
    background: #000;
    padding: 160px 20px;
}
.section-jobs .inner {
    max-width: 1000px;
    margin: 0 auto;
}
.job-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}
.job-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #151515;
    border-radius: 12px;
    padding: 32px 24px 64px 24px;
    max-height: 134px;
    text-decoration: none;
    color: #fff;
    transition: background 0.3s, border-color 0.3s;
    border: 1px solid #151515;
    grid-column: span 3;
    cursor: default;
}
.job-card:hover {
    background: #1a1a1a;
}
.job-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.job-info p {
    font-size: 14px;
    color: #777;
}
.icon-arrow {
    display: none;
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}
.job-card:hover .icon-arrow {
    transform: translateY(-4px);
}
/* Popup style */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.popup-content {
    position: relative;
    width: 90%;
    max-width: 640px;
    background: #000;
    border: 1px solid var(--c-green);
    border-radius: 12px;
    padding: 50px 40px;
    color: #fff;
    text-align: left;
}
.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
}
.btn-close img {
    width: 20px;
    filter: brightness(0.6);
    transition: 0.3s;
}
.btn-close:hover img {
    filter: brightness(1);
}
.popup-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
}
.popup-sec {
    margin-bottom: 30px;
}
.popup-sec h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}
.popup-sec p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}
/* Footer */
.footer {
    width: 100%;
    height: 80px;
    border-top: 1px solid #2B2B2B;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}
.footer-logo {
    height: 24px;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.footer-logo:hover {
    opacity: 1;
}
@media (max-width: 768px) {
    .footer {
        height: 60px;
    }
    .footer-logo {
        height: 18px;
    }
}
/* Section 6 Apply */
.section-apply {
    position: relative;
    margin-top: 50px;
    height: calc(100vh - 50px - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    background: #000;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
}
.flare-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 1920px;
    height: 100%;
    background: url('../img/img-flare.png') no-repeat center top;
    background-size: 100% auto;
    z-index: 1;
    mix-blend-mode: screen;
    animation: flarePulse 4s infinite alternate ease-in-out;
}
@keyframes flarePulse {
    0% {
        opacity: 0.7;
        filter: brightness(1) hue-rotate(0deg);
    }
    100% {
        opacity: 1;
        filter: brightness(1.2) hue-rotate(5deg);
    }
}
.section-apply .inner {
    position: relative;
    z-index: 10;
}
.sec-6-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 60px;
}
.btn-wrap {
    display: inline-block;
    padding-bottom: 10px;
    padding-top: 30px;
}
.btn-solid-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 48px;
    background: transparent;
    border: 1px solid var(--c-green);
    border-radius: 32px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.btn-wrap:hover .btn-solid-large {
    transform: translateY(-30px) !important;
    box-shadow: 0 10px 25px rgba(82, 247, 86, 0.3);
    background: rgba(82, 247, 86, 0.05);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .header-inner {
        padding: 0 20px;
    }
    .panel-1-layout {
        align-items: flex-start;
    }
    .panel-1-inner {
        padding: 20vh 24px 0;
        max-width: 100%;
    }
    .panel-1-text {
        text-align: left;
    }
    .p1-line {
        font-size: clamp(28px, 8vw, 48px);
        white-space: normal;
    }
    .panel-1-img {
        object-fit: initial;
    }
    .panel-1-img-wrap .panel-1-img {
        object-position: center bottom;
    }
    .panel-1-img-wrap::after {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.85) 0%,
                rgba(0, 0, 0, 0.65) 35%,
                rgba(0, 0, 0, 0.1) 65%,
                rgba(0, 0, 0, 0) 100%);
    }
    .panel-1-img-wrap {
        opacity: 1;
    }
    .btn-outline,
    .btn-solid {
        font-size: 12px;
        padding: 0 12px;
        height: 32px;
    }
    .btn-share .txt {
        display: none;
    }
    .btn-share .ico {
        display: block;
        width: 16px;
        height: 16px;
    }
    .btn-share {
        padding: 0 !important;
        width: 32px;
        justify-content: center;
    }
    .sec-title {
        font-size: 26px;
        margin-bottom: 16px;
    }
    .sec-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .panel-1-content h2 {
        margin-top: -30vw;
    }
    .seq-2-layout {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    .seq-2-layout .left-content {
        text-align: center;
        padding: 0;
    }
    .seq-2-layout .right-content.swiper-news-wrap {
        padding: 0;
    }
    .news-swiper {
        width: 260px;
        height: 360px;
    }
    .swiper-news-wrap .swiper-button-prev {
        left: 0;
    }
    .swiper-news-wrap .swiper-button-next {
        right: 0;
    }
    .news-card .news-img-wrap {
        height: 160px;
    }
    .swiper-news-wrap .swiper-pagination {
        display: block;
        bottom: -40px;
    }
    .seq-panel.seq-3 {
        align-items: flex-start;
        padding-top: 20vh;
    }
    .seq-3-layout {
        flex-direction: column;
        gap: 5px;
        padding: 0 20px;
    }
    .seq-3-layout .content {
        text-align: center;
        white-space: normal;
        flex: 1 1 auto;
    }
    .map-globe-wrap {
        flex: 0 1 100%;
        width: 100%;
        max-width: 400px;
        position: relative;
        margin-right: 0;
        right: auto;
        top: auto;
        transform: none;
    }
    .seq-panel.section-cards,
    .section-cards {
        padding: 0 20px;
    }

    /* ✅ 모바일: 1열 */
    .card-img-wrap {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 40px;
    }

    .card-img-wrap img {
        border-radius: 12px;
    }
    #section4 {
        margin-top: 25vh;
    }
    .s4-list-card {
        padding: 24px 20px;
    }
    .s4-list-card .card-title {
        font-size: 22px;
        margin-bottom: 14px;
    }
    .s4-list-card .card-desc {
        font-size: 15px;
    }
    .s4-list-card .card-icon {
        width: 48px;
    }
    .section-jobs {
        padding: 80px 20px;
    }
    .job-card {
        grid-column: span 12;
        padding: 10px 10px;
    }
    .job-info h4 {
        font-size: 19px;
    }
    .popup-content {
        padding: 40px 24px;
    }
    .popup-title {
        font-size: 22px;
    }
    .sec-6-title {
        font-size: 28px;
    }
    .btn-solid-large {
        font-size: 16px;
        height: 56px;
        padding: 0 36px;
    }
    .section-apply {
        height: calc(100vh - 50px - 88px);
    }
}
@media (max-width: 480px) {
    .panel-1-content h2 {
        margin-top: -50vw;
    }
    .seq-panel h2 {
        font-size: 26px;
    }
    .flare-bg {
        top: 0px;
    }
}
/* Card SVG Animations */
@keyframes svgPointPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
        filter: brightness(1);
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
        filter: brightness(1.4);
    }
}
.svg-anim-pulse {
    transform-origin: center;
    transform-box: fill-box;
    animation: svgPointPulse 2s ease-in-out infinite;
}
@keyframes svgBreathe {
    0%,
    100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.02) translateY(-2px);
    }
}
.svg-anim-breathe {
    transform-origin: center bottom;
    transform-box: fill-box;
    animation: svgBreathe 3s ease-in-out infinite;
}
@keyframes svgFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}
.svg-anim-float {
    animation: svgFloat 3s ease-in-out infinite;
}
/* 모바일 줄바꿈 */
.mb-ver {
    display: none;
}
.pad-ver {
    display: none;
}
@media (max-width: 1024px) {
    .pad-ver {
        display: block;
    }
}