/* ========================================
   CSS Variables & Reset
   ======================================== */

:root {
    /* Colors */
    --c-bg: #FFFFFF;
    --c-text: #111827;
    --c-muted: #444;
    --c-navy: #0B1B3A;
    --c-primary: #E11D48;
    --c-accent: #22C55E;
    --c-border: #E5E7EB;
    --c-gray-50: #F9FAFB;
    --c-gray-100: #F3F4F6;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Typography */
    --font-sans: "Poppins", "Pretendard", -apple-system, BlinkMacSystemFont, "Malgun Gothic", "맑은 고딕", "Segoe UI", Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Poppins", "Pretendard", sans-serif;
}

body {
    font-family: "Poppins", "Pretendard", sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--c-text);
    background-color: var(--c-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ========================================
   Layout Utilities
   ======================================== */

.container {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-3xl) 0;
}

.section--gray {
    background-color: var(--c-gray-50);
}

.section--navy {
    background-color: var(--c-navy);
    color: var(--c-bg);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section__title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: inherit;
}

.section__subtitle {
    font-size: var(--font-size-lg);
    color: var(--c-muted);
}

.section--navy .section__subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
}

.btn--large {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-lg);
}

.btn--full {
    width: 100%;
}

.btn--primary {
    background-color: var(--c-primary);
    color: var(--c-bg);
}

.btn--primary:hover {
    background-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}


.btn--secondary {
    background-color: var(--c-bg);
    color: var(--c-navy);
}

.btn--secondary:hover {
    background-color: var(--c-gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--accent {
    background-color: var(--c-accent);
    color: var(--c-bg);
}

.btn--accent:hover {
    background-color: #16A34A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background-color: transparent;
    border: 2px solid var(--c-primary);
    color: var(--c-primary);
}

.btn--outline:hover {
    background-color: var(--c-primary);
    color: var(--c-bg);
}

/* ========================================
   Header
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    color: #fff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.site-header.is-solid {
    background-color: #fff;
    color: #111;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px; /* Fixed height for consistency */
}

/* 
   Header Container Override:
   PC에서는 100% 폭에 좌우 30px 패딩 사용
*/
.site-header .container {
    max-width: none;
    width: 100%;
    padding: 0 30px;
}

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header__logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Legacy text styles (kept for fallback) */
.logo__text {
    font-size: var(--font-size-2xl);
    line-height: 1;
    transition: color 0.3s ease;
}

.logo__sub {
    font-size: var(--font-size-xs);
    letter-spacing: 0.1em;
    opacity: 0.8;
    transition: color 0.3s ease;
}

/* PC Nav */
.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    gap: var(--space-lg);
}

.nav__item {
    position: relative;
}

.nav__link {
    display: block;
    padding: var(--space-sm);
    font-weight: 600;
    color: inherit; /* Inherit from header color */
    position: relative;
    font-size:1.2rem;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--c-primary);
    transition: width 0.3s ease;
}

.site-header.is-solid .nav__link:hover {
    color: var(--c-primary);
}

.site-header.is-solid .nav__link:hover::after {
    width: 100%;
}

.nav__submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #fff;
    box-shadow: var(--shadow-lg);
    border-radius: 6px;
    padding: var(--space-sm) 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    color: #111; /* Always dark text in submenu */
}

.nav__item:hover .nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav__submenu li {
    padding: 0;
}

.nav__submenu a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
    color: #333;
    white-space: nowrap;
    font-size:1rem;
}

.nav__submenu a:hover {
    background-color: var(--c-gray-100);
    color: var(--c-primary);
}

.header__cta {
    flex-shrink: 0;
}

.header__inquiryBtn {
    margin-right: var(--space-md);
    flex-shrink: 0;
}

.header__global {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-shrink: 0;
}

.header__global-link {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header__global-link:hover,
.header__global-link.active {
    color: var(--c-primary);
}

.header__global-divider {
    color: inherit;
    opacity: 0.5;
    font-size: var(--font-size-sm);
}
@media (max-width: 1280px) {
    .nav__link {
        font-size:1rem;
        padding: var(--space-sm) 0;
    }
}
/* Hide PC global menu on mobile */
@media (max-width: 1023px) {
    .header__inquiryBtn {
        display: none !important;
    }
    
    .header__global {
        display: none !important;
    }
}

/* Menu Toggle (Burger) */
.header__menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001; /* Ensure above everything if needed */
}

