@charset "utf-8";

/* ===== Main Visual ===== */
.main-visual {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--color-white);
}

.main-visual .swiper {
    width: 100%;
    height: 100%;
}

.main-visual .swiper-slide {
    position: relative;
    height: 100%;
    box-sizing: border-box;
}

.main-visual .bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.main-visual .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.main-visual .bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%),
                linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
}

/* Swiper Pagination */
.main-visual .swiper-pagination {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    z-index: 10;
    left: 60px !important;
    bottom: 70px !important;
    width: auto !important;
    text-align: left;
}

.main-visual .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    opacity: 1;
    transition: all 0.3s ease;
}

.main-visual .swiper-pagination-bullet-active {
    width: 40px;
    background: #F44336;
}

.main-visual .text-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    z-index: 3;
    left: 60px;
    bottom: 110px;
    pointer-events: none;
}

.main-visual .text-wrap .title {
    color: var(--color-white);
    font-size: 60px;
    font-family: var(--engFont);
    font-weight: 600;
    line-height: 1.2;
    word-wrap: break-word;
    opacity: 0;
    transition: opacity 1s ease;
}

.main-visual .text-wrap .desc {
    color: var(--color-white);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    word-wrap: break-word;
    opacity: 0;
    transition: opacity 1s ease 1.5s;
}

.text-wrap.on:not(.fade-out) .title,
.text-wrap.on:not(.fade-out) .desc {
    opacity: 1;
}

.text-wrap.fade-out .title,
.text-wrap.fade-out .desc {
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
}

/* ===== Section 02 ===== */
.fp-section[data-anchor="page02"] {
    overflow: hidden;
}

.fp-section[data-anchor="page02"] .fp-tableCell {
    vertical-align: top;
}

.sec02.sec02-inner {
    position: relative;
    height: 100%;
    padding: 180px 0 220px;
    box-sizing: border-box;
    background: var(--color-white);
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sec02.sec02-inner::-webkit-scrollbar {
    display: none;
}

.sec02__bg-text {
    position: absolute;
    z-index: 0;
    top: 364px;
    right: -20px;
    color: #F5F5F5;
    font-size: 160px;
    font-family: var(--engFont);
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.sec02__wrap {
    position: relative;
    z-index: 1;
}

.sec02__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.sec02__title {
    color: var(--color-black);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
}

.sec02__title .point {
    color: var(--color-gnb-sub-bg);
}

.sec02__head-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.sec02__sub {
    color: #444;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
}

.sec02__more {
    --sec02-more-fill-dur: 0.3s;
    --sec02-more-fill-delay: 0.15s;
    --sec02-more-arrow-lead: 0.1s;
    --sec02-more-fade-out: 0.32s;
    --sec02-more-grow-scale: 8;
    --sec02-more-fill: var(--color-gnb-sub-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 0;
    width: 240px;
    height: 68px;
    padding: 0 8px 0 30px;
    overflow: hidden;
    background: var(--color-white);
    border: 2px solid #EEE;
    border-radius: 34px;
    text-decoration: none;
    transition: border-color var(--sec02-more-fade-out) ease;
}

.sec02__more::before {
    content: '';
    position: absolute;
    z-index: 0;
    right: 8px;
    top: calc(50% - 26px);
    width: 52px;
    height: 52px;
    background: var(--sec02-more-fill);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity var(--sec02-more-fade-out) ease,
        transform 0s linear var(--sec02-more-fade-out);
}

.sec02__more:hover::before,
.sec02__more:focus-visible::before {
    opacity: 1;
    transform: scale(var(--sec02-more-grow-scale));
    transition:
        transform var(--sec02-more-fill-dur) ease-in var(--sec02-more-fill-delay),
        opacity 0.12s ease-out;
}

.sec02__more-label {
    position: relative;
    z-index: 1;
    color: var(--color-black);
    font-size: 18px;
    font-family: var(--engFont);
    font-weight: 500;
    transition: color var(--sec02-more-fade-out) ease;
}

.sec02__more:hover .sec02__more-label,
.sec02__more:focus-visible .sec02__more-label {
    color: var(--color-white);
    transition: color 0.05s ease var(--sec02-more-fill-delay);
}

.sec02__more-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--sec02-more-fill);
    border-radius: 50%;
    color: var(--color-white);
}

.sec02__more-icon svg {
    display: block;
    transform: rotate(0deg);
    transform-origin: center center;
    transition: transform 0.35s ease;
}

.sec02__more:hover .sec02__more-icon svg,
.sec02__more:focus-visible .sec02__more-icon svg {
    transform: rotate(45deg);
    transition: transform 0.35s ease max(0s, calc(var(--sec02-more-fill-delay) - var(--sec02-more-arrow-lead)));
}

.sec02__more:hover,
.sec02__more:focus-visible {
    border-color: transparent;
    transition: border-color 0.05s ease-in calc(var(--sec02-more-fill-delay) + var(--sec02-more-fill-dur));
}

.sec02__more:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 3px;
}

