/**
 * 홈 페이지 CSS - 모바일 반응형 완전 수정 버전
 * PC/Tablet/Mobile 모두 대응
 */

/* ========================================
   CSS Variables (공통)
======================================== */
:root {
    --primary-blue: #0047AB;
    --primary-blue-dark: #003580;
    --pantone-yellow: #FFD100;
    --accent-yellow: #FFD100;
    --text-black: #1A1A1A;
    --dark-gray: #666666;
    --medium-gray: #E5E5E5;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --border-light: #E5E5E5;
}

/* ========================================
   Hero Section - Cinematic Slider
======================================== */
.cinematic-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

/* Slides */
.cinematic-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.cinematic-slider .slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.slide-bg video,
.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.cinematic-slider .slide.active .slide-bg video,
.cinematic-slider .slide.active .slide-bg img {
    transform: scale(1);
}

/* Overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.slide-overlay.overlay-purple {
    background: linear-gradient(90deg, rgba(107,70,193,0.85) 0%, rgba(107,70,193,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.slide-overlay.overlay-dark {
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
}

/* Content */
.slide-content {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 10;
    color: #fff;
}

/* Tag */
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent-yellow);
    color: #000;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.slide-tag-purple {
    background: #9b7dff;
    color: #fff;
}

.slide-tag-dark {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.cinematic-slider .slide.active .slide-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Title */
.slide-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.5s;
}

.cinematic-slider .slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-title span {
    color: var(--accent-yellow);
}

/* Description */
.slide-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.7s;
}

.cinematic-slider .slide.active .slide-desc {
    opacity: 0.9;
    transform: translateY(0);
}

/* Specs */
.slide-specs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.9s;
}

.cinematic-slider .slide.active .slide-specs {
    opacity: 1;
    transform: translateY(0);
}

.spec-item {
    text-align: center;
}

.spec-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-yellow);
}

.spec-label {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

/* CTA Button */
.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent-yellow);
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--accent-yellow);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 1.1s;
}

.cinematic-slider .slide.active .slide-cta {
    opacity: 1;
    transform: translateY(0);
}

.slide-cta:hover {
    background: transparent;
    color: var(--accent-yellow);
}

.slide-cta svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    text-align: right;
}

.counter-current {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-yellow);
}

.counter-total {
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.5;
    color: #fff;
}

/* Progress Bar */
.progress-container {
    position: absolute;
    bottom: 80px;
    left: 8%;
    right: 20%;
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.progress-item {
    flex: 1;
    min-width: 40px;
    cursor: pointer;
}

.progress-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.progress-item.active .progress-label,
.progress-item.completed .progress-label,
.progress-item:hover .progress-label {
    opacity: 1;
}

.progress-bar {
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-yellow);
    border-radius: 2px;
    transition: none;
}

.progress-item.completed .progress-fill {
    width: 100%;
}

.progress-item.active .progress-fill {
    width: 0%;
    animation: progressFill 6s linear forwards;
}

.progress-item:not(.active):not(.completed) .progress-fill {
    width: 0%;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.cinematic-slider.paused .progress-item.active .progress-fill {
    animation-play-state: paused;
}

/* Navigation Arrows */
.nav-arrows {
    position: absolute;
    right: 8%;
    bottom: 80px;
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.nav-arrow:hover svg {
    stroke: #000;
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

/* Pause Indicator */
.pause-indicator {
    position: absolute;
    top: 2rem;
    right: 8%;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.875rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20;
}

.cinematic-slider.paused .pause-indicator {
    opacity: 1;
}

/* ========================================
   Hero Section - Tablet Responsive
======================================== */
@media (max-width: 1024px) {
    .cinematic-slider {
        min-height: 100vh;
    }

    .slide-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }

    .slide-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .slide-desc {
        font-size: 1rem;
    }

    .slide-specs {
        gap: 1.5rem;
    }

    .spec-value {
        font-size: 1.5rem;
    }

    .progress-container {
        left: 5%;
        right: 5%;
        bottom: 100px;
    }

    .nav-arrows {
        right: 5%;
        bottom: 160px;
    }

    .slide-counter {
        display: none;
    }
}

/* ========================================
   Hero Section - Mobile Responsive
======================================== */
@media (max-width: 768px) {
    .cinematic-slider {
        height: 100vh;
        min-height: 550px;
        max-height: 800px;
    }

    .slide-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.85) 100%);
    }

    .slide-overlay.overlay-purple {
        background: linear-gradient(180deg, rgba(107,70,193,0.3) 0%, rgba(107,70,193,0.6) 50%, rgba(0,0,0,0.8) 100%);
    }

    .slide-overlay.overlay-dark {
        background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.9) 100%);
    }

    .slide-content {
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 140px;
        transform: none;
        max-width: none;
    }

    .slide-tag {
    	visibility:hidden;
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .slide-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 1rem;
    }

    .slide-desc {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .slide-specs {
    	visibility:hidden;
    	display:none;
        gap: 1rem;
        margin-bottom: 1.25rem;
        flex-wrap: wrap;
    }

    .spec-item {
        flex: 1 1 calc(33.333% - 0.75rem);
        min-width: 70px;
    }

    .spec-value {
        font-size: 1.25rem;
    }

    .spec-label {
        font-size: 0.7rem;
    }

    .slide-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .progress-container {
        left: 20px;
        right: 20px;
        bottom: 30px;
        gap: 4px;
    }

    .progress-item {
        min-width: 20px;
    }

    .progress-label {
        display: none;
    }

    .progress-bar {
        height: 4px;
    }

    .nav-arrows {
        display: none;
    }

    .pause-indicator {
        top: auto;
        bottom: 80px;
        right: 20px;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .cinematic-slider {
        min-height: 500px;
    }

    .slide-content {
        bottom: 120px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-specs {
        gap: 0.5rem;
    }

    .spec-item {
        flex: 1 1 calc(33.333% - 0.5rem);
    }

    .spec-value {
        font-size: 1.1rem;
    }
}
/* ========================================
   Empathy Section - Magazine Style
   PC: 비대칭 그리드 / Mobile: 가로 스크롤
   ======================================== */

.empathy {
    padding: 120px 0 100px;
    background: #F8F9FA;
}

.empathy-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ===== Header ===== */
.empathy-header {
    margin-bottom: 56px;
}

.empathy-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #0047AB;
    margin-bottom: 12px;
}

.empathy-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: #111;
    letter-spacing: -0.02em;
}

