/**
 * Main Page Styles
 * 메인 페이지 전용 스타일
 */

/* ==========================================================================
   1. HERO SECTION (메인 비주얼)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 882px;
    margin-top: 78px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.hero-title {
    font-family: var(--font-main);
    font-size: 68px;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
    text-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
    margin-top: 1.2em;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: #FFFFFF;
    text-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
    display: none;
}

.hero-scroll {
    position: absolute;
    right: 60px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
}

.hero-scroll-text {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    margin-bottom: 10px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ==========================================================================
   2. BANNER SECTION (배너)
   ========================================================================== */
.banner-section {
    position: relative;
    margin-top: -97px;
    bottom: 50px;
    z-index: 2;
    display: none;
}

.banner-container {
    max-width: 1026px;
    margin: 0 auto;
    background: linear-gradient(90deg, #0068B7 0%, #3E9ADF 100%);
    border-radius: 10px;
    padding: 0 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.banner-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.banner-divider {
    width: 2px;
    height: 25px;
    background: rgba(255, 255, 255, 0.3);
}

.banner-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-title {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #FFFFFF;
}

.banner-links {
    display: flex;
    gap: 32px;
}

.banner-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.banner-link:hover {
    color: #FFFFFF;
}

.banner-link-icon {
    width: 9.75px;
    height: 7px;
}

.banner-logo {
    height: 97px;
}

.banner-logo img {
    height: 100%;
    width: auto;
}

/* ==========================================================================
   3. ABOUT US SECTION
   ========================================================================== */
.about-section {
    padding: 120px 0;
    padding-bottom: 0 !important;
    position: relative;
}

.about-label {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.about-text {
    flex: 1;
}

.about-title {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-black);
    margin-bottom: 40px;
    max-width: 600px;
    word-break: keep-all;
}

html[lang='en'] .about-title {
    font-size: 24px;
    max-width: 700px;
}

.about-bg-text {
    position: absolute;
    right: 0;
    top: 80px;
    font-family: 'Roboto', sans-serif;
    font-size: 130px;
    font-weight: 700;
    line-height: 1.01;
    color: rgba(42, 160, 249, 0.2);
    text-align: right;
    pointer-events: none;
}

/* ==========================================================================
   4. ABOUT SLIDER SECTION
   ========================================================================== */
.about-slider-section {
    padding: 60px 0 120px;
    position: relative;
}

.about-slider-container {
    display: flex;
    position: relative;
}

.about-slide-info {
    width: 575px;
    height: 760px;
    padding: 80px 70px;
    background: linear-gradient(166deg, #140D73 9.98%, #132185 100.03%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.about-slide-info-label {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 60px;
}

.about-slide-info-label span:first-child {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.about-slide-info-label .divider {
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
}

.about-slide-info-label span:last-child {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #FFFFFF;
}

.about-slide-logo {
    width: 408px;
    margin-bottom: 28px;
}

.about-slide-logo img {
    width: 100%;
    height: auto;
}

.about-slide-desc {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    color: #FFFFFF;
}

.about-slide-btns {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.about-slide-btn {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 300px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.about-slide-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.about-slide-btn svg {
    width: 14.75px;
    height: 12px;
}

.about-slide-images {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

.about-slide-image {
    width: 823px;
    height: 760px;
    object-fit: cover;
}

/* Shadow layers for depth effect */
.about-slide-info-shadow-1 {
    position: absolute;
    left: 14px;
    top: 14px;
    width: 575px;
    height: 760px;
    background: #254ECC;
    opacity: 0.8;
    z-index: 1;
}

.about-slide-info-shadow-2 {
    position: absolute;
    left: 28px;
    top: 28px;
    width: 575px;
    height: 760px;
    background: #3F75E0;
    opacity: 0.6;
    z-index: 0;
}

.about-slide-image-shadow-3 {
    position: absolute;
    right: -14px;
    top: 14px;
    width: 823px;
    height: 760px;
    background: #9ca7b5;
    opacity: 0.2;
    z-index: 1;
}

.about-slide-image-shadow-4 {
    position: absolute;
    right: -28px;
    top: 28px;
    width: 823px;
    height: 760px;
    background: #b9c2ce;
    opacity: 0.2;
    z-index: 0;
}

/* ==========================================================================
   5. PRODUCTS SECTION
   ========================================================================== */
.products-section {
    padding: 120px 0;
    position: relative;
    background: #F6F8FC;
    overflow: hidden;
}

.products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    mix-blend-mode: multiply;
}

.products-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-label {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-primary);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.products-title {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-black);
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.products-bg-text {
    position: absolute;
    right: -30px;
    bottom: -43px;
    font-family: 'Roboto', sans-serif;
    font-size: 171px;
    font-weight: 600;
    line-height: 1.2;
    color: rgba(0, 104, 183, 0.15);
    pointer-events: none;
    z-index: 0;
}

.products-swiper {
    position: relative;
    z-index: 1;
}

.products-swiper .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.5s ease;
}

.products-swiper .swiper-slide-active {
    opacity: 1 !important;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 46px;
}

.product-main-image {
    width: 620px;
    height: 498px;
    background: #FDFDFD;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-sub-image {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 620px;
    height: 498px;
    opacity: 0.5;
}

.product-sub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
    max-width: 604px;
}

.product-name {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-black);
    margin-bottom: 16px;
}

.product-desc {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: #2D333C;
    margin-bottom: 94px;
    word-break: keep-all;
}

.product-buttons {
    display: flex;
    gap: 12px;
}

html[lang='en'] .product-buttons .btn-cta-s {
    font-size: 14px;
}

html[lang='en'] .product-buttons .btn-cta-s .btn-arrow-icon {
    display: none;
}

.products-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    right: 240px;
    top: 200px;
    z-index: 2;
}

.products-nav-btn {
    width: 52px;
    height: 52px;
    border: 1px solid #2D333C;
    border-radius: 300px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.products-nav-btn:hover {
    background: #2D333C;
}

.products-nav-btn:hover svg path {
    stroke: #FFFFFF;
}

.products-nav-btn svg {
    width: 14.75px;
    height: 12px;
}

/* ==========================================================================
   6. PRODUCT HIGHLIGHT SECTION
   ========================================================================== */
.product-highlight-section {
    position: relative;
}

.product-highlight-image {
    position: absolute;
    left: 50%;
    top: 0;
    width: 980px;
    height: 960px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.07);
    transform: translateX(-100%);
}

.highlight-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.highlight-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.highlight-slide-img.active {
    opacity: 1;
}

.highlight-slide-btns {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.highlight-slide-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.highlight-slide-btn:hover {
    background: rgba(0,0,0,0.6);
}

.highlight-slide-btn svg {
    width: 15px;
    height: 12px;
}

.product-highlight-content {
    padding: 100px 0 100px calc((100% / 2) + 100px);
    min-height: 960px;
}
.product-highlight-text {
    max-width: 586px;
}

.product-highlight-gradient-text {
    font-family: 'Roboto', sans-serif;
    font-size: 68px;
    font-weight: 500;
    line-height: 1.25;
    background: linear-gradient(137.5deg, #0068B7 32%, #2AA0F9 84.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 300px;
}

.product-highlight-label {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.product-highlight-title {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-black);
    max-width: 600px;
    word-break: keep-all;
}

html[lang='en'] .product-highlight-title {
    font-size: 24px;
    max-width: 600px;
}

/* ==========================================================================
   7. APPLICATION SECTION (적용 분야)
   ========================================================================== */
.application-section {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.application-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    mix-blend-mode: multiply;
}

.application-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.application-section .container {
    display: flex;
    gap: 120px;
}

.application-header {
    flex: 0 0 auto;
    position: relative;
}

.application-title {
    font-family: var(--font-main);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-black);
    margin-bottom: 60px;
}

.application-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
    max-width: fit-content;
}

.application-buttons a:hover {
    background-color: #0068B7;
    border-color: #0068B7;
}

.application-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    bottom: 0;
}

.application-nav-btn {
    width: 52px;
    height: 52px;
    border: 1px solid #2D333C;
    border-radius: 300px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.application-nav-btn svg {
    width: 14.75px;
    height: 12px;
}

.application-nav-btn:hover {
    background: #2D333C;
}

.application-nav-btn:hover svg path {
    stroke: #FFFFFF;
}

.application-body {
    width: 1500px;
}

/* Application Swiper */
.application-swiper {
    width: 100%;
    overflow: hidden;
}

.application-swiper .swiper-slide {
    width: auto;
}

.application-card {
    position: relative;
}

.application-card-image {
    width: 100%;
    height: 551px;
    overflow: hidden;
}

.application-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.application-card-info {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-top: 18px;
    position: relative;
}

.application-card-number {
    font-family: 'Roboto', sans-serif;
    font-size: 77px;
    font-weight: 700;
    line-height: 1.25;
    color: #1299FF;
    position: absolute;
    right: -24px;
}

.application-card-title {
    padding-left: 14px;
    border-left: 1.5px solid #1B1B1B;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-black);
}

html[lang='en'] .application-card-title {
    font-size: 16px;
}

/* ==========================================================================
   8. GLOBAL MARKET SECTION
   ========================================================================== */
.global-section {
    position: relative;
}

.global-content-area {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 0;
    min-height: 910px;
}

.global-gradient-text {
    font-family: 'Roboto', sans-serif;
    font-size: 68px;
    font-weight: 500;
    line-height: 1.25;
    background: linear-gradient(151.34deg, #0068B7 32%, #2AA0F9 84.75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 280px;
}

.global-content {
    display: flex;
    gap: 120px;
}

.global-text {
    flex: 1;
}

.global-label {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.global-title {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-black);
    max-width: 600px;
    word-break: keep-all;
}

html[lang='en'] .global-title {
    font-size: 24px;
    max-width: 600px;
}

.global-image-area {
    position: absolute;
    right: 50%;
    top: 0;
    width: 980px;
    height: 910px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.07);
    transform: translateX(100%);
}

.global-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-timeline {
    position: absolute;
    left: 50%;
    top: 600px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    width: 900px;
}

.timeline-year {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
    color: #FFFFFF;
}

.timeline-text {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: #FFFFFF;
}

/* ==========================================================================
   9. IMPORT SECTION (수입 판매)
   ========================================================================== */
.import-section {
    position: relative;
    height: 371px;
}

.import-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.import-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.import-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 240px;
    max-width: 1920px;
    margin: 0 auto;
}

.import-title {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4;
    color: #FFFFFF;
}

html[lang='en'] .import-title {
    max-width: 700px;
}

/* ==========================================================================
   10. INQUIRY SECTION (상담 및 견적 문의)
   ========================================================================== */
.inquiry-section {
    padding: 120px 0;
    position: relative;
}

.inquiry-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.inquiry-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inquiry-content {
    display: flex;
    gap: 0;
    position: relative;
    z-index: 1;
}

.inquiry-left {
    flex: 0 0 48%;
}

.inquiry-label {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--color-primary);
    margin-bottom: 36px;
}

