@charset "UTF-8";

section.hero {
    position: relative;
    background: var(--color-black);
    color: var(--color-white);
    padding: 40px;
    text-align: center;
    overflow: hidden;
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-container {
    position: relative;
    text-align: center;
    z-index: 3;
}

.hero-title {
    color:#fff;
    font-size: 64px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
}

/* ====================================
   Intro Section
   ==================================== */
section.intro {
    padding-top: 60px;
    text-align: center;
    background: var(--color-white);
}

section.intro .btn-arrow-down {
    display: block;
    width:36px; 
    height:136px;
    font-size:0;
    margin:0 auto;
    background: url('../images/main/section_intro_arrow.svg') center center no-repeat;
    animation: arrowDown 1.5s infinite;
}
@keyframes arrowDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

section.intro .section-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 128%;
    margin-bottom: 24px;
    color: var(--color-black);
}

section.intro .section-desc {
    font-size: 24px;
    font-weight: 400;
    line-height: 140%;
    color: var(--color-gray);
}

/* ====================================
   Section Header
   ==================================== */
.section-header {
    position:relative;
    padding-top:60px;
}

.section-header::before {
    position:absolute; 
    left:0; 
    top:0;
    content: "";    
    display: block;
    width: 128px;
    height: 8px;
    /* background: var(--color-yellow); */
    background: var(--color-yellow);
}

.section-header .section-title {
    color: var(--color-black);
    font-size: 44px;
    font-weight: 600;
    line-height:100%;
}

.section-header .section-desc {
    opacity: 0.8;
    font-size: 20px;
    font-weight: 400;
    line-height: 128%;
    color: var(--color-black);
    margin-top:16px;
}


/* ====================================
   Products Section
   ==================================== */
section.products {
    padding: 80px 0;
    background: var(--color-white);
}

section.products .products-swiper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

section.products .swiper-wrapper {
    display: flex;
    margin-top:60px;
}

section.products .swiper-slide {
    display: flex;
    height: auto;
}

section.products .swiper-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

section.products .swiper-pagination {
    position: relative;
    margin-top: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    bottom:auto;
    width: auto;
}

section.products .swiper-pause-btn {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    margin-left:20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: opacity 0.2s;
}

section.products .swiper-pause-btn:hover {
    opacity: 1;
}

/* 일시정지 아이콘 (기본: 재생 중) */
section.products .swiper-pause-btn::before,
section.products .swiper-pause-btn::after {
    content: '';
    display: block;
    width: 2px;
    height: 12px;
    background: rgba(0,0,0,0.8);
    border-radius: 1px;
    transition: all 0.2s;
}

section.products .swiper-pause-btn::before {
    margin-right: 4px;
}

/* 재생 아이콘 (일시정지 상태) */
section.products .swiper-pause-btn[aria-pressed="true"]::before {
    width: 0;
    height: 0;
    background: transparent;
    border-style: solid;
    border-width: 7px 0 7px 12px;
    border-color: transparent transparent transparent #000;
    border-radius: 0;
    margin-right: 0;
}

section.products .swiper-pause-btn[aria-pressed="true"]::after {
    display: none;
}

section.products .swiper-pagination-bullet {
    opacity: 0.2;
    width: 40px;
    height: 4px;
    background: #000;
    border-radius: 2px;
    margin:0 !important;
    transition: all 0.3s;
}

section.products .swiper-pagination-bullet-active {
    opacity: 1;
    width: 80px;
}

section.products .swiper-slide a {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    padding-top:66%;
    background: #000;
}

section.products .product-image { 
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
    opacity: 0.8;
}

section.products .swiper-slide a:hover .product-image {
    transform: scale(1.1);
    opacity: 1;
}

section.products .product-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
}

section.products .product-content .product-icon {
    width:16.6%;
}
section.products .product-content .product-tit {
    font-family: 'Poppins';
    font-size: 48px;
    font-weight: 700;
    line-height:100%;
    margin-top:12px;
}

section.products .product-sub {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    margin-top:8px;
}

section.products .product-desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    opacity: 0.9;
    margin-top:12px;
}