.sec02__grid {
    display: flex;
    align-items: flex-start;
    gap: 120px;
}

.sec02__col {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 80px;
    min-width: 0;
}

.sec02__col--right {
    padding-top: 240px;
}

/* ===== Product Card ===== */
.prod-card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    cursor: pointer;
}

.prod-card__img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: linear-gradient(180deg, #F5F5F5 0%, #EEE 100%);
    border-radius: 40px;
    transition: border-radius 0.4s ease;
}

.prod-card__img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.45s ease;
}

.prod-card__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 0;
    transition: padding 0.4s ease;
}

.prod-card__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.prod-card__name {
    color: var(--color-black);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
}

.prod-card__desc {
    color: #444;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
}

.prod-card__btn {
    display: block;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background-color: #F5F5F5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7M17 7H7M17 7V17' stroke='%23444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
    border-radius: 50%;
    transition: background-color 0.35s ease, background-image 0.35s ease;
}

.prod-card:hover .prod-card__img-wrap,
.prod-card:has(.prod-card__btn:focus-visible) .prod-card__img-wrap {
    border-radius: 80px;
}

.prod-card:hover .prod-card__img-wrap img,
.prod-card:has(.prod-card__btn:focus-visible) .prod-card__img-wrap img {
    transform: scale(1.3);
}

.prod-card:hover .prod-card__info,
.prod-card:has(.prod-card__btn:focus-visible) .prod-card__info {
    padding: 0 20px;
}

.prod-card:hover .prod-card__btn,
.prod-card:has(.prod-card__btn:focus-visible) .prod-card__btn {
    background-color: #F44336;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ===== Section 03 ===== */
.sec03 {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--color-white);
}

.sec03__bg-text {
    position: absolute;
    z-index: 0;
    left: -20px;
    bottom: 0;
    color: #F5F5F5;
    font-size: 160px;
    font-family: var(--engFont);
    font-weight: 600;
    line-height: 208px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.sec03__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0 auto;
    padding: 0;
    padding-left: 120px;
    box-sizing: border-box;
}

.sec03__panel {
    min-width: 0;
}

.sec03__panel--text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 0 0 440px;
    width: 440px;
    height: 620px;
    box-sizing: border-box;
}

.sec03__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 320px;
    padding-top: 40px;
    box-sizing: border-box;
    text-align: left;
}

.sec03__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.sec03__title {
    color: var(--color-black);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
}

.sec03__title .point {
    color: var(--color-gnb-sub-bg);
}

.sec03__title-br {
    display: none;
}

.sec03__sub {
    color: #444;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
}

.sec03__more {
    margin-top: 48px;
    flex-shrink: 0;
}

.sec03__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-top: 107px;
}

.sec03__progress {
    width: 320px;
    max-width: 100%;
    height: 2px;
    overflow: hidden;
    background: #E1E1E1;
    flex-shrink: 0;
}

.sec03__progress-bar {
    width: 0%;
    height: 100%;
    background: var(--color-gnb-sub-bg);
}

.sec03__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-top: 40px;
    text-align: left;
}

.sec03__industry-name {
    color: var(--color-black);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
}

.sec03__industry-desc {
    color: #444;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.7;
}

.sec03__panel--media {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    flex: 1 1 0;
    min-width: 0;
    height: 620px;
    overflow: hidden;
    box-sizing: border-box;
}

.sec03__slider {
    display: flex;
    align-items: center;
    flex: 1;
    width: 100%;
    height: 620px;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
}

.sec03__slider.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.sec03__slider.is-dragging img {
    pointer-events: none;
}

.sec03__acc-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    will-change: transform;
}