.empathy-title span {
    color: #0047AB;
}

/* ===== PC: 비대칭 그리드 ===== */
.empathy-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    margin-bottom: 56px;
}
/* ===== Card Base ===== */
.empathy-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.empathy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

/* Large Card - 왼쪽 전체 높이 */
.empathy-card--large {
    grid-row: 1 / 3;
}

.empathy-card--large .empathy-card__img {
    height: 100%;
    min-height: 520px;
}

/* Medium Cards - 오른쪽 2개 */
.empathy-card--medium .empathy-card__img {
    height: 100%;
    min-height: 248px;
}

/* ===== Card Image ===== */
.empathy-card__img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.empathy-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.empathy-card:hover .empathy-card__img img {
    transform: scale(1.05);
}

.empathy-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

/* ===== Card Body - Overlay Style (PC) ===== */
.empathy-card__body--overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: #fff;
}

/* ========== 🔧 PC 폰트 크기 수정 (여기가 핵심!) ========== */
.card-num {
    display: inline-block;
    font-size: 0.85rem;        /* 0.7rem → 0.85rem */
    font-weight: 800;
    color: #FFD100;
    letter-spacing: 0.05em;
    margin-bottom: 12px;       /* 10px → 12px */
}

.card-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 12px;
}

/* 모바일 - 작게 (덮어씌움) */
@media (max-width: 768px) {
    .card-title {
        font-size: clamp(1.25rem, 2.8vw, 2rem);  /* 1.25rem~1.75rem → 1.5rem~2rem */
    }
}

.card-title strong {
    color: #FFD100;
}

.card-desc {
    font-size: 1.1rem;         /* 0.95rem → 1.1rem */
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Cause */
.card-cause {
    font-size: 0.95rem;        /* 0.8rem → 0.95rem */
    color: rgba(255, 255, 255, 0.7);
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.card-cause span {
    display: inline-block;
    font-size: 0.75rem;        /* 0.65rem → 0.75rem */
    font-weight: 800;
    color: #111;
    background: #FFD100;
    padding: 4px 10px;         /* 3px 8px → 4px 10px */
    border-radius: 4px;
    margin-right: 10px;
    vertical-align: middle;
}

/* ===== Footer ===== */
.empathy-footer {
    text-align: center;
}

.empathy-footer p {
    font-size: clamp(1.25rem, 2.8vw, 1.75rem);  /* 1.1rem~1.5rem → 1.25rem~1.75rem */
    font-weight: 600;
    color: #333;
}

.empathy-footer mark {
    background: linear-gradient(180deg, transparent 50%, rgba(255, 209, 0, 0.4) 50%);
    color: inherit;
}

/* ===== Scroll Animation ===== */
.empathy-card {
    opacity: 0;
    transform: translateY(40px);
}

.empathy-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.empathy-card--large.visible { transition-delay: 0s; }
.empathy-card--medium:nth-child(2).visible { transition-delay: 0.15s; }
.empathy-card--medium:nth-child(3).visible { transition-delay: 0.25s; }
/* PC만 - 1025px 이상 */
@media (min-width: 1025px) {
    .empathy-card--large .empathy-card__img {
        min-height: 65px;
    }

    .empathy-card--medium .empathy-card__img {
        min-height: 31px;
    }

    .empathy-card__body--overlay {
        padding: 8px;
    }

    .card-num {
        font-size: 0.5rem;
        margin-bottom: 2px;
    }

    .card-title {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }

    .card-desc {
        font-size: 0.55rem;
        margin-bottom: 4px;
    }

    .card-cause {
        font-size: 0.5rem;
        padding-top: 4px;
    }

    .card-cause span {
        font-size: 0.45rem;
        padding: 1px 3px;
    }
}
/* PC만 - 1025px 이상 */
@media (min-width: 1025px) {
    .empathy-card--large .empathy-card__img {
        min-height: 130px !important;
    }

    .empathy-card--medium .empathy-card__img {
        min-height: 62px !important;
    }
}

/* PC만 - 1025px 이상 */
@media (min-width: 1025px) {
    .empathy-grid {
        grid-template-rows: 300px 300px;  /* 행 높이 고정 */
    }

    .empathy-card--large .empathy-card__img {
        min-height: auto;
        height: 100%;
    }

    .empathy-card--medium .empathy-card__img {
        min-height: auto;
        height: 100%;
    }
}

/* ========================================
   Tablet (1024px)
   ======================================== */
@media (max-width: 1024px) {
    .empathy {
        padding: 100px 0 80px;
    }

    .empathy-inner {
        padding: 0 32px;
    }

    .empathy-grid {
        gap: 20px;
    }

    .empathy-card--large .empathy-card__img {
        max-height: 450px;
    }

    .empathy-card--medium .empathy-card__img {
        max-height: 215px;
    }

    .empathy-card__body--overlay {
        padding: 24px;
    }

    .card-title {
        font-size: 1.35rem;    /* 1.25rem → 1.35rem */
    }

    .card-desc {
        font-size: 1rem;       /* 0.875rem → 1rem */
    }
    
    .card-num {
        font-size: 0.8rem;
    }
    
    .card-cause {
        font-size: 0.9rem;
    }
}

/* ========================================
   Mobile - 가로 스크롤 + 배경 이미지 (768px)
   ======================================== */
@media (max-width: 768px) {
    .empathy {
        padding: 60px 0 48px;
    }

    .empathy-inner {
        padding: 0;
    }

    .empathy-header {
        padding: 0 20px;
        margin-bottom: 32px;
    }

    .empathy-title {
        font-size: 1.75rem;
    }

    /* 가로 스크롤 */
    .empathy-grid {
        display: flex;
        gap: 14px;
        padding: 0 20px;
        margin-bottom: 32px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .empathy-grid::-webkit-scrollbar {
        display: none;
    }

    /* 카드 - 배경 이미지 스타일 */
    .empathy-card,
    .empathy-card--large,
    .empathy-card--medium {
        position: relative;
        flex: 0 0 300px;
        min-width: 300px;
        height: 180px;
        scroll-snap-align: start;
        grid-row: auto;
        border-radius: 12px;
        overflow: hidden;
    }

    /* 이미지가 카드 전체 배경 */
    .empathy-card__img {
        position: absolute;
        inset: 0;
        height: 100%;
        min-height: 100%;
    }

    .empathy-card__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 오버레이 강화 */
    .empathy-card__overlay {
           background: linear-gradient(
		        180deg,
		        rgba(0, 0, 0, 0.7) 0%,
		        rgba(0, 0, 0, 0.95) 100%
		    );
		}
    }

    /* 텍스트 - 이미지 위 오버레이 */
    .empathy-card__body--overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 16px;
        color: #fff;
        background: transparent;
    }

    .card-num {
        color: #FFD100;
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .card-title {
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 4px;
        line-height: 1.25;
    }

    .card-title strong {
        color: #FFD100;
    }

    .card-desc {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0;
        line-height: 1.4;
    }

    /* 원인 숨김 - 공간 절약 */
    .card-cause {
        display: none;
    }

    /* Footer */
    .empathy-footer {
        padding: 0 20px;
    }

    .empathy-footer p {
        font-size: 2rem;
    }

    /* 스크롤 힌트 여백 */
    .empathy-grid::after {
        content: '';
        flex: 0 0 6px;
    }

    /* 호버 효과 제거 */
    .empathy-card {
        opacity: 1;
        transform: none;
    }

    .empathy-card:hover {
        transform: none;
    }
}

/* ========================================
   Small Mobile (480px)
   ======================================== */
@media (max-width: 480px) {
    .empathy {
        padding: 48px 0 40px;
    }

    .empathy-header {
        margin-bottom: 24px;
    }

    .empathy-title {
        font-size: 1.5rem;
    }

    .empathy-grid {
        gap: 12px;
        padding: 0 16px;
    }

    .empathy-card,
    .empathy-card--large,
    .empathy-card--medium {
        flex: 0 0 270px;
        min-width: 270px;
        height: 160px;
    }

    .empathy-card__body--overlay {
        padding: 14px;
    }

    .card-title {
        font-size: 1.05rem;
    }

    .card-desc {
        font-size: 0.75rem;
    }

    .empathy-footer p {
        font-size: 0.95rem;
    }
}

/* ========================================
   Solution Section (GSAP Scroll)
======================================== */
.sectors {
    background: var(--white);
    position: relative;
}

.sectors__container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 60px 48px;
    align-items: center;
    background: var(--white);
    max-width: 1440px;
    margin: 0 auto;
}

.sectors__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Label */
.sectors-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.sectors-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--primary-blue);
}