.header__menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor; /* Inherit from header */
    transition: all 0.3s ease;
}

/* Burger Animation when menu open */
.site-header.is-menu-open .header__menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-header.is-menu-open .header__menu-toggle span:nth-child(2) {
    opacity: 0;
}
.site-header.is-menu-open .header__menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   Mobile Menu (Off-canvas)
   ======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw; /* Full width */
    max-width: none;
    height: 100vh; /* Fallback */
    height: 100dvh;
    background-color: #111; /* Dark theme */
    color: #fff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
	flex-direction: column;
	box-shadow: none;
	visibility: hidden;
	overflow: hidden; /* Parent container - no scroll, let child handle it */
}

.mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-sm);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.mobile-menu__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mobile-menu__logo img {
    height: 32px;
    width: auto;
    transition: opacity 0.3s ease;
}

.mobile-menu__close {
    color: #fff;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__content {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg) var(--space-sm);
}

.mobile-nav {
    list-style: none;
}

.mobile-nav__item {
    margin-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: var(--space-sm);
}

.mobile-nav__link {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
}

.mobile-nav__submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,0.2);
    margin-top: 0.5rem;
}

.mobile-nav__item.is-active .mobile-nav__submenu {
    max-height: 500px; /* Adjust as needed */
    margin-bottom: var(--space-md);
}

.mobile-nav__submenu li {
    margin-bottom: 0.5rem;
}

.mobile-nav__submenu a {
    display: block;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    padding: 5px 0;
    transition: color 0.2s;
}

.mobile-nav__submenu a:hover {
    color: var(--c-primary);
}

.mobile-menu__footer {
    padding: var(--space-md) var(--space-sm);
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.mobile-contact-btn {
    background-color: var(--c-primary) !important; /* Lime color from image */
    color: #fff !important;
    font-weight: 800;
    border: none;
}

.mobile__inquiryBtn {
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
}

.mobile-menu__global {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
}

.mobile-menu__global-link {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu__global-link:hover {
    color: var(--c-primary);
}

.mobile-menu__global-divider {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-base);
}

/* Body Scroll Lock Styles */
html.no-scroll,
body.no-scroll {
    overflow: hidden;
    height: 100%;
}

body.no-scroll {
    position: fixed; /* iOS scroll lock fix */
    width: 100%;
    left: 0;
}

/* Backdrop - optional (hidden since menu is full width) */
.mobile-menu-backdrop {
    display: none;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--c-navy);
}

.hero__slider {
    position: relative;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #111; /* Fallback color when image is missing */
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

.hero__slide--active {
    opacity: 1;
    visibility: visible;
}

/* New Centered Ribbon Layout */
.heroContent {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.heroRibbon {
    padding: clamp(18px, 2.2vw, 30px) clamp(22px, 4vw, 48px);
    width: 100%;
    border-radius: 2px;
    /* backdrop-filter: blur(3px); */
    animation: fadeInUp 1s ease forwards;
}

.heroTitle {
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
    font-size: clamp(28px, 3.6vw, 58px);
    margin: 0;
    word-break: keep-all;
}

.heroDotChar {
    position: relative;
    display: inline-block;
}

.heroDotChar::before {
    content: '';
    position: absolute;
    top: clamp(-8px, -0.8vw, -12px);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(4px, 0.4vw, 6px);
    height: clamp(4px, 0.4vw, 6px);
    background-color: #fff;
    border-radius: 50%;
}

.heroSubBrand {
    margin: 15px 0 0;
    font-size: clamp(13px, 1.5vw, 20px);
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    font-weight: 600;
}

/* 4. Circular Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 4%;
    left: 2%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* 5. Pagination Dots */
.hero__dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero__dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.hero__dot--active {
    background-color: #fff;
    transform: scale(1.2);
    border-color: #fff;
}

.hero__scroll:hover {
    transform: scale(1.1);
}

.hero__scroll-ring {
    width: 100%;
    height: 100%;
    fill: transparent;
    animation: rotateText 20s linear infinite;
}

.hero__scroll-text textPath {
    fill: var(--c-bg);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-pill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #E11D48; /* Red Pill color */
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* ========================================
   Technology & Quality Section
   ======================================== */

.tech-quality {
    background-color: #ffffff;
    padding: clamp(90px, 12vw, 160px) 0;
}

.tech__wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 20px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 2rem);
    align-items: flex-start;
}

/* Left Section */
.tech__left {
    position: sticky;
    top: 120px;
    padding-right: 10rem;
}

.tech__main-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.tech__main-desc {
    font-size: clamp(14px, 1.3vw, 16px);
    color: #222;
    line-height: 1.7;
    margin-bottom:2rem;
}

/* Right Section */
.tech__right {
    display: flex;
    flex-direction: column;
}

.tech__content {
    padding-bottom: 48px;
    border-bottom: 1px solid #E5E7EB;
}

.tech__title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
}