.sec03__acc-slide {
    flex-shrink: 0;
}

.sec03__acc-inner {
    width: 180px;
    height: 620px;
    overflow: hidden;
    border-radius: 40px;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec03__acc-slide.active .sec03__acc-inner {
    width: 520px;
    height: 620px;
}

.sec03__acc-slide.next .sec03__acc-inner {
    width: 320px;
    height: 620px;
}

.sec03__acc-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

/* ===== Sec03 Custom Drag Cursor ===== */
#sec03DragCursor {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 160px;
    height: 160px;
    background: var(--color-white);
    border: 4px solid var(--color-white);
    border-radius: 50%;
    box-sizing: border-box;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

#sec03DragCursor.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.sec03__slider.has-custom-cursor {
    cursor: none !important;
}

.drag-label {
    color: #444444;
    font-size: 18px;
    font-family: var(--engFont);
    font-weight: 500;
    line-height: 1.3;
    user-select: none;
}

.drag-arrow {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    transform: translateY(-50%);
}

.drag-arrow--left { left: 16px; }
.drag-arrow--right { right: 16px; }

/* ===== Quick Menu ===== */
.qm-nav {
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 90;
    right: 100px;
    bottom: 50px;
    height: 40px;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.60);
    border-radius: 999px;
}

.qm-nav__item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 5px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.35s ease;
}

.qm-nav__item.is-active {
    opacity: 1;
}

.qm-nav__dot {
    width: 5px;
    height: 5px;
    flex-shrink: 0;
    background: var(--color-white);
    border-radius: 999px;
}

.qm-nav__label {
    color: var(--color-white);
    font-size: 14px;
    font-family: var(--engFont);
    font-weight: 500;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.qm-nav__item.is-active .qm-nav__label {
    transform: translateX(0);
}

.qm-nav__sep {
    flex-shrink: 0;
    width: 16px;
    height: 1px;
    max-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--color-white);
    border: none;
    opacity: 0;
    transition: max-width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

.qm-nav__item.is-active .qm-nav__sep {
    max-width: 16px;
    opacity: 1;
}

.qm-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: fixed;
    z-index: 90;
    right: 20px;
    bottom: 40px;
}

.fp-foot-section__stretch {
    position: relative;
}

.qm-sec04-clones {
    display: none;
    position: absolute;
    z-index: 95;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    overflow: visible;
    pointer-events: none;
}

html.qm-fullpage-on .qm-sec04-clones {
    display: block;
}

.qm-nav-sec04-wrap {
    position: absolute;
    right: 100px;
    bottom: 50px;
    pointer-events: auto;
}

.qm-btns-sec04-wrap {
    position: absolute;
    right: 20px;
    bottom: 40px;
    pointer-events: auto;
}

.qm-nav-sec04-wrap.is-inert,
.qm-btns-sec04-wrap.is-inert {
    visibility: hidden;
    pointer-events: none;
}

.qm-nav-sec04-wrap.qm-sec04-wrap--behind-fixed,
.qm-btns-sec04-wrap.qm-sec04-wrap--behind-fixed {
    visibility: visible;
    pointer-events: none;
}

html.qm-fp-sec04-qm-stack #qmNav,
html.qm-fp-sec04-qm-stack #qmBtns {
    z-index: 100;
}

.qm-foot-clones {
    position: absolute;
    z-index: 95;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    overflow: visible;
    pointer-events: none;
}

.qm-nav-foot-wrap {
    position: absolute;
    right: 100px;
    bottom: calc(50px + var(--qm-foot-clone-lift, 0px));
    pointer-events: auto;
}

.qm-btns-foot-wrap {
    position: absolute;
    right: 20px;
    bottom: calc(40px + var(--qm-foot-clone-lift, 0px));
    pointer-events: auto;
}

.qm-nav-foot-wrap.is-inert,
.qm-btns-foot-wrap.is-inert {
    visibility: hidden;
    pointer-events: none;
}

.qm-nav-sec04-wrap .qm-nav,
.qm-nav-foot-wrap .qm-nav,
.qm-btns-sec04-wrap .qm-btns,
.qm-btns-foot-wrap .qm-btns {
    position: relative;
    right: auto;
    bottom: auto;
}

#qmNav.qm-fixed--replaced-by-clone,
#qmBtns.qm-fixed--replaced-by-clone {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}