.label-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* Title */
.sectors-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-black);
}

.sectors-title .title-accent {
    color: var(--primary-blue);
}

.sectors-title .title-light {
    font-weight: 400;
    color: var(--dark-gray);
}

/* Description */
.description-area {
    margin-top: 16px;
}

.description-text {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.7;
    font-weight: 400;
    word-break: keep-all;
    color: var(--text-black);
}

.desc-line {
    display: block;
    margin-top: 8px;
}

.desc-line:first-child {
    margin-top: 0;
}

/* Highlight Styles */
.highlight {
    font-weight: 700;
}

.highlight-marker {
    background: linear-gradient(180deg, transparent 55%, rgba(255, 209, 0, 0.6) 55%);
    padding: 0 4px;
    margin: 0 -4px;
    color: var(--text-black);
}

.highlight-underline {
    text-decoration: none;
    background-image: linear-gradient(var(--primary-blue), var(--primary-blue));
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 3px;
    transition: background-size 0.5s ease;
    padding-bottom: 3px;
    color: var(--primary-blue);
}

.highlight-underline.active {
    background-size: 100% 3px;
}

.highlight-box {
    background: rgba(0, 71, 171, 0.08);
    border: 1.5px solid rgba(0, 71, 171, 0.3);
    padding: 3px 10px;
    border-radius: 4px;
    margin: 0 3px;
    color: var(--primary-blue);
}

/* CTA Area */
.sectors-cta-area {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sectors-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.sectors-cta-btn svg {
    width: 18px;
    height: 18px;
}

.sectors-cta-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sectors-cta-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.sectors-cta-secondary {
    background: var(--white);
    color: var(--text-black);
    border: 1.5px solid var(--medium-gray);
}

.sectors-cta-secondary:hover {
    border-color: var(--primary-blue);
}
/* ========================================
   Solution Slider - 세로 카드 슬라이더
======================================== */
.solution-slider {
    background: var(--light-gray);
    padding: 100px 0 120px;
}

.solution-slider__header {
    text-align: center;
    padding: 0 24px 60px;
}

.solution-slider__tag {
    color: var(--primary-blue);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #0047AB;
}

.solution-slider__title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-black);
    line-height: 1.3;
}

.solution-slider__title .light {
    font-weight: 400;
    color: var(--dark-gray);
}

.solution-slider__title .accent {
    color: var(--primary-blue);
}

/* Container */
.solution-slider__container {
    position: relative;
    overflow: hidden;
}