.inquiry-title {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-black);
    margin-bottom: 260px;
}

html[lang='en'] .inquiry-title {
    font-size: 24px;
    max-width: 500px;
}

.inquiry-contact-box {
    background: #F6F8FC;
    border-radius: 10px;
    padding: 31px 40px;
    width: 390px;
}

.inquiry-contact-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 22px;
}

.inquiry-contact-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 140px;
}

.inquiry-contact-tag::before {
    content: '';
    width: 3px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 50%;
}

.inquiry-contact-tag span {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-primary);
}

html[lang='en'] .inquiry-contact-tag span {
    font-size: 16px;
}

.inquiry-contact-divider {
    width: 100%;
    height: 1px;
    background: #E2E8F0;
    margin-bottom: 22px;
}

.inquiry-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.inquiry-contact-row {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    line-height: 1.5;
}

.inquiry-contact-row dt {
    width: 60px;
    font-weight: 400;
    color: #848D9A;
}

.inquiry-contact-row dd {
    font-weight: 400;
    color: #2D333C;
}

.inquiry-right {
    flex: 1;
}

/* Inquiry Form - 메인 페이지 전용 레이아웃 */
.inquiry-form {
    padding: 10px 0 10px 40px;
    border-left: 1px solid #1B1B1B;
    max-width: 740px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inquiry-form .form-textarea {
    min-height: 110px;
}

.inquiry-form .form-terms {
    justify-content: space-between;
}

.inquiry-form .btn-terms-view {
    font-size: 14px;
}

.inquiry-form .form-submit {
    margin-top: 48px;
    text-align: center;
}

/* ==========================================================================
   11. CUSTOMER SUPPORT SECTION
   ========================================================================== */
.support-section {
    position: relative;
    margin-bottom: 60px;
}

.support-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1600px;
    height: 472px;
    border-radius: 10px;
    overflow: hidden;
}