.qm-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border: none;
    border-radius: 9999px;
    background: var(--color-gnb-sub-bg);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.qm-chat:hover {
    background: #F44336;
}

.qm-chat img {
    display: block;
}

.qm-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border: none;
    border-radius: 9999px;
    background: #0A0A0A;
    color: var(--color-white);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.qm-scroll:hover {
    background: #2B2B2B;
}

.qm-scroll__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.qm-scroll--up .qm-scroll__icon {
    transform: rotate(180deg);
}

.qm-scroll__icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.qm-chat:focus-visible,
.qm-scroll:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 4px;
}

/* ===== Section 04 ===== */
.sec04 {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    background: var(--color-white);
}

.sec04__inner {
    box-sizing: border-box;
}

.sec04__main {
    position: relative;
    width: 100%;
    height: 520px;
    margin: 180px auto 0;
    flex-shrink: 0;
}

.sec04__hero {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 40px;
}

.sec04__hero-fill {
    display: none;
}

.sec04__hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec04__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
}

.sec04__hero-title {
    position: absolute;
    z-index: 2;
    top: 26px;
    right: -20px;
    color: var(--color-white);
    font-size: 160px;
    font-family: var(--engFont);
    font-weight: 500;
    line-height: 208px;
    white-space: nowrap;
    pointer-events: none;
}

.sec04__cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: absolute;
    z-index: 3;
    left: 100px;
    right: 60px;
    bottom: 60px;
    width: auto;
    box-sizing: border-box;
}

/* ===== Download Card ===== */
.dl-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    flex: 1 1 320px;
    max-width: 520px;
    min-width: 0;
    width: auto;
    height: 270px;
    padding: 0 40px 40px;
    flex-shrink: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-decoration: none;
    transition:
        background 0.58s cubic-bezier(0.22, 1, 0.36, 1),
        backdrop-filter 0.58s cubic-bezier(0.22, 1, 0.36, 1),
        -webkit-backdrop-filter 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes dl-card-hover-bg {
    0% {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    30% {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
    100% {
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
    }
}

.dl-card:hover {
    animation: dl-card-hover-bg 0.48s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.dl-card:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 3px;
}

.dl-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    color: var(--color-black);
    transition: color 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.dl-card__icon svg {
    transform: rotate(0deg);
    transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.dl-card:hover .dl-card__icon {
    color: var(--color-red, #e22);
}

.dl-card:hover .dl-card__icon svg {
    transform: rotate(45deg);
}

.dl-card__stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    transform: translateY(16px);
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.dl-card__label {
    color: var(--color-black);
    font-size: 36px;
    font-family: var(--engFont);
    font-weight: 500;
    line-height: 1.4;
}

.dl-card__desc-clip {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.dl-card__desc {
    margin: 0;
    padding-top: 16px;
    color: #444;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dl-card:hover .dl-card__desc {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.dl-card:hover .dl-card__stack,
.dl-card:focus-visible .dl-card__stack {
    transform: translateY(0);
}

.dl-card:hover .dl-card__desc-clip,
.dl-card:focus-visible .dl-card__desc-clip {
    max-height: 120px;
}

@media (prefers-reduced-motion: reduce) {
    .dl-card {
        transition: none;
    }

    .dl-card:hover {
        animation: none;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .dl-card__icon {
        transition: none;
    }

    .dl-card__icon svg {
        transition: none;
    }

    .dl-card__stack {
        transform: none;
        transition: none;
    }

    .dl-card__desc-clip {
        max-height: none;
        transition: none;
    }

    .dl-card:hover .dl-card__desc-clip,
    .dl-card:focus-visible .dl-card__desc-clip {
        transition: none;
    }
}

/* ===== Partner Logo Marquee ===== */
.sec04__logos {
    display: flex;
    align-items: center;
    height: 120px;
    margin-top: 40px;
    overflow: hidden;
}

.sec04__logos-track {
    display: flex;
    align-items: center;
    gap: 120px;
    width: max-content;
    flex-shrink: 0;
    animation: logos-scroll 15s linear infinite;
}

.sec04__logos-set {
    display: flex;
    align-items: center;
    gap: 120px;
    flex-shrink: 0;
}

.sec04__logos-set img {
    display: block;
    flex-shrink: 0;
    height: 120px;
}

@keyframes logos-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