.solution-slider__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide */
.solution-slider__slide {
    flex-shrink: 0;
    width: 38%;
    padding: 0 14px;
    transition: all 0.5s ease;
    opacity: 0.4;
    transform: scale(0.92);
}

.solution-slider__slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Card */
.solution-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    max-height: min(500px, 60vh);  /* 화면 높이의 60% 또는 500px 중 작은 값 */
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.solution-slider__slide {
    flex-shrink: 0;
    width: min(38%, 380px);  /* 38% 또는 380px 중 작은 값 */
    padding: 0 14px;
    transition: all 0.5s ease;
    opacity: 0.4;
    transform: scale(0.92);
}

.solution-card__img {
    position: absolute;
    inset: 0;
}

.solution-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-slider__slide.active .solution-card__img img {
    transform: scale(1.03);
}

.solution-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,0.9) 0%,
        rgba(0,0,0,0.5) 40%,
        rgba(0,0,0,0.1) 100%
    );
}

.solution-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: var(--white);
}

.solution-card__place {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pantone-yellow);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.solution-card__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
	color:white;
}

.solution-card__title .highlight {
    color: var(--pantone-yellow);
}

.solution-card__desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    line-height: 1.7;
}

.solution-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pantone-yellow);
    color: var(--text-black);
    padding: 14px 26px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.solution-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,209,0,0.4);
}

.solution-card__btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.solution-card__btn:hover svg {
    transform: translateX(4px);
}

/* Navigation */
.solution-slider__nav {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.solution-slider__controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.solution-slider__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--medium-gray);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.solution-slider__arrow:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

.solution-slider__arrow svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.solution-slider__counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    min-width: 70px;
    justify-content: center;
}

.solution-slider__current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.solution-slider__total {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.solution-slider__dots-wrap {
    max-width: 180px;
    overflow-x: auto;
    scrollbar-width: none;
}

.solution-slider__dots-wrap::-webkit-scrollbar {
    display: none;
}

.solution-slider__dots {
    display: flex;
    gap: 8px;
}

.solution-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.solution-slider__dot.active {
    width: 36px;
    border-radius: 5px;
    background: var(--border-light);
}

.solution-slider__dot-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary-blue);
    border-radius: 5px;
}

/* ========================================
   Solution Slider - Responsive
======================================== */
@media (max-width: 1024px) {
    .solution-slider__slide {
        width: 50%;
    }

    .solution-card__body {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .solution-slider {
        padding: 70px 0 90px;
    }

    .solution-slider__header {
        padding-bottom: 45px;
    }

    .solution-slider__slide {
        width: 70%;
        padding: 0 10px;
    }

    .solution-card {
        border-radius: 20px;
    }

    .solution-card__body {
        padding: 28px;
    }

    .solution-card__title {
        font-size: 1.4rem;
    }

    .solution-card__desc {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .solution-card__btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .solution-slider__nav {
        margin-top: 36px;
    }

    .solution-slider__controls {
        gap: 14px;
    }

    .solution-slider__arrow {
        width: 44px;
        height: 44px;
    }

    .solution-slider__dots-wrap {
        max-width: 120px;
    }

    .solution-slider__dot.active {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .solution-slider__title {
        font-size: 1.7rem;
    }

    .solution-slider__slide {
        width: 85%;
    }

    .solution-card {
        border-radius: 16px;
    }

    .solution-card__body {
        padding: 24px;
    }

    .solution-card__place {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    .solution-card__title {
        font-size: 1.25rem;
    }

    .solution-card__desc {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .solution-card__btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .solution-slider__controls {
        gap: 10px;
    }

    .solution-slider__arrow {
        width: 40px;
        height: 40px;
    }

    .solution-slider__arrow svg {
        width: 18px;
        height: 18px;
    }

    .solution-slider__counter {
        min-width: 60px;
    }

    .solution-slider__current {
        font-size: 1.2rem;
    }

    .solution-slider__dots-wrap {
        max-width: 80px;
    }

    .solution-slider__dot {
        width: 8px;
        height: 8px;
    }

    .solution-slider__dot.active {
        width: 24px;
    }
}
/* ========================================
   Process Section (Timeline Style)
======================================== */
/* ========================================
   Process Section - Accordion Style
======================================== */
.process-accordion {
    padding: 120px 24px;
    background: #0a0a0a;
}

.process-accordion__inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.process-accordion__header {
    text-align: center;
    margin-bottom: 64px;
}

.process-accordion__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #f4c542;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.process-accordion__title {
    font-size: clamp(26px, 5vw, 42px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #fff;
}

.process-accordion__title span {
    color: #f4c542;
}

.process-accordion__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
}

/* Accordion List */
.process-accordion__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Accordion Item */
.process-accordion__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.process-accordion__item:hover {
    border-color: rgba(255,255,255,0.1);
}

.process-accordion__item.active {
    border-color: rgba(244, 197, 66, 0.2);
}

/* Background Image/Video */
.process-accordion__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.process-accordion__bg img,
.process-accordion__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-accordion__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    transition: background 0.3s;
}

.process-accordion__item.active .process-accordion__bg::after {
    background: rgba(0, 0, 0, 0.85);
}

/* Header */
.process-accordion__head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s;
}

.process-accordion__step {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
    min-width: 60px;
    transition: color 0.3s;
}

.process-accordion__item.active .process-accordion__step {
    color: #f4c542;
}

.process-accordion__title-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.process-accordion__name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s;
}

.process-accordion__item.active .process-accordion__name {
    color: #f4c542;
}

.process-accordion__brief {
	display:none;
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}

.process-accordion__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.process-accordion__icon svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255,255,255,0.4);
    transition: stroke 0.3s;
}

.process-accordion__item.active .process-accordion__icon {
    transform: rotate(180deg);
}