/* ====================================
   Global Business Section
   ==================================== */
section.global-business {
    padding: 80px 0 110px;
}

.global-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    max-width: var(--width-content);
    margin: 40px auto 0;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 30px;
    margin: 20px 0;
    
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
}


.global-visual {
    flex: 1;
    text-align: center;
}

.global-visual img {
    margin:0 auto;}

.language-badges {
    margin-bottom: 32px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-text {
    text-align: right;
}
.global-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.global-text p {
    font-size: 15px;
    color: var(--color-gray);
    line-height:128%;
}

/* ====================================
   Customer Stories Section
   ==================================== */
section.customer-stories {
    padding: 120px 0;
    background: var(--color-black);
}

section.customer-stories .section-title,
section.customer-stories .section-desc {
    color: var(--color-white);
}

section.customer-stories .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.story-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
    padding:12px;
}

.story-image {
    overflow: hidden;
    position: relative;
    padding-top:75%;
    border-radius: 12px;
    background: var(--color-gray-light);
}

.story-image img {
    position:absolute; 
    left:0; 
    top:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.story-logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
}

.story-content {
    padding: 24px 8px;
    background: var(--color-white);
}

.story-category {
    font-size: 16px;
    color: var(--color-black);
    display: block;
    font-weight: 700;
    line-height: 100%;
}

.story-title {
    overflow: hidden;
    font-size: 22px;
    font-weight: 500;
    line-height: 128%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    margin-top:8px;
}

.story-desc {
    overflow: hidden;
    opacity:0.56;
    font-size: 14px;
    color: var(--color-black);
    display: block;
    font-weight: 400;
    line-height: 128%;
    margin-top:8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
}


.stories-action {
    text-align: center;
}

.stories-action .btn-more {
    display:inline-block;
    background: var(--color-yellow);
    color: var(--color-black);
    font-size: 20px;
    font-weight: 700;
    line-height:100%;
    padding: 20px 40px;
    border: none;
    border-radius: 40px;
    transition: all 0.3s;
}

.stories-action .btn-more:hover {
    background: #FFC700;
    transform: translateY(-2px);
}

/* ====================================
   Stats Section
   ==================================== */
section.stats {
    padding: 80px 0;
    background: #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--width-content);
    margin: 50px auto 0;    
}

.stat-item {
    text-align: center;
    border-left:1px solid rgba(0,0,0,0.12);
    padding:0 10px;
}
.stat-item:first-child {
    border-left:none;
}

.stat-number {    
    font-size: 56px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
}

.stat-label {    
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.stat-desc {
    opacity: 0.8;
    font-size: 20px;
    font-weight:400;
    color: #000;
    line-height: 120%;
}

/* ====================================
   Partners Section
   ==================================== */
section.partners {
    padding: 80px 0;
    background: var(--color-gray-light);
    overflow: hidden;
}

.partners-banner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 60px;
    margin-top:48px;
    animation: scrollLeft 20s linear infinite;
    width: max-content;
}

.partners-banner:hover {
    animation-play-state: paused;
}

.partners-banner li {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 60px;
}