.tech__desc {
    font-size: clamp(14px, 1.4vw, 14px);
    color: #222;
    line-height: 1.75;
}

.tech__checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tech__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: clamp(12px, 1.2vw, 14px);
    color: #111827;
    line-height: 1.6;
}

.tech__checklist li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--c-primary);
}

/* Tech Links */
.tech__links {
    display: flex;
    flex-direction: column;
}

.tech__link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    border-bottom: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech__link-item:hover {
    padding-left: 12px;
}

.tech__link-title {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
    color: #111827;
    transition: color 0.3s ease;
}

.tech__link-item:hover .tech__link-title {
    color:var(--c-primary);
}

.tech__link-item svg {
    flex-shrink: 0;
    color: #111827;
    transition: all 0.3s ease;
}

.tech__link-item:hover svg {
    color:var(--c-primary);
    transform: translateX(6px);
}

/* ========================================
   Hiring Tiles Section
   ======================================== */

.hiring-tiles {
    background-color: #f9f9f9;
    padding: 0;
    overflow: hidden;
}

.hiring-tiles__header {
    padding: clamp(80px, 10vw, 160px) 0 clamp(60px, 8vw, 80px);
}

.hiring-tiles__title {
    font-size: clamp(28px, 6vw, 80px);
    font-weight: 800;
    color: #111827;
    margin: 0 0 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hiring-tiles__desc {
    font-size: clamp(14px, 1.3vw, 18px);
    color: #222;
    line-height: 1.7;
    max-width: 680px;
    margin: 0;
}

.hiring-tiles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100vw;
    margin: 0;
}

.hiring-tile {
    position: relative;
    height: clamp(480px, 55vw, 64vh);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.hiring-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 50%, transparent 100%);
    transition: all 0.2s ease;
}

.hiring-tile:hover .hiring-tile__overlay {
    background: var(--c-primary);
    opacity: 0.9;
}

.hiring-tile__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(20px, 3vw, 50px) clamp(15px, 2vw, 40px);
    z-index: 2;
    color: #ffffff;
}