.process-accordion__item.active .process-accordion__icon svg {
    stroke: #f4c542;
}

/* Content */
.process-accordion__content {
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-accordion__item.active .process-accordion__content {
    max-height: 400px;
}

.process-accordion__body {
    padding: 8px 28px 32px;
    padding-left: 108px;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.3s ease 0.1s;
}

.process-accordion__item.active .process-accordion__body {
    opacity: 1;
    transform: translateY(0);
}

/* Headline */
.process-accordion__headline {
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #fff;
}

.process-accordion__headline span {
    color: #f4c542;
}

.process-accordion__desc {
	display:none;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
}

.process-accordion__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.process-accordion__tag {
    padding: 6px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   Process Accordion - Responsive
======================================== */
@media (max-width: 768px) {
    .process-accordion {
        padding: 80px 16px;
    }

    .process-accordion__header {
        margin-bottom: 40px;
    }

    .process-accordion__head {
        padding: 20px;
        gap: 16px;
    }

    .process-accordion__step {
        min-width: 50px;
        font-size: 11px;
    }

    .process-accordion__name {
        font-size: 16px;
    }

    .process-accordion__brief {
        display: none;
    }

    .process-accordion__body {
        padding: 4px 20px 28px;
        padding-left: 66px;
    }

    .process-accordion__headline {
        font-size: 20px;
    }

    .process-accordion__desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .process-accordion {
        padding: 60px 12px;
    }

    .process-accordion__head {
        padding: 16px;
        gap: 12px;
    }

    .process-accordion__step {
        min-width: 45px;
        font-size: 10px;
    }

    .process-accordion__name {
        font-size: 15px;
    }

    .process-accordion__body {
        padding: 4px 16px 24px;
        padding-left: 57px;
    }

    .process-accordion__headline {
        font-size: 18px;
    }

    .process-accordion__desc {
        font-size: 13px;
        line-height: 1.7;
    }

    .process-accordion__tag {
        padding: 5px 10px;
        font-size: 11px;
    }
}

/* ========================================
   시공사례 섹션
======================================== */
.cases-section {
    background: var(--white);
    padding: 80px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    padding-bottom: 48px;
      position: relative;
}





.section-title,
.section-subtitle {
  position: relative;
  z-index: 1;
}
.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--dark-gray);
}

/* ========================================
   시공사례 섹션
======================================== */
.cases-section {
    background: var(--white);
    padding: 80px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    padding-bottom: 48px;
    position: relative;
}
.glow {
  position: absolute;
  width: 700px;
  height: 750px;
  left: 50px;
  top: -50px;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(255, 209, 0, 0.55) 0%,
    rgba(255, 209, 0, 0.3) 40%,
    rgba(255, 209, 0, 0.1) 70%,
    transparent 90%
  );
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  filter: blur(50px);
  transform: rotate(-10deg);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .glow {
  	width: 400px;
  	height: 450px;
  
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
    top: -50px;
  }
}


.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--dark-gray);
    position: relative;
    z-index: 1;
}

/* PC: 벤토 그리드 */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.case-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-card:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.case-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.case-card:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.case-card:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

.case-images {
    position: relative;
    height: 100%;
}

.case-images.single {
    display: block;
    height: 100%;
}

.case-max {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.case-max img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover .case-max img {
    transform: scale(1.08);
}

/* PC: 하단 오버레이 정보 */
.case-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: #fff;
}

.case-card:first-child .case-info {
    padding: 32px;
}

.case-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-size: 1.25rem;
}

.case-card:first-child .case-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.case-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

.case-card:first-child .case-desc {
    font-size: 1rem;
}

/* PC: 배지 */
.case-card::before {
    content: attr(data-badge);
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: var(--pantone-yellow);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.case-card:first-child::before {
    opacity: 1;
    transform: translateY(0);
}

.case-card:hover::before {
    opacity: 1;
    transform: translateY(0);
}

/* 더보기 버튼 */
.cases-more {
    text-align: center;
}

.cases-more-btn {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    transition: all 0.3s;
}

.cases-more-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* ========================================
   Cases Section - Tablet (768px ~ 1024px)
======================================== */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 300px 200px 200px;
    }

    .case-card:first-child {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .case-card:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .case-card:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .case-card:nth-child(4) {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }
}

/* ========================================
   Cases Section - Mobile: 메이슨리 다크 + 가로 스크롤 (768px 이하)
======================================== */
@media (max-width: 768px) {
    /* 섹션 화이트 배경 */
    .cases-section {
        background: var(--white);
        padding: 70px 0;
        overflow: hidden;
    }

    .cases-section .section-container {
        max-width: none;
        padding: 0;
    }

    .cases-section .section-header {
        padding: 0 20px 40px;
    }

    .cases-section .section-title {
        color: var(--text-black);
    }

    .cases-section .section-subtitle {
        color: var(--dark-gray) !important;
    }

    .cases-section .glow {
        display: block;
        right: 10%;
    }

    /* 가로 스크롤 컨테이너 */
    .cases-grid {
        display: flex;
        gap: 14px;
        padding: 0 20px 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-bottom: 2rem;
    }

    .cases-grid::-webkit-scrollbar {
        display: none;
    }

    .cases-grid::after {
        content: '';
        flex: 0 0 6px;
    }

    /* 카드 기본 */
    .case-card {
        flex: 0 0 280px;
        height: 340px;
        border-radius: 16px;
        scroll-snap-align: start;
        background: #111;
    }

    .case-card:first-child {
        flex: 0 0 300px;
        height: 340px;
        grid-column: auto;
        grid-row: auto;
    }

    .case-card:nth-child(2),
    .case-card:nth-child(3),
    .case-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .case-card:hover {
        transform: none;
        box-shadow: none;
    }

    /* 이미지 - 어둡게 처리 */
    .case-card .case-max img {
        filter: brightness(0.55);
        transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                    filter 0.5s ease;
    }

    .case-card:hover .case-max img,
    .case-card.touched .case-max img {
        transform: scale(1.1);
        filter: brightness(0.75);
    }

    /* 배지 숨김 */
    .case-card::before {
        display: none !important;
    }

    /* 정보 - 중앙 정렬 */
    .case-card .case-info {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 28px;
        background: transparent;
        color: #fff;
    }

    .case-card:first-child .case-info {
        padding: 32px;
    }

    /* 제목 - 항상 표시, 2줄 처리 */
    .case-card .case-title {
        font-weight: 800;
        font-size: 1.3rem;
        color: #fff;
        margin-bottom: 10px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: keep-all;
    }

    .case-card:first-child .case-title {
        font-size: 1.5rem;
    }

    /* 설명 - 항상 표시, 2줄 처리 */
    .case-card .case-desc {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.8);
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: keep-all;
        max-width: 240px;
    }

    .case-card:first-child .case-desc {
        font-size: 0.95rem;
        max-width: 260px;
    }

    /* 더보기 버튼 */
    .cases-section .cases-more {
        padding: 0 20px;
    }

    .cases-section .cases-more-btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        color: #fff;
        border-color: rgba(255,255,255,0.3);
    }

    .cases-section .cases-more-btn:hover,
    .cases-section .cases-more-btn:active {
        background: var(--pantone-yellow);
        border-color: var(--pantone-yellow);
        color: #000;
    }
}