.partners-banner li img {
    max-width: 124px;
    flex-shrink: 0;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

/* ====================================
   Contact CTA Section
   ==================================== */
section.contact {
    padding: 120px 0;
    background: var(--color-white);
    text-align: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

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

.btn-cta {
    display:inline-block;
    background: var(--color-yellow);
    color: var(--color-black);
    font-size: 20px;
    font-weight: 700;
    line-height:100%;
    padding: 20px 40px;
    border: none;
    border-radius: 40px;
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #FFC700;
    transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 1000px) {   
    .section-header::before {
        width:68px;
        height:4px;
    }
    .partners-banner {
        gap:10px;
    }
    .partners-banner li {
        gap:10px;
    }
    .partners-banner li img {
        max-width: 96px;
    }
    section.products {
        padding-bottom:0;
    }
    section.products .products-swiper {
        width:auto;
        margin:0 -16px;
        padding-left: 16px;
    }
    section.products .swiper-slide {
        flex-direction: column;
        gap:12px;
    }
    section.products .swiper-slide a {
        padding-top:100%;
    }
    .partners-banner li {
        flex-direction: column;
    }

     .hero-title {
        font-size:28px;
    }
    section.hero {
        height: 472px;
        padding: 20px;
    }

    section.intro{
        padding-top:40px;
    }
    section.intro .section-title {
        font-size:24px;
        font-weight: 600;
        line-height:128%;
    }
    section.intro .section-desc {
        font-size:16px;
        font-weight: 400;
        line-height:140%;
    }
    section.intro .btn-arrow-down {
        display: none;
    }

    .section-header {
        padding-top:32px;
    }

    .section-header .section-title {
        font-size: 24px;
        font-weight: 600;
        line-height: 128%;
    }

    .section-header .section-desc {
        font-size:14px;
        font-weight: 400;
        line-height:127%;
    }
    section.products .swiper-wrapper {
        margin-top: 24px;
    }

    section.products .product-content {
        padding:20px;
    }

    section.products .product-content .product-icon {
        width:42px;
    }

    section.products .product-content .product-tit {
        font-size:32px;
        font-weight: 700;
        line-height: 100%;
        margin-top:10px;
    }
    section.products .product-sub {
        font-size: 14px;
        font-weight: 500;
        line-height: 100%;
    }
    section.products .product-desc {
        font-size: 14px;
        font-weight: 400;
        line-height: 128%;
        margin-top:16px;
    }

    section.products .swiper-pagination-bullet {
        width:24px;
        height:3px;
    }

    section.products .swiper-pagination-bullet-active {
        width:60px;
    }
    section.products .swiper-controls {
        margin-top: 16px;
        gap: 4px;
    }
    section.products .swiper-pagination {
        gap:6px;
    }
    section.products .swiper-pause-btn {
        width: 16px;
        height: 16px;
    }
    section.products .swiper-pause-btn::before,
    section.products .swiper-pause-btn::after {
        width: 2px;
        height: 11px;
    }
    section.products .swiper-pause-btn::before {
        margin-right: 3px;
    }
    section.products .swiper-pause-btn[aria-pressed="true"]::before {
        border-width: 5.5px 0 5.5px 9px;
    }
    section.global-business {
        padding:100px 0 48px;
    }
    .global-content {
        flex-direction: column;
        align-items: flex-start;
        gap:20px;
        margin-top:20px;
    }
    .global-features {
        width: 100%;
        text-align: center;
    }

    .feature-item{
        margin:8px 0;
    }
    .feature-text {        
        font-size: 16px;
        font-weight: 500;
        line-height: 120%;        
    }
    .global-text {
        text-align: left;
    }

    section.customer-stories {
        padding:48px 0;
    }

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        margin:40px 0;
        gap:10px;
    }

    .story-card {
        padding:8px;
    }

    .story-content {
        padding:16px 3px 18px
    }
    .story-category {
        font-size: 13px;
    }
    .story-title {
        font-size:16px;
    }

    .stories-action .btn-more {
        font-size:16px;
        font-weight: 700;
        line-height:140%;
        padding:16px 40px;
    }
    

    section.stats {
        padding:48px 0;
        background-color: #222;
    }
    section.stats .section-title,
    section.stats .section-desc,
    section.stats .stat-number,
    section.stats .stat-label,
    section.stats .stat-desc {
        color:#fff;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item {
        padding:40px 0;
        border-top:1px solid rgba(255,255,255,0.2);        
    }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {padding-top:0; border-top:0;}

    .stat-number {
        font-size:32px;
        line-height: 100%;
        margin-bottom:6px;
    }
    .stat-label {
        font-size:16px;
        line-height:100%;
        margin-bottom:8px;
    }
    .stat-desc {
        font-size: 14px;
        font-weight: 400;
        line-height: 128%;
    }

    section.partners {
        padding:48px 0;
    }

    section.contact {
        padding: 64px 0;
    }
    .cta-title {
        font-size: 24px;
    }
    .cta-content {
        gap: 32px;
    }
    .btn-cta {
        font-size:16px;
        font-weight: 700;
        line-height:140%;
        padding:16px 40px;
    }
}