.hiring-tile__card-sub-title {
    display:block;
    font-size: clamp(12px, 1.2vw, 14px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin:0 0 clamp(5px, 5vw, 10px);
}

.hiring-tile__card-title {
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.hiring-tile__card-desc {
    font-size: clamp(13px, 1.2vw, 16px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 20px;
    max-width: 90%;
}

.hiring-tile__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.2s ease;
}

.hiring-tile__link svg {
    transition: transform 0.2s ease;
}

.hiring-tile:hover .hiring-tile__link {
    gap: 8px;
    color: #ffffff;
}

.hiring-tile:hover .hiring-tile__link svg {
    transform: translate(2px, -2px);
}

/* Tablet */
@media (max-width: 1023px) {
    .hiring-tiles__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hiring-tile:nth-child(3) {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hiring-tiles__header {
        padding: 60px 0 40px;
    }
    
    .hiring-tiles__desc br {
        display: none;
    }
    
    .hiring-tiles__grid {
        grid-template-columns: 1fr;
    }
    
    .hiring-tile {
        height: 360px;
    }
    
    .hiring-tile:nth-child(3) {
        grid-column: auto;
    }
    .hiring-tile__card-sub-title {
        margin:0 0 clamp(5px, 5vw, 5px);
    }
}

/* ========================================
   Sustainability Section
   ======================================== */

.main-sus {
    background-color: #f9f9f9;
    padding: clamp(80px, 10vw, 160px) 0;
}

.main-sus__inner {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.main-sus__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.main-sus__title {
    font-size: clamp(28px, 6vw, 80px);
    font-weight: 800;
    color: #111827;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom:clamp(20px, 4vw, 40px);
}

.main-sus__link {
    font-size: clamp(14px, 1.2vw, 16px);
    color: #111827;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.main-sus__link:hover {
    color: var(--c-primary);
    gap: 12px;
}

.main-sus__arrow {
    font-size: 1.2em;
}

.main-sus__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.main-sus__card {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1.8;
}

.main-sus__card:hover .main-sus__card-bg {
    transform: scale(1.1);
}

.main-sus__card--lg {
    grid-row: 1 / 3;
    aspect-ratio: auto;
    min-height: 100%;
}

.main-sus__card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #F3F4F6;
    transition: transform 1s ease;
}

.main-sus__card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    transition: background 0.3s ease;
}

.main-sus__card:hover .main-sus__card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.main-sus__card-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(24px, 3vw, 40px);
    z-index: 2;
}

.main-sus__card-txt h3 {
    font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}

.main-sus__card-txt p {
    font-size: clamp(13px, 1.2vw, 16px);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
}

.main-sus__card-ico {
    position: absolute;
    bottom: clamp(24px, 3vw, 40px);
    right: clamp(24px, 3vw, 40px);
    font-size: clamp(14px, 2vw, 14px);
    color: #fff;
    z-index: 3;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.main-sus__card:hover .main-sus__card-ico svg {
    transform: translate(4px, -4px);
}

/* Tablet */
@media (max-width: 1024px) {
    .main-sus__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-sus__card {
        aspect-ratio: 2.5;
        width:100%;
    }
    .main-sus__head {
        flex-direction: column;
        align-items: flex-start;
        aspect-ratio: auto;
        margin-bottom:20px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .main-sus {
        padding: clamp(80px, 8vw, 80px) 0;
    }
    .main-sus__card {
        aspect-ratio: 1;
        width:100%;
    }
    .main-sus__head {
        margin-bottom: 10px;
        aspect-ratio: auto;
    }

    .main-sus__grid {
        gap: 16px;
    }

    .main-sus__card-txt {
        padding: 15px;
    }

    .main-sus__card-ico {
        position:relative;
        bottom: auto;
        right:auto;
        margin-top: 10px;
    }
}

/* ========================================
   News & Resources Section
   ======================================== */

/* News Section */
.news-section {
    background-color: #fff;
    padding: clamp(80px, 10vw, 160px) 0;
}

.news__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: clamp(20px, 6vw, 80px);
}

.news__header-left {
    flex: 1;
}

.news__title {
    font-size: clamp(28px, 6vw, 80px);
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom:clamp(10px, 3vw, 20px);
}

.news__subtitle {
    font-size: clamp(14px, 1.3vw, 18px)
    color: #222;
    line-height: 1.6;
    margin: 0;
}

.news__header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.news__nav-buttons {
    display: flex;
    gap: 6px;
}

@media (max-width: 600px) {
    .news__nav-buttons {
        display: none;
    }
}

.news__nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background-color: #fff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news__nav-btn:hover {
    background-color: #F3F4F6;
    border-color: #D1D5DB;
}

.news__nav-btn.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}


.news__cards-wrapper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 2rem;
}

.news__cards {
    display: flex;
}

.news-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    height: auto;
    border-radius: 12px;
}

.news-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-card__image {
    width: 100%;
    padding-top: 65%;
    background-size: cover;
    background-position: center;
    background-color: #F3F4F6;
}