/* ========================================
   Cases Section - Small Mobile (480px 이하)
======================================== */
@media (max-width: 480px) {
    .cases-section {
        padding: 60px 0;
    }

    .cases-section .section-header {
        padding: 0 16px 32px;
    }

    .cases-section .section-title {
        font-size: 1.5rem;
    }

    .cases-grid {
        gap: 12px;
        padding: 0 16px 16px;
    }

    .case-card {
        flex: 0 0 250px;
        height: 300px;
    }

    .case-card:first-child {
        flex: 0 0 270px;
        height: 300px;
    }

    .case-card .case-info {
        padding: 24px;
    }

    .case-card .case-title {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .case-card:first-child .case-title {
        font-size: 1.3rem;
    }

    .case-card .case-desc {
        font-size: 0.85rem;
        max-width: 210px;
    }

    .case-card:first-child .case-desc {
        font-size: 0.875rem;
        max-width: 230px;
    }

    .cases-section .cases-more {
        padding: 0 16px;
    }

    .cases-section .cases-more-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .cases-section .glow {
        right: 10%;
    }
}

/* ========================================
   Cases Section - 터치 디바이스 최적화
======================================== */
@media (hover: none) and (pointer: coarse) {
    .case-card:hover {
        transform: none;
    }

    .case-card:active {
        transform: scale(0.98);
    }
}

@media (hover: none) and (pointer: coarse) and (max-width: 768px) {
    .case-card:active .case-max img {
        transform: scale(1.1);
        filter: brightness(0.75);
    }
}


.cases-more {
    text-align: center;
}

.cases-more-btn {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    transition: all 0.3s;
}

.cases-more-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* ========================================
   Trust Section (신뢰확장) - 로고 티커
======================================== */
.trust-section {
    background: var(--light-gray);
    padding: 60px 0;
    overflow: hidden;
}

.trust-section .section-header {
    margin-bottom: 40px;
    padding: 0 24px;
}

/* 로고 티커 */
.logo-ticker {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-ticker::before,
.logo-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--light-gray), transparent);
}

.logo-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--light-gray), transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.logo-track:hover {
    animation-play-state: paused;
}

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

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 0 0.75rem;
}

.logo-item img {
    max-height: 50px;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   Trust Section - Responsive
======================================== */
@media (max-width: 768px) {
    .trust-section {
        padding: 50px 0;
    }

    .trust-section .section-header {
        margin-bottom: 32px;
        padding: 0 20px;
    }

    .logo-track {
        gap: 2rem;
        animation-duration: 20s;
    }

    .logo-item {
        height: 55px;
        padding: 0 0.5rem;
    }

    .logo-item img {
        max-height: 40px;
        max-width: 100px;
    }

    .logo-ticker::before,
    .logo-ticker::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 40px 0;
    }

    .logo-track {
        gap: 1.5rem;
    }

    .logo-item {
        height: 45px;
    }

    .logo-item img {
        max-height: 35px;
        max-width: 80px;
    }

    .logo-ticker::before,
    .logo-ticker::after {
        width: 40px;
    }
}

/* ========================================
   CTA 섹션 (회사정보 통합)
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003580 100%);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 브랜드 영역 */
.cta-brand {
    margin-bottom: 32px;
}

.cta-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.cta-brand-icon {
    font-size: 22px;
}