.support-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 100px;
    padding: 72px 0;
}

.support-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.support-title {
    font-family: 'Roboto', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

.support-cards {
    display: flex;
    gap: 40px;
}

.support-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    min-width: 148px;
}

.support-card-icon {
    width: 148px;
    height: 148px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-card-icon img,
.support-card-icon svg {
    width: 60px;
    height: 60px;
}

.support-card-text {
    text-align: center;
    color: #FFFFFF;
}

.support-card-title {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 4px;
}

.support-card-desc {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 200px;
    word-break: keep-all;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media screen and (max-width: 1440px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }

    .about-bg-text {
        font-size: 80px;
        top: 40px;
    }

    .products-bg-text {
        display: none;
    }

    .product-highlight-image,
    .global-image-area {
        width: 800px;
        height: 800px;
    }

    .product-highlight-content {
        padding: 80px 0 80px calc((100% / 2) + 80px);
        min-height: 800px;
    }

    .global-image-area {
        height: 800px;
    }

    .global-content-area {
        min-height: 800px;
    }
}

@media screen and (max-width: 1400px) {
    .hero-title {
        font-size: 52px;
    }

    .about-slider-container {
        flex-direction: column;
    }

    .about-slide-info {
        width: 100%;
    }

    .about-slide-images {
        position: relative;
        left: 0;
    }

    .about-slide-image {
        width: 100%;
        height: 600px;
    }

    .about-slide-info-shadow-1,
    .about-slide-info-shadow-2,
    .about-slide-image-shadow-3,
    .about-slide-image-shadow-4 {
        display: none;
    }

    .product-highlight-image,
    .global-image-area {
        width: 700px;
        height: 700px;
    }

    .product-highlight-content {
        padding: 60px 0 60px calc((100% / 2) + 60px);
        min-height: 700px;
    }

    .product-highlight-gradient-text {
        font-size: 56px;
        margin-bottom: 200px;
    }

    .global-gradient-text {
        font-size: 56px;
        margin-bottom: 200px;
    }

    .global-content-area {
        min-height: 700px;
    }

    .support-bg {
        width: 1200px;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-section {
        height: 700px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .banner-section {
        margin-top: -80px;
    }

    .banner-container {
        padding: 30px;
    }

    .banner-title {
        font-size: 15px;
    }

    .banner-links {
        gap: 20px;
    }

    .banner-link {
        font-size: 13px;
    }

    .about-section,
    .products-section,
    .application-section {
        padding: 80px 0;
    }

    .about-title,
    .products-title,
    .inquiry-title,
    .global-title,
    .product-highlight-title {
        font-size: 28px;
    }

    .about-slider-section {
        padding: 60px 0 80px;
    }

    .about-slide-info {
        height: auto;
        padding: 60px 50px;
    }

    .about-slide-logo {
        width: 100%;
        max-width: 350px;
    }

    .about-slide-desc {
        font-size: 20px;
    }

    .product-card {
        gap: 30px;
    }

    .product-main-image {
        width: 500px;
        height: 400px;
    }

    .product-name {
        font-size: 28px;
    }

    .product-desc {
        font-size: 16px;
        margin-bottom: 60px;
    }

    .products-nav {
        right: 30px;
        top: 150px;
    }

    .product-highlight-section,
    .global-section {
        display: block;
    }

    .product-highlight-image,
    .global-image-area {
        position: relative;
        left: inherit;
        right: inherit;
        width: 100%;
        height: 500px;
        margin-bottom: 60px;
        transform: inherit;
    }

    .product-highlight-content {
        padding: 0 15px;
        min-height: auto;
    }

    .product-highlight-text {
        max-width: 100%;
    }

    .product-highlight-gradient-text {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .global-content-area {
        min-height: auto;
        padding: 60px 15px;
    }

    .global-gradient-text {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .global-timeline {
        top: auto;
        bottom: 40px;
    }

    .timeline-item {
        width: 100%;
    }

    .application-section .container {
        gap: 60px;
    }

    .application-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .application-body {
        width: 100%;
    }

    .application-card-image {
        height: 400px;
    }

    .import-section {
        height: auto;
        padding: 60px 0;
    }

    .import-content {
        padding: 0 60px;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .import-title {
        font-size: 28px;
    }

    .inquiry-section {
        padding: 80px 0;
    }

    .inquiry-content {
        flex-direction: column;
        gap: 60px;
    }

    .inquiry-left {
        flex: 1;
    }

    .inquiry-title {
        margin-bottom: 60px;
    }

    .inquiry-contact-box {
        width: 100%;
        max-width: 500px;
    }

    .inquiry-form {
        padding: 10px 0;
        border-left: none;
        border-top: 1px solid #1B1B1B;
        padding-top: 30px;
        max-width: 100%;
    }

    .support-section {
        margin-bottom: 40px;
    }

    .support-bg {
        width: 90%;
        height: 100%;
    }

    .support-content {
        flex-direction: column;
        align-items: center;
        padding: 60px 0;
        gap: 60px;
    }

    .support-title {
        font-size: 52px;
        text-align: center;
    }

    .support-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .support-card {
        min-width: 130px;
    }

    .support-card-icon {
        width: 130px;
        height: 130px;
    }

    .support-card-icon img,
    .support-card-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-section {
        height: 500px;
        margin-top: 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .banner-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        max-width: 90%;
    }

    .banner-divider {
        display: none;
    }

    .banner-title {
        font-size: 14px;
    }

    .banner-text-wrap {
        gap: 15px;
    }

    .banner-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    .banner-link {
        font-size: 12px;
    }

    .banner-logo {
        display: none;
    }

    .about-section,
    .products-section,
    .application-section,
    .inquiry-section {
        padding: 60px 0;
    }

    .about-label,
    .products-label,
    .inquiry-label,
    .global-label,
    .product-highlight-label {
        font-size: 14px;
    }

    .about-title,
    .products-title,
    .inquiry-title,
    .global-title,
    .product-highlight-title,
    .import-title {
        font-size: 24px;
    }

    .about-bg-text {
        font-size: 60px;
        top: 20px;
    }

    .about-slider-section {
        padding: 40px 0 60px;
    }

    .about-slide-info {
        padding: 40px 30px;
    }

    .about-slide-info-label {
        margin-bottom: 40px;
    }

    .about-slide-logo {
        max-width: 280px;
        margin-bottom: 20px;
    }

    .about-slide-desc {
        font-size: 18px;
    }

    .about-slide-btn {
        width: 48px;
        height: 48px;
    }

    .about-slide-image {
        height: 400px;
    }

    .products-title {
        margin-bottom: 40px;
    }

    .product-card {
        flex-direction: column;
        gap: 30px;
    }

    .product-main-image {
        width: 100%;
        height: 350px;
    }

    .product-name {
        font-size: 24px;
    }

    .product-desc {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .product-buttons {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .products-nav {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 30px;
        justify-content: center;
    }

    .product-highlight-image,
    .global-image-area {
        height: 400px;
        margin-bottom: 40px;
    }

    .product-highlight-gradient-text,
    .global-gradient-text {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .global-content-area {
        padding: 40px 15px;
    }

    .timeline-item {
        padding: 12px 0;
    }

    .timeline-year {
        font-size: 28px;
    }

    .timeline-text {
        font-size: 16px;
    }

    .application-section .container {
        flex-direction: column;
        gap: 40px;
    }

    .application-header {
        width: 100%;
    }

    .application-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .application-buttons {
        gap: 10px;
    }

    .application-nav {
        position: relative;
        margin-top: 30px;
    }

    .application-card-image {
        height: 300px;
    }

    .application-card-number {
        font-size: 60px;
    }

    .application-card-title {
        font-size: 18px;
    }

    .import-section {
        padding: 40px 0;
    }

    .import-content {
        padding: 0 20px;
        gap: 24px;
    }

    .import-title {
        font-size: 22px;
    }

    .inquiry-content {
        gap: 40px;
    }

    .inquiry-label {
        margin-bottom: 20px;
    }

    .inquiry-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .inquiry-contact-box {
        padding: 24px 30px;
    }

    .inquiry-contact-tag {
        width: 120px;
    }

    .inquiry-contact-tag span {
        font-size: 16px;
    }

    .inquiry-contact-row {
        font-size: 13px;
    }

    .inquiry-contact-row dt {
        width: 45px;
    }

    .support-section {
        margin-bottom: 30px;
    }

    .support-content {
        padding: 50px 0;
        gap: 40px;
    }

    .support-title {
        font-size: 40px;
    }

    .support-cards {
        gap: 24px;
    }

    .support-card {
        flex: 0 0 calc(50% - 12px);
        min-width: auto;
    }

    .support-card-icon {
        width: 110px;
        height: 110px;
    }

    .support-card-icon img,
    .support-card-icon svg {
        width: 44px;
        height: 44px;
    }

    .support-card-title {
        font-size: 18px;
    }

    .support-card-desc {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        height: 450px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        word-break: keep-all;
    }

    .banner-container {
        padding: 16px;
    }

    .banner-title {
        font-size: 13px;
    }

    .banner-links {
        gap: 10px;
    }

    .banner-link {
        font-size: 11px;
    }

    .about-section,
    .products-section,
    .application-section,
    .inquiry-section {
        padding: 40px 0;
    }

    .about-title,
    .products-title,
    .inquiry-title,
    .global-title,
    .product-highlight-title,
    .import-title {
        font-size: 20px;
    }

    .about-bg-text {
        display: none;
    }

    .about-slider-section {
        padding: 30px 0 40px;
    }

    .about-slide-info {
        padding: 30px 20px;
    }

    .about-slide-logo {
        max-width: 240px;
    }

    .about-slide-desc {
        font-size: 16px;
    }

    .product-main-image {
        height: 280px;
    }

    .product-name {
        font-size: 20px;
    }

    .product-desc {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .product-highlight-gradient-text,
    .global-gradient-text {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .product-highlight-image,
    .global-image-area {
        height: 300px;
    }

    .timeline-year {
        font-size: 24px;
    }

    .timeline-text {
        font-size: 14px;
    }

    .application-title {
        font-size: 22px;
    }

    .application-body .swiper-slide {
        max-width: 240px;
    }

    .application-card-image {
        height: 250px;
    }

    .application-card-number {
        font-size: 50px;
    }

    .application-card-title {
        font-size: 16px;
    }

    .import-title {
        font-size: 20px;
    }

    .inquiry-contact-box {
        padding: 20px 24px;
    }

    .inquiry-contact-tag {
        width: 100px;
    }

    .inquiry-contact-tag span {
        font-size: 14px;
    }

    .inquiry-form .form-submit {
        margin-top: 15px;
        text-align: left;
    }

    .support-title {
        font-size: 32px;
    }

    .support-card {
        flex: 0 0 100%;
    }

    .support-card-icon {
        width: 100px;
        height: 100px;
    }

    .support-card-icon img,
    .support-card-icon svg {
        width: 40px;
        height: 40px;
    }

    .support-card-title {
        font-size: 16px;
    }

    .support-card-desc {
        font-size: 13px;
    }
}