.news-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.news-card__title {
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__desc {
    font-size: clamp(13px, 1.2vw, 16px);
    color: #222;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__date {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 500;
    margin-top: auto;
}

.news-item__title {
    flex: 1;
    font-size: var(--font-size-base);
}

.news-item__date {
    font-size: var(--font-size-sm);
    color: var(--c-muted);
    flex-shrink: 0;
}

.news-box__link {
    display: inline-block;
    color: var(--c-primary);
    font-weight: 600;
}

.news-box__link:hover {
    text-decoration: underline;
}

/* ========================================
   Inquiry CTA (Renewal)
   ======================================== */

.inquiry-cta {
    --cta-bg-image: url('../../image/main/cta_bg.jpg');
    
    position: relative;
    height: clamp(260px, 50vw, 480px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiry-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--cta-bg-image);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.inquiry-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.inquiry-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.inquiry-cta__title {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.inquiry-cta__subtitle {
    font-size: clamp(14px, 1.6vw, 16px);
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px;
    line-height: 1.6;
}

.inquiry-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px 8px 20px;
    background-color: var(--c-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}


.inquiry-cta__btn-text {
    white-space: nowrap;
}

.inquiry-cta__btn-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    color: var(--c-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.inquiry-cta__btn:hover .inquiry-cta__btn-badge {
    transform: translate(2px, -2px);
}

@media (max-width: 768px) {
    .inquiry-cta {
        height: clamp(260px, 60vw, 340px);
    }
    
    .inquiry-cta__title {
        font-size: 34px;
    }
    
    .inquiry-cta__subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .inquiry-cta__btn {
        padding: 10px 12px 10px 20px;
        font-size: 12px;
        justify-content: space-between;
    }
    
    .inquiry-cta__btn-badge {
        width: 28px;
        height: 28px;
    }
    
    .inquiry-cta__btn-badge svg {
        width: 14px;
        height: 14px;
    }
    .inquiry-cta__bg {
        background-attachment:unset;
    }
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background-color: #f9f9f9;
    color: #000;
    padding: 80px 0 60px;
}

.footer__container {
    max-width: 1640px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.footer__bottom{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer__logo img {
    height: 30px;
    width: auto;
}
.logo__text {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.logo__sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
}

.footer__nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer__link {
    font-size: 14px;
    font-weight:600;
    color: rgba(0, 0, 0, 0.8);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.footer__link:hover {
    color: var(--c-primary);
    text-decoration: underline;
}

.footer__social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer__social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.7);
    transition: all 0.2s ease;
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}
.footer__social-link i {
    font-size: clamp(20px, 1.6vw, 24px);
    display: block;
    flex-shrink: 0;
}

.footer__social-link:hover {
    color: var(--c-primary);
}

.footer__divider {
    display: none;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__company-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.footer__company-details {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.75);
    margin: 0;
}

.footer__copyright {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.55);
    margin: 8px 0 0;
}

/* ========================================
   Animations
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet: 768px ~ 1199px */
@media (max-width: 1199px) {
    .section__title {
        font-size: var(--font-size-3xl);
    }
    
    .hero__left-title span,
    .hero__right-title span {
        font-size: 3.5rem; /* Slightly smaller on tablet */
    }

    .hero__right-title {
        max-width: 50%; /* Force wrap if needed */
    }
    
}

/* Tablet & Mobile: < 1024px */
@media (max-width: 1023px) {
    :root {
        --space-3xl: 4rem; /* Adjust spacing for tablet */
    }

    /* Header Color & Style Enforcement (Tablet & Mobile) */
    .site-header {
        background-color: #fff !important;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    }

    .site-header .container {
        padding: 0 20px; /* Tablet Padding */
    }

    /* Force dark text for all header elements */
    .site-header *,
    .logo__text,
    .logo__sub,
    .nav__link,
    .header__logo {
        color: #111 !important;
    }

    /* Force dark burger menu lines */
    .header__menu-toggle span {
        background-color: #111 !important;
    }

    /* Header & Nav */
    .header__nav {
        display: none; /* Hide PC Nav */
    }
    
    .header__cta {
        display: none; /* Hide CTA */
    }
    
    .header__menu-toggle {
        display: flex; /* Show Burger */
    }
    
    /* Logo size adjustment for tablet */
    .header__logo img {
        height: 36px;
    }

    /* Hero adjustments for tablet - Center Text */
    .heroContent {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .heroRibbon {
        width: min(680px, 92vw);
        text-align: center;
    }
    
    .heroTitle,
    .heroSubBrand {
        text-align: center;
    }
    
    .tech__left  {
        padding-right:4rem;
    }
    .tech__left br {
        display: none;
    }
}

/* Mobile Specific: < 768px */
@media (max-width: 767px) {
    :root {
        --space-3xl: 3rem;
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .site-header .container {
        padding: 0 15px; /* Mobile Padding override */
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    /* Logo size adjustment for mobile */
    .header__logo img {
        height: 32px;
    }
    
    /* Hero Mobile Adjustments - Center Text */
    .hero {
        height: 100vh;
        min-height: 760px;
    }
    
    .heroContent {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .heroRibbon {
        width: 94vw; /* Slightly wider on mobile */
        padding: 24px 20px;
        text-align: center;
    }
    
    .heroTitle,
    .heroSubBrand {
        text-align: center;
    }

    .hero__scroll {
        width: 80px;
        height: 80px;
        bottom: 30px;
        left: 20px;
    }

    .hero__scroll-text textPath {
        font-size: 13px;
    }

    .hero__scroll-pill {
        font-size: 9px;
        padding: 4px 8px;
    }
    
    /* Tech & Quality */
    .tech__wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech__left {
        position: static;
        padding-right:0;
    }
    
    .tech__main-title {
        font-size: 28px;
        margin-bottom:1rem;
    }
    .tech__main-desc {
        margin-bottom:1rem;
    }
    .tech__links {
        gap: 0;
    }
    
    .tech__link-item {
        padding: 20px 0;
    }
    .tech__content {
        padding-bottom:2rem;
    }
    
    /* News */
    .news__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .news__header-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .news__more-link {
        width: 100%;
        justify-content: space-between;
    }
    .news-card__content {
        padding: 15px;
    }
    
    /* News */
    .news-resources__grid {
        grid-template-columns: 1fr;
    }
    
    .news-item a {
        flex-wrap: wrap;
    }
    
    .news-item__date {
        width: 100%;
        margin-top: var(--space-xs);
    }
    
    
    /* Footer */
    .footer {
        padding: 48px 0 36px;
    }

    .footer__container {
        padding: 0 15px;
    }

    .footer__top {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
    .footer__bottom{
        flex-direction: column;
        gap:1rem;
    }
    
    .footer__nav {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .footer__social {
        gap: 10px;
    }

    .footer__company-details {
        font-size: 13px;
        line-height: 1.8;
    }
    .footer__company-details .line,
    .footer__company-details br {
        display: none;
    }
    .footer__company-details span {
        display: block;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .section__title {
        font-size: var(--font-size-2xl);
    }
    
    .hero__title {
        font-size: var(--font-size-2xl);
    }
    
    .stat-card__value {
        font-size: var(--font-size-2xl);
    }
    
}

/* ========================================
   About Section (Renewal)
   ======================================== */
.aboutSec{
  position: relative;
  padding: clamp(90px, 12vw, 360px) 0;
  overflow: hidden;
}
.aboutBg{
  position: absolute;
  width:100%;
  left:0;
  top:50%;
  transform: translateY(-50%);
  height:100%;
  z-index:-1;
}
.aboutBg video{
  width:100%;
  height:100%;
  object-fit: cover;
  opacity: 0.8;
}
.aboutInner{
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.aboutLabel{
  margin: 0 0 14px;
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #999;
  text-transform: uppercase;
}
.aboutTitle{
  position: relative;
  margin: 0 0 20px;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #111827;
}
.aboutTitle__base{
  color: #ccc;
}
.aboutTitle__fill{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #111827;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 6s cubic-bezier(0.25, 1, 0.5, 1);
}
.aboutSec.is-visible .aboutTitle__fill{
  clip-path: inset(0 0 0 0);
}
@media (prefers-reduced-motion: reduce) {
  .aboutTitle__fill{
    clip-path: inset(0 0 0 0);
    transition: none;
  }
}
.aboutDesc{
  margin: 0 0 40px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.75;
  color: #222;
}
.aboutMeta{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: clamp(28px, 3vw, 40px);
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.metaItem{
  display: flex;
  align-items: center;
  gap: 10px;
}
.metaIcon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--c-primary);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.metaIcon svg{ width: 20px; height: 20px; }
.metaText{
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px){
  .aboutInner{
    padding: 0 clamp(20px, 4vw, 30px);
  }
  .aboutDesc{ max-width: none; }
}
@media (max-width: 767px){
  .aboutSec{ padding: clamp(64px, 10vw, 90px) 0; }
  .aboutTitle{ font-size: clamp(24px, 6vw, 48px); }
  .aboutDesc{ font-size: clamp(14px, 1.3vw, 16px); margin:0 0 20px; }
  .aboutMeta{ 
    gap:10px 15px;
  }
  .metaItem{
    gap: 8px;
  }
  .metaIcon{
    width: 30px;
    height: 30px;
  }
  .metaIcon svg{ width: 16px; height: 16px; }
  .metaText{ 
    font-size: 12px; 
    white-space: normal; 
  }
}

/* ========================================
   Main Business Area (Product Line Up)
   ======================================== */

.main-business-area {
  position: relative;
  background-color: #fff;
  padding: 0 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
}

.main-business-area__container {
  margin: 0 auto;
  padding: 0 clamp(15px, 4vw, 30px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: flex-start;
}

.main-business-area__title-fixed {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.main-business-area__title-line {
  display: block;
  font-size: clamp(40px, 6vw, 120px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #111827;
  font-family: var(--font-sans);
}

.main-business-area__content-wrapper {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: clamp(120px, 6vw, 180px);
  align-items: center;
  margin-bottom: clamp(30px, 4vw, 60px);
}

.main-business-area__text-wrapper {
    position: relative;
    overflow: hidden;
    background:#fff;
    width:100%;
}
.main-business-area__text-wrapper .main-business-area__text-sub-title {
    font-size: clamp(14px, 1.3vw, 16px);
    font-weight: 500;
    color: var(--c-primary);
    text-transform: uppercase;
    margin: 0 0 15px;
    display: block;
}
.main-business-area__text-wrapper .main-business-area__text-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: #111;
    margin: 0 0 26px;
}   
.main-business-area__text-wrapper .main-business-area__text-desc {
    font-size: clamp(16px, 1.5vw, 18px);
    font-weight: 400;
    line-height: 1.75;
    color: #111;
}
.main-business-area__text-wrapper .space-swiper {
  margin-bottom:4rem;
}
.main-business-area__text-wrapper .controls {
  position: relative;
  width:100%;
  margin-top:4rem;
  display:flex;
  gap:20px;
  align-items: center;
}
.main-business-area__text-wrapper .controls .space-pagination {
  position: relative;
  width:200px;
  height:2px;
  display:flex;
  gap:10px;
  background:#eee;
}
.main-business-area__text-wrapper .controls .progress-full {
    width:0;
    background: var(--c-primary);
}
.main-business-area__image-wrapper {
  overflow: hidden;
  background:#fff;
  width:100%;
  border-radius: 8px;
}
.main-business-area__image-wrapper .swiper-container {
  width:100%;
  height:100%;
}
.main-business-area__image-wrapper .swiper-slide {
  width:100%;
  display:grid;
  grid-template-columns: 50% 30% 20%;
  gap: 10px;
}
.main-business-area__image-wrapper .thum-swiper .swiper-wrapper { 
    justify-content: flex-start;
}
.main-business-area__image-wrapper .thum-swiper .swiper-slide .img {
    transition: transform 1.5s ease;
    position: relative;
    height:780px;
    border-radius: 8px;
    overflow: hidden;
}
.main-business-area__image-wrapper .thum-swiper .swiper-slide .img-1 {
    transform: translateX(60%);
    z-index: 3;
}
.main-business-area__image-wrapper .thum-swiper .swiper-slide .img-2 {
    transform: translateX(30%);
    z-index: 2;
}
.main-business-area__image-wrapper .thum-swiper .swiper-slide .img-3 {
    transform: translateX(0);
    z-index: 1;
}
.main-business-area__image-wrapper .thum-swiper .swiper-slide.swiper-slide-active .img-1 {
    transform: translateX(0);
}
.main-business-area__image-wrapper .thum-swiper .swiper-slide.swiper-slide-active .img-2 {
    transform: translateX(0);
}

@media (min-width: 1920px) {
    .main-business-area__content-wrapper {
        grid-template-columns: 0.4fr 1fr;
    }      
}
@media (max-width: 1280px) {
    .main-business-area__image-wrapper .swiper-slide {
        height: clamp(400px, 45vw, 600px);
        min-width: 0;
    }
}
/* Tablet */
@media (max-width: 1023px) {
  .main-business-area__container {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 40px);
  }
  
  .main-business-area__content-wrapper {
    grid-template-columns: 0.7fr 1fr;
    gap: clamp(40px, 5vw, 60px);
  }
  
  .main-business-area__text-wrapper .main-business-area__text-title {
    font-size: clamp(20px, 3.5vw, 32px);
  }
  
  .main-business-area__text-wrapper .main-business-area__text-desc {
    font-size: clamp(14px, 1.4vw, 16px);
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  
  .main-business-area__image-wrapper .swiper-slide {
    height: clamp(400px, 45vw, 600px);
    min-width: 0;
  }
  
  .main-business-area__image-wrapper .thum-swiper .swiper-wrapper {
    min-width: 0;
  }
  
  .main-business-area__text-wrapper .controls {
    gap: 16px;
  }
  
  .main-business-area__text-wrapper .controls .space-pagination {
    width: 150px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .main-business-area {
    padding: clamp(40px, 8vw, 60px) 0;
  }
  
  .main-business-area__title-fixed {
    margin-bottom: clamp(20px, 3vw, 30px);
    margin-bottom:0;
  }
  
  .main-business-area__container {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 30px);
    padding: 0 15px;
  }
  
  .main-business-area__content-wrapper {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 32px);
  }
  
  .main-business-area__text-wrapper {
    min-width: 0;
    order: 1;
  }
  
  .main-business-area__image-wrapper {
    min-width: 0;
    order: 2;
    width: 100%;
  }
  
  .main-business-area__text-wrapper .main-business-area__text-sub-title {
    font-size: clamp(12px, 1.2vw, 14px);
    margin-bottom: 12px;
  }
  
  .main-business-area__text-wrapper .main-business-area__text-title {
    font-size: clamp(20px, 5.4vw, 28px);
    margin-bottom: 18px;
  }
  
  .main-business-area__text-wrapper .main-business-area__text-desc {
    font-size: clamp(14px, 1.3vw, 15px);
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .main-business-area__text-wrapper .main-business-area__text-desc br {
    display: none;
  }
  
  .main-business-area__text-wrapper .space-swiper {
    margin-bottom: 2rem;
  }
  
  .main-business-area__text-wrapper .controls {
    margin-top: 0;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .main-business-area__text-wrapper .controls .space-pagination {
    width: calc((100% - 12px *2) - 36px);
  }
  
  .main-business-area__text-wrapper .controls .space-prev,
  .main-business-area__text-wrapper .controls .space-next {
    flex-shrink: 0;
  }
  
  .main-business-area__text-wrapper .controls .space-prev i,
  .main-business-area__text-wrapper .controls .space-next i {
    font-size: 18px;
  }
  
  .main-business-area__image-wrapper .swiper-container {
    overflow: hidden;
  }
  
  .main-business-area__image-wrapper .swiper-slide {
    height: clamp(220px, 58vw, 360px);
    min-width: 0;
    gap:10px;
  }

  .main-business-area__image-wrapper .thum-swiper .swiper-wrapper {
    min-width: 0;
  }

  .main-business-area__image-wrapper .thum-swiper .swiper-slide .img {
    width: 100%;
    height: auto;
    min-height: clamp(70px, 19vw, 120px);
    transition: transform 1s ease;
  }
  
  .main-business-area__text-wrapper .inquiry-cta__btn {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
}