.cta-brand-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.cta-brand-since {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* 메인 메시지 */
.cta-message {
    margin-bottom: 40px;
}

.cta-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.cta-title-highlight {
    color: var(--pantone-yellow);
}

.cta-subtitle {
    font-size: clamp(15px, 2.5vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* 통계 */
.cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-stat-item {
    padding: 0 24px;
}

.cta-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.cta-stat-number {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 900;
    color: var(--pantone-yellow);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.cta-stat-unit {
    font-size: 0.5em;
    font-weight: 700;
    margin-left: 2px;
}

.cta-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    font-weight: 500;
}

/* CTA 버튼 */
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-btn svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.cta-btn-primary {
    background: var(--pantone-yellow);
    color: var(--text-black);
    border: 2px solid var(--pantone-yellow);
}

.cta-btn-primary:hover {
    background: transparent;
    color: var(--pantone-yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 200, 87, 0.3);
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn-secondary:hover {
    background: #fff;
    color: var(--primary-blue);
    border-color: #fff;
    transform: translateY(-3px);
}

/* ========================================
   CTA Section - Responsive
======================================== */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-brand {
        margin-bottom: 24px;
    }

    .cta-brand-logo {
        padding: 8px 16px;
    }

    .cta-brand-name {
        font-size: 16px;
    }

    .cta-message {
        margin-bottom: 32px;
    }

    .cta-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 32px;
    }

    .cta-stat-item {
        padding: 0;
    }

    .cta-stat-divider {
        display: none;
    }

    .cta-stat-number {
        font-size: 26px;
    }

    .cta-stat-label {
        font-size: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 16px;
    }

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

    .cta-subtitle {
        font-size: 14px;
    }

    .cta-stats {
        gap: 16px;
    }

    .cta-stat-number {
        font-size: 24px;
    }

    .cta-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* ========================================
   공통 반응형 유틸리티
======================================== */
@media (max-width: 768px) {
    /* 공통 섹션 패딩 */
    .section {
        padding: 60px 0;
    }

    /* 숨김 처리 */
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

/* 터치 디바이스 최적화 */
@media (hover: none) and (pointer: coarse) {
    .case-card:hover,
    .stack-section .cause-item:hover,
    .sectors-cta-btn:hover,
    .cta-btn:hover {
        transform: none;
    }

    .case-card:active,
    .sectors-cta-btn:active,
    .cta-btn:active {
        transform: scale(0.98);
    }
}


/* ========================================
   홈페이지 모바일 리팩토링 CSS
   - Hero Slider 타이틀 크기 증가
   - Solution Section 모바일 버그 수정
   - Process Section 모바일 버그 수정
   ======================================== */

/* ========================================
   Hero Section - 모바일 타이틀 크기 증가
======================================== */
@media (max-width: 768px) {
    .slide-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        margin-bottom: 1rem;
        line-height: 1.15;
    }

    .slide-title span {
        display: inline;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: clamp(1.6rem, 7.5vw, 2rem);
    }
}

/* ========================================
   Solution Section - 모바일 완전 리팩토링
======================================== */
@media (max-width: 1024px) {
    /* 섹션 기본 - GSAP pin 비활성화 대응 */
    .sectors {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .sectors__container {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        min-height: auto !important;
        display: flex;
        flex-direction: column;
        padding: 60px 24px;
        gap: 32px;
    }

    /* 이미지 먼저, 텍스트 나중 */
    .sectors__medias {
        order: 1;
        position: relative !important;
        width: 100%;
        aspect-ratio: 16/10;
        max-height: 45vh;
        min-height: 250px;
        border-radius: 12px;
        overflow: hidden;
    }

    .sectors__body {
        order: 2;
    }

    /* 이미지 스택 - 모바일에서 단순화 */
    .sectors__image {
        position: absolute !important;
        inset: 0 !important;
        clip-path: inset(0% 0% 0% 0%) !important;
    }

    .sectors__image img {
        transform: none !important;
    }

    .image-title {
        font-size: 1.25rem;
        top: 16px;
        left: 16px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

    /* 텍스트 영역 */
    .title-wrapper {
        margin-bottom: 16px;
    }

    .sectors-label {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    .sectors-label::before {
        width: 16px;
    }

    .sectors-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .description-area {
        margin-top: 12px;
    }

    .description-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .desc-line {
        display: block;
        margin-top: 6px;
    }

    .highlight-marker {
        padding: 0 3px;
        margin: 0 -3px;
    }

    .highlight-box {
        padding: 2px 6px;
        margin: 0 2px;
        font-size: 0.9em;
        display: inline-block;
    }

    /* CTA 영역 */
    .sectors-cta-area {
        margin-top: 24px;
        padding-top: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .sectors-cta-btn {
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .sectors-cta-area .slide-counter {
        order: -1;
        margin-left: 0;
        justify-content: center;
        margin-bottom: 8px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--medium-gray);
        position: relative;
    }

    .sectors-cta-area .slide-counter .counter-current {
        font-size: 1.5rem;
    }

    .auto-progress {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
}

@media (max-width: 768px) {
    .sectors__container {
        padding: 50px 20px;
        gap: 24px;
    }

    .sectors__medias {
        aspect-ratio: 4/3;
        max-height: 40vh;
        min-height: 220px;
        border-radius: 10px;
    }

    .sectors-title {
        font-size: 1.35rem;
    }

    .description-text {
        font-size: 0.95rem;
    }

    .sectors-cta-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .image-title {
        font-size: 1.1rem;
        top: 12px;
        left: 12px;
    }
}

@media (max-width: 480px) {
    .sectors__container {
        padding: 40px 16px;
        gap: 20px;
    }

    .sectors__medias {
        max-height: 35vh;
        min-height: 200px;
    }

    .sectors-title {
        font-size: 1.25rem;
    }

    .description-text {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .highlight-box {
        padding: 1px 5px;
        font-size: 0.85em;
    }

    .sectors-cta-area .slide-counter .counter-current {
        font-size: 1.35rem;
    }
}

/* ========================================
   Process Section - 모바일 완전 리팩토링
======================================== */
@media (max-width: 1024px) {
    /* 섹션 기본 - pin 제거 */
    .timeline-section {
        min-height: auto !important;
        height: auto !important;
        padding: 60px 0;
        display: block;
    }

    .timeline-header {
        padding: 0 24px;
        margin-bottom: 32px;
    }

    .timeline-header h2 {
        font-size: 1.75rem;
    }

    .timeline-header p {
        font-size: 1rem;
    }

    /* 컨테이너 - 세로 배치 */
    .timeline-container {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 0 24px;
        max-width: 100%;
    }

    /* 스텝 영역 - 가로 스크롤 */
    .timeline-steps {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0 16px 0;
        margin: 0 -24px;
        padding-left: 24px;
        padding-right: 24px;
        gap: 8px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .timeline-steps::-webkit-scrollbar {
        display: none;
    }

    /* 타임라인 선 숨김 */
    .timeline-line {
        display: none !important;
    }

    /* 스텝 아이템 */
    .step-item {
        flex: 0 0 auto;
        min-width: 140px;
        max-width: 160px;
        padding: 16px;
        padding-left: 16px;
        background: var(--white);
        border: 2px solid var(--medium-gray);
        border-radius: 12px;
        scroll-snap-align: start;
        transition: all 0.3s ease;
    }

    .step-item.active {
        border-color: var(--primary-blue);
        background: rgba(0, 71, 171, 0.03);
    }

    .step-item.completed {
        border-color: var(--pantone-yellow);
        background: rgba(255, 209, 0, 0.05);
    }

    .step-dot {
        display: none !important;
    }

    .step-number {
        font-size: 0.65rem;
        color: var(--primary-blue);
        margin-bottom: 4px;
    }

    .step-title {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .step-item.active .step-title {
        color: var(--primary-blue);
    }

    .step-desc {
        font-size: 0.75rem;
        color: var(--dark-gray);
        display: block;
        line-height: 1.3;
    }

    .step-timer {
        margin-top: 10px;
        height: 3px;
        border-radius: 2px;
    }

    /* 디스플레이 영역 */
    .timeline-display {
        position: relative !important;
        min-height: 450px;
        height: auto;
        border-radius: 16px;
        overflow: hidden;
    }

    .display-panel {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
    }

    .display-visual {
        height: 45%;
        min-height: 180px;
    }

    .display-visual img,
    .display-visual video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .display-badge {
        top: 12px;
        left: 12px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .display-stats {
        bottom: 12px;
        left: 12px;
        right: 12px;
        gap: 16px;
    }

    .display-stats .stat-value {
        font-size: 1.25rem;
    }

    .display-stats .stat-label {
        font-size: 0.7rem;
    }

    .display-content {
        height: 55%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .display-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .display-desc {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .display-features {
        gap: 6px;
        flex-wrap: wrap;
    }

    .feature-tag {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    /* 컨트롤 버튼 */
    .timeline-controls {
        padding: 24px 24px 0;
        gap: 12px;
    }

    .control-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 50px 0;
    }

    .timeline-header {
        padding: 0 20px;
        margin-bottom: 24px;
    }

    .timeline-header h2 {
        font-size: 1.5rem;
    }

    .timeline-header p {
        font-size: 0.9rem;
    }

    .timeline-container {
        padding: 0 20px;
        gap: 20px;
    }

    .timeline-steps {
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        gap: 8px;
    }

    .step-item {
        min-width: 120px;
        max-width: 140px;
        padding: 12px;
    }

    .step-title {
        font-size: 0.9rem;
    }

    .step-desc {
        font-size: 0.7rem;
    }

    .timeline-display {
        min-height: 420px;
        border-radius: 14px;
    }

    .display-visual {
        height: 42%;
        min-height: 160px;
    }

    .display-content {
        height: 58%;
        padding: 16px;
    }

    .display-title {
        font-size: 1.15rem;
    }

    .display-desc {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }

    .timeline-controls {
        padding: 20px 20px 0;
    }
}

@media (max-width: 480px) {
    .timeline-section {
        padding: 40px 0;
    }

    .timeline-header h2 {
        font-size: 1.35rem;
    }

    .timeline-container {
        padding: 0 16px;
        gap: 16px;
    }

    .timeline-steps {
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
        gap: 6px;
    }

    .step-item {
        min-width: 100px;
        max-width: 120px;
        padding: 10px;
    }

    .step-number {
        font-size: 0.6rem;
    }

    .step-title {
        font-size: 0.8rem;
    }

    .step-desc {
        display: none;
    }

    .step-timer {
        margin-top: 8px;
    }

    .timeline-display {
        min-height: 380px;
        border-radius: 12px;
    }

    .display-visual {
        height: 40%;
        min-height: 140px;
    }

    .display-content {
        height: 60%;
        padding: 14px;
    }

    .display-title {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .display-desc {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .feature-tag {
        padding: 5px 8px;
        font-size: 0.7rem;
    }

    .timeline-controls {
        padding: 16px 16px 0;
        gap: 8px;
    }

    .control-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

/* ========================================
   터치 디바이스 최적화
======================================== */
@media (hover: none) and (pointer: coarse) {
    /* 호버 효과 제거 */
    .step-item:hover {
        transform: none;
    }

    .sectors-cta-btn:hover,
    .control-btn:hover {
        transform: none;
    }

    /* 터치 피드백 */
    .step-item:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }

    .sectors-cta-btn:active,
    .control-btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }

    /* 스크롤 힌트 - 스텝 영역 */
    .timeline-steps::after {
        content: '';
        flex: 0 0 20px;
    }
}

/* ========================================
   가로 모드 (Landscape) 대응
======================================== */
@media (max-width: 900px) and (orientation: landscape) {
    .sectors__container {
        flex-direction: row;
        padding: 40px 24px;
    }

    .sectors__medias {
        order: 2;
        flex: 1;
        max-height: 60vh;
        aspect-ratio: auto;
    }

    .sectors__body {
        order: 1;
        flex: 1;
    }

    .timeline-display {
        min-height: 350px;
    }

    .display-visual {
        height: 50%;
    }

    .display-content {
        height: 50%;
        padding: 12px 16px;
    }

    .display-desc {
        -webkit-line-clamp: 2;
    }
}

/* ========================================
   Safe Area (노치 대응)
======================================== */
@supports (padding: max(0px)) {
    @media (max-width: 1024px) {
        .sectors__container {
            padding-left: max(20px, env(safe-area-inset-left));
            padding-right: max(20px, env(safe-area-inset-right));
        }

        .timeline-container {
            padding-left: max(20px, env(safe-area-inset-left));
            padding-right: max(20px, env(safe-area-inset-right));
        }
    }
}
