/* 온라인 독서실 배너 섹션 스타일 */

@keyframes zoomInBg {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.12);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ess-main-banner {
    position: relative;
    width: 100%;
    height: 900px; /* 배너 높이 */
    overflow: hidden;
    color: #ffffff;
    font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
}

/* 배경 이미지 레이어 */
.ess-main-banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/ess/mainbanner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    /* 서서히 줌인 되는 모션 (12초 동안 부드럽게 줌인) */
    animation: zoomInBg 12s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 검은 투명 오버레이 */
.ess-main-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45); /* 45% 불투명도의 검정 레이어 */
    z-index: 2;
}

/* 컨테이너 */
.ess-main-banner .banner-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 3;
    display: flex;
    align-items: center; /* 세로 중앙 정렬 */
    justify-content: flex-start; /* 왼쪽 정렬 */
}

/* 콘텐츠 영역 */
.ess-main-banner .banner-content {
    max-width: 650px;
    text-align: left;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 태그 (상단 흰색 메인 타이틀) */
.ess-main-banner .banner-tag {
    display: block;
    font-size: 76px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 130px; /* 시안 상의 상단 타이틀과 서브 타이틀 간 큰 여백 */
    letter-spacing: -2px;
    line-height: 1.1;
}

/* 메인 타이틀 (중간 서브 타이틀) */
.ess-main-banner .banner-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 45px; /* 서브 타이틀과 하단 설명글 간 여백 */
    letter-spacing: -2px;
    color: #ffffff;
    word-break: keep-all;
}

.ess-main-banner .banner-title strong {
    font-weight: 700;
}

/* 설명 (하단 설명글) */
.ess-main-banner .banner-desc {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    letter-spacing: -1px;
    word-break: keep-all;
    opacity: 0.9;
}

/* 반응형 스타일 */
@media (max-width: 1024px) {
    .ess-main-banner {
        height: 700px;
    }
    .ess-main-banner .banner-tag {
        font-size: 58px;
        margin-bottom: 90px;
    }
    .ess-main-banner .banner-title {
        font-size: 40px;
        margin-bottom: 35px;
    }
    .ess-main-banner .banner-desc {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .ess-main-banner {
        height: 550px;
    }
    .ess-main-banner .banner-container {
        padding: 0 25px;
    }
    .ess-main-banner .banner-tag {
        font-size: 42px;
        margin-bottom: 60px;
    }
    .ess-main-banner .banner-title {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 25px;
    }
    .ess-main-banner .banner-desc {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* ==========================================================================
   신규 온라인 독서실 기획 섹션 공통 스타일
   ========================================================================== */
.ess-section {
    padding: 150px 0;
    background-color: #ffffff;
    font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
}

/* 짝수 섹션에 부드러운 회색 배경 적용 (지그재그 대비) */
.ess-section:nth-of-type(even) {
    background-color: #fcfcfc;
}

.ess-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.ess-section-title {
    font-size: 46px; /* 메인 타이틀 46px */
    font-weight: 700;
    color: #111111;
    text-align: center;
    margin-bottom: 100px;
    letter-spacing: -1.5px;
    line-height: 1.3;
}


/* ==========================================================================
   섹션 1 : 한 단계 더 진화한 온라인 학습공간 (.ess-intro-section) - 슬라이더 개편
   ========================================================================== */
.ess-intro-section {
    background-color: #0031a0!important; /* 짙은 파란색 배경 */
    color: #ffffff;
    padding: 150px 0;
    overflow: hidden;
}

.ess-intro-section .intro-flex-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

/* 좌측 고정 타이틀 및 그래픽 패널 */
.ess-intro-section .intro-left-panel {
    flex: 0 0 700px; /* 타이틀 공간 480px로 확장 */
    text-align: left;
    box-sizing: border-box;
}

.ess-intro-section .intro-main-title {
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.ess-intro-section .intro-sub-title {
    font-size: 22px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 40px;
    letter-spacing: -1px;
    word-break: keep-all;
}

.ess-intro-section .intro-graphic-wrap {
    width: 100%;
    max-width: 320px;
    margin-top: 20px;
}

.ess-intro-section .intro-graphic-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* 부드러운 3D 그래픽 부유 모션 */
    animation: floatCube 4.5s ease-in-out infinite;
}

@keyframes floatCube {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* 우측 롤링 슬라이더 패널 */
.ess-intro-section .intro-right-panel {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ess-intro-section .intro-slider-container {
    width: 100%;
    overflow: hidden; /* 가로 스크롤 완전 제거 */
    position: relative;
    border-radius: 20px!important;
}

.ess-intro-section .intro-slider-track {
    display: flex;
    width: 600%; /* 카드 6개 가로 병렬 배치 */
    gap: 0;
    padding: 10px 0;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 개별 슬라이드 카드 디자인 (가로 100% 꽉 채우며 정사각형 비율 적용) */
.ess-intro-section .intro-slide-card {
    width: calc(100% / 6); /* 트랙 내 1장 가득 차게 분할 */
    flex-shrink: 0;
    border-radius: 20px!important;
    padding: 60px 50px;
    box-sizing: border-box;
    position: relative;
    aspect-ratio: 1 / 1; /* 카드 정사각형 비율 지정 */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
}

.ess-intro-section .slide-card-title {
    font-size: 40px; /* 중간 타이틀 26px */
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    padding-right: 140px; /* 우측 150px 이미지 영역 침범 방지 */
}

.ess-intro-section .slide-card-desc {
    font-size: 22px; /* 콘텐츠 22px */
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    word-break: keep-all;
}

/* 카드 내 우측 하단 아이콘 */
.ess-intro-section .slide-card-icon {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 200px; /* 150픽셀 크기 적용 */
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ess-intro-section .slide-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 슬라이더 도트 컨트롤러 영역 */
.ess-intro-section .slider-controls-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    width: 100%;
}

.ess-intro-section .slider-dots-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ess-intro-section .slider-dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%!important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ess-intro-section .slider-dot.active {
    background-color: #FFED00;
    transform: scale(1.2);
    width: 12px;
    height: 12px;
}


/* ==========================================================================
   섹션 2~4 : 관리 매니저, 학습패턴, 1:1 연계 공통 프레임워크
   ========================================================================== */
.management-box {

}

.management-box .box-row {
    display: flex;
    align-items: stretch;
}

.management-box .box-row.border-top {
    border-top: 1px solid #e9ecef;
}

.management-box .box-content {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.management-box .box-image {
    flex: 0.9;
    min-height: 380px;
    position: relative;
    box-sizing: border-box;
}

/* 이미지 플레이스홀더 (개발용) */
.management-box .image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f3f5;
    padding: 20px;
    box-sizing: border-box;
    border-left: 1px solid #e9ecef;
}

.management-box .placeholder-text {
    font-size: 15px;
    font-weight: 500;
    color: #868e96;
    text-align: center;
    line-height: 1.5;
    word-break: keep-all;
}

/* 설명 블록 구성 */
.management-box .content-block {
    margin-bottom: 65px;
}

.management-box .content-block:last-child {
    margin-bottom: 0;
}

.management-box .block-title {
    font-size: 26px; /* 중간 타이틀 26px */
    font-weight: 700;
    color: #222222;
    margin-top: 0;
    margin-bottom: 0px;
    letter-spacing: -0.5px;
}

.management-box .block-desc {
    font-size: 22px; /* 콘텐츠 22px */
    color: #666666;
    line-height: 1.65;
    margin: 0;
    word-break: keep-all;
}

.management-box .time-info {
    margin-top: 20px;
    padding: 16px 20px;
    background-color: #f8f9fa;
    border-radius: 8px!important;
    border-left: 4px solid #ff5c35;
}

.management-box .time-info p {
    font-size: 15px;
    color: #495057;
    margin: 0 0 6px 0;
}

.management-box .time-info p:last-child {
    margin: 0;
}

.management-box .time-info strong {
    color: #222222;
    font-weight: 700;
}

/* 하단 알림 띠 */
.management-box .box-bottom-bar {
    padding: 60px 60px;
    text-align: center;
}

.management-box .box-bottom-bar p {
    font-size: 22px; /* 콘텐츠 22px */
    font-weight: 500;
    color: #495057;
    margin: 0;
    word-break: keep-all;
}


/* ==========================================================================
   섹션 4 전용 추가 스타일 (상상코칭이 다른 이유)
   ========================================================================== */
.ess-linkage-section .why-sangsang-box {
    margin-top: 45px;
    background-color: #fdf0eb;
    border: 1px solid #f9d9cd;
    border-radius: 16px!important;
    padding: 35px 40px;
    box-sizing: border-box;
    text-align: center;
}

.ess-linkage-section .why-title {
    font-size: 26px; /* 중간 타이틀 26px */
    font-weight: 700;
    color: #e0441d;
    margin-top: 0;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.ess-linkage-section .why-desc {
    font-size: 22px; /* 콘텐츠 22px */
    color: #495057;
    line-height: 1.65;
    margin: 0;
    font-weight: 500;
    word-break: keep-all;
}


/* ==========================================================================
   섹션 5 : 무료 체험 CTA (.ess-cta-section)
   ========================================================================== */
.ess-cta-section {
    padding: 90px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.ess-cta-section .cta-title {
    font-size: 46px;
    font-weight: 700;
    color: #222222;
    margin-top: 0;
    margin-bottom: 35px;
    letter-spacing: -1px;
	line-height: 1.4;
}

.ess-cta-section .cta-btn-wrap {
    display: block;
}

.ess-cta-section .cta-orange-btn {
    display: inline-block;
    background-color: #ff5c35;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 35px!important;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 92, 53, 0.25);
    transition: all 0.3s ease;
}

.ess-cta-section .cta-orange-btn:hover {
    background-color: #e0441d;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 92, 53, 0.35);
}


/* ==========================================================================
   신규 섹션 반응형 스타일 (모바일 및 태블릿)
   ========================================================================== */
@media (max-width: 1024px) {
    .ess-section {
        padding: 70px 0;
    }
    
    .ess-section-title {
        font-size: 38px;
        margin-bottom: 85px;
    }
    
    /* 섹션 1 반응형 */
    .ess-intro-section .intro-flex-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .ess-intro-section .intro-left-panel {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .ess-intro-section .intro-left-panel .intro-graphic-wrap {
        margin: 25px auto 0 auto;
    }

    .ess-intro-section .intro-right-panel {
        width: 100%;
    }

    
    .management-box .box-image {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .ess-section {
        padding: 55px 0;
    }
    
    .ess-section-title {
        font-size: 32px;
        margin-bottom: 65px;
        line-height: 1.35;
    }
    
    /* 섹션 1 반응형 */
    .ess-intro-section .intro-main-title {
        font-size: 32px;
    }

    .ess-intro-section .intro-sub-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .ess-intro-section .intro-slide-card {
        width: calc(100% / 6) !important; /* 트랙 스케일에 맞춰 1장 핏 유지 */
        padding: 35px 30px;
        aspect-ratio: auto !important; /* 모바일 텍스트 범람 방지를 위해 정사각형 비율 해제 */
        min-height: 260px; /* 텍스트 수용을 위한 최소 높이 확보 */
    }

    .ess-intro-section .slide-card-title {
        font-size: 22px;
        margin-bottom: 15px;
        padding-right: 90px !important; /* 모바일 아이콘 겹침 방지 여백 */
    }

    .ess-intro-section .slide-card-desc {
        font-size: 18px;
        line-height: 1.45;
        padding-right: 90px !important; /* 모바일 아이콘 겹침 방지 여백 */
    }

    .ess-intro-section .slide-card-icon {
        width: 130px !important; /* 모바일 카드에 맞춤형 100px 크기 */
        height: 130px !important;
        right: 15px !important;
        bottom: 15px !important;
    }

    .ess-intro-section .slide-card-icon img {
        width: 130px !important;
        height: 130px !important;
        object-fit: contain;
    }

    .ess-intro-section .slider-controls-wrap {
        margin-top: 25px;
        gap: 20px;
    }
    
    /* 관리매니저 / 패턴 / 1:1 연계 반응형 (1열 세로 스택) */
    .management-box .box-row {
        flex-direction: column;
    }
    
    
    .management-box .box-image {
        min-height: 240px;
    }
    
    .management-box .image-placeholder {
        border-left: none;
        border-top: 1px solid #e9ecef;
    }
    
    .management-box .block-title {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .management-box .block-desc {
        font-size: 18px;
        line-height: 1.55;
    }
    
    .management-box .time-info {
        margin-top: 15px;
        padding: 12px 15px;
    }
    
    .management-box .time-info p {
        font-size: 13px;
    }
    
    .management-box .box-bottom-bar {
        padding: 30px 20px;
    }
    
    .management-box .box-bottom-bar p {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .ess-linkage-section .why-sangsang-box {
        margin-top: 30px;
        padding: 25px 20px;
    }
    
    .ess-linkage-section .why-title {
        font-size: 22px;
        margin-bottom: 8px;
    }
    
    .ess-linkage-section .why-desc {
        font-size: 18px;
        line-height: 1.5;
    }
    
    /* CTA 반응형 */
    .ess-cta-section {
        padding: 60px 0;
    }
    
    .ess-cta-section .cta-title {
        font-size: 22px;
        margin-bottom: 25px;
        line-height: 1.35;
    }
    
    .ess-cta-section .cta-orange-btn {
        font-size: 15px;
        padding: 14px 35px;
    }
}

/* ==========================================================================
   신규 섹션 : 확보되는 순공시간 (3개 동그라미) 디자인 및 모션
   ========================================================================== */
.ess-studytime-section {
    background-color: #ffffff;
    padding: 150px 0;
    text-align: center;
}

.ess-studytime-section .ess-section-title {
    font-size: 46px; /* 메인타이틀 46px */
    font-weight: 700;
    color: #111111;
    margin-top: 0;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.ess-studytime-section .ess-section-subtitle {
    font-size: 22px; /* 콘텐츠 22px */
    font-weight: 300;
    color: #666666;
    margin-top: 0;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    line-height: 1.4;
}

/* 동그라미 감싸는 flex 박스 */
.studytime-circle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px; /* 원 간의 적절한 간격 축소 */
    flex-wrap: nowrap; /* 데스크톱 한 줄 정렬 강제 */
    max-width: 1200px; /* 1200px 안으로 강제 */
    margin: 0 auto;
    width: 100%;
}

/* 개별 동그라미 카드 */
.studytime-circle-item {
    position: relative;
    width: 250px; /* 원 지름 250px로 최적화 */
    height: 250px;
    flex-shrink: 0; /* 찌그러짐 차단 */
    border-radius: 50% !important; /* 항상 완전한 구체 형태로 유지 */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    /* 스크롤 등장 애니메이션 준비 상태 */
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: 
        opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* 뷰포트 진입 시 JS 클래스 추가되어 실행 */
.studytime-circle-item.reveal-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 호버 시 3D 바운스 */
.studytime-circle-item:hover {
    transform: translateY(-8px) scale(1.06);
    border-color: rgba(255, 255, 255, 0.3);
}

/* 1번째 원 (하루) - 활력 넘치는 코랄 오렌지 */
.studytime-circle-item.circle-first {
    background: linear-gradient(135deg, #ff6b4a 0%, #e04d2b 100%);
    box-shadow: 0 15px 35px rgba(255, 107, 74, 0.18);
}
.studytime-circle-item.circle-first:hover {
    box-shadow: 0 25px 45px rgba(255, 107, 74, 0.35);
}

/* 2번째 원 (1주일) - 신뢰감을 주는 스마트 블루 */
.studytime-circle-item.circle-second {
    background: linear-gradient(135deg, #0062ff 0%, #003bb0 100%);
    box-shadow: 0 15px 35px rgba(0, 98, 255, 0.18);
}
.studytime-circle-item.circle-second:hover {
    box-shadow: 0 25px 45px rgba(0, 98, 255, 0.35);
}

/* 3번째 원 (한달) - 성장을 뜻하는 에메랄드 그린 */
.studytime-circle-item.circle-third {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.18);
}
.studytime-circle-item.circle-third:hover {
    box-shadow: 0 25px 45px rgba(16, 185, 129, 0.35);
}

/* 내부에 빛 반사 스위핑(Sweeping) 효과 가상 요소 */
.studytime-circle-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.25) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s ease-out;
}

.studytime-circle-item:hover::before {
    left: 140%;
}

/* 내부에 점선 회전 링 데코레이션 */
.studytime-circle-item::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1.5px dashed rgba(255, 255, 255, 0.15);
    border-radius: 50% !important;
    z-index: 1;
    pointer-events: none;
    transition: border-color 0.3s, transform 0.3s;
}

.studytime-circle-item:hover::after {
    border-color: rgba(255, 255, 255, 0.35);
    animation: rotateRing 15s linear infinite;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 동그라미 내부 텍스트 컨테이너 */
.studytime-circle-item .circle-inner {
    text-align: center;
    transition: transform 0.35s ease;
    z-index: 2;
}

.studytime-circle-item:hover .circle-inner {
    transform: translateY(-4px);
}

/* 내부 아이콘 */
.studytime-circle-item .circle-icon {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.studytime-circle-item .circle-icon svg {
    width: 42px;
    height: 42px;
}

.studytime-circle-item:hover .circle-icon {
    transform: scale(1.1) translateY(-2px);
    color: #ffffff;
}

/* 하루/1주일/한달 */
.studytime-circle-item .circle-label {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.studytime-circle-item:hover .circle-label {
    color: #ffbe6b; /* 호버 시 라벨 오렌지/옐로우빛 하이라이트 */
}

/* 시간 수치 */
.studytime-circle-item .circle-value {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* 원과 원 사이 연결 화살표 */
.studytime-arrow-item {
    color: #b0c2cb;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.studytime-arrow-item.reveal-active {
    opacity: 1;
    transform: translateX(0);
    animation: arrowPulse 2.5s infinite ease-in-out;
}

.studytime-arrow-item svg {
    width: 36px;
    height: 36px;
}

@keyframes arrowPulse {
    0% { transform: translateX(-4px); opacity: 0.4; }
    50% { transform: translateX(4px); opacity: 1; }
    100% { transform: translateX(-4px); opacity: 0.4; }
}

/* ==========================================================================
   확보되는 순공시간 섹션 반응형 (미디어 쿼리)
   ========================================================================== */
@media (max-width: 768px) {
    .ess-studytime-section {
        padding: 55px 0;
    }

    .ess-studytime-section .ess-section-title {
        font-size: 32px;
    }

    .ess-studytime-section .ess-section-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .studytime-circle-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .studytime-circle-item {
        width: 220px;
        height: 220px;
    }

    .studytime-circle-item::after {
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .studytime-circle-item .circle-icon {
        margin-bottom: 8px;
    }

    .studytime-circle-item .circle-icon svg {
        width: 32px;
        height: 32px;
    }

    .studytime-circle-item .circle-label {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .studytime-circle-item .circle-value {
        font-size: 32px;
    }

    /* 모바일에서는 화살표가 수직 아래를 가리키도록 90도 회전 및 정렬 */
    .studytime-arrow-item {
        transform: translateY(-20px) rotate(90deg);
    }

    .studytime-arrow-item.reveal-active {
        transform: rotate(90deg);
        animation: arrowPulseY 2.5s infinite ease-in-out;
    }

    @keyframes arrowPulseY {
        0% { transform: rotate(90deg) translateX(-4px); opacity: 0.4; }
        50% { transform: rotate(90deg) translateX(4px); opacity: 1; }
        100% { transform: rotate(90deg) translateX(-4px); opacity: 0.4; }
    }
}

/* ==========================================================================
   실시간 학습 관리 섹션 (.ess-management-section) 다크 스타일 오버라이딩
   ========================================================================== */
.ess-management-section {
    background-color: #000000 !important; /* 전체 배경 검정색 강제 */
    transition: background-color 0.3s ease;
}

.ess-management-section .ess-section-title {
    color: #ffffff !important; /* 메인 타이틀 흰색 강제 */
}

/* 다크 매니지먼트 박스 커스텀 (완벽한 올 블랙화) */
.ess-management-section .management-box {
    background-color: #000000 !important;
    border: none !important;
    box-shadow: none !important;
}

.ess-management-section .management-box .block-title {
    color: #ffffff !important; /* 블록 제목 흰색 */
}

.ess-management-section .management-box .block-desc {
    color: rgba(255, 255, 255, 0.75) !important; /* 블록 설명 연한 흰색 */
}

/* 우측 이미지 영역 다크화 (완벽한 올 블랙화) */
.ess-management-section .management-box .box-image {
    background-color: #000000 !important;
}

.ess-management-section .management-box .image-placeholder {
    background-color: #000000 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.ess-management-section .management-box .placeholder-text {
    color: rgba(255, 255, 255, 0.45) !important;
}

/* 운영 시간 안내 다크화 */
.ess-management-section .management-box .time-info {
    background-color: #0d0d0d !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-left: 4px solid #ff5c35 !important;
}

.ess-management-section .management-box .time-info p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.ess-management-section .management-box .time-info strong {
    color: #ffffff !important;
}

/* 하단 알림 띠 다크화 */
.ess-management-section .management-box .box-bottom-bar {
    background-color: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.ess-management-section .management-box .box-bottom-bar p {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* 추가 피드백: 왼쪽 블록 간 간격 확장 및 우측 신규 이미지 튜닝 */
.ess-management-section .management-box .content-block {
    margin-bottom: 65px !important; /* 사이 간격 시원하게 65px로 확장 */
}

/* 두 번째(마지막) 설명 블록의 버텀 마진은 PC/모바일 전면 제거 */
.ess-management-section .management-box .content-block:last-child {
    margin-bottom: 20px !important;
}

.ess-management-section .management-box .box-image {
    background-color: #000000 !important;
    min-height: auto !important; /* 찌그러짐 방지 및 정비율 지원을 위해 최소높이 해제 */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px; /* 상하 여백 제공 */
}

.ess-management-section .management-preview-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    border-radius: 12px !important; /* 12px 라운드 코너 스타일링 */
}

/* 추가 피드백: 형광펜 및 물결무늬 텍스트 데코레이터 스타일 */
.ess-management-section .wavy-underline {
    text-decoration: underline wavy #FFED00 !important; /* 형광 노란색 물결 밑줄 */
    text-underline-offset: 8px !important;
}

.ess-management-section .highlight-yellow {
    background: linear-gradient(180deg, rgba(255, 237, 0, 0) 45%, rgba(255, 237, 0, 0.38) 45%) !important; /* 노란색 형광펜 */
    padding: 2px 4px !important;
    border-radius: 4px !important;
    display: inline !important;
    color: #ffffff !important;
}

.ess-management-section .highlight-orange {
    background: linear-gradient(180deg, rgba(255, 92, 53, 0) 45%, rgba(255, 92, 53, 0.42) 45%) !important; /* 주황색 형광펜 */
    padding: 2px 4px !important;
    border-radius: 4px !important;
    display: inline !important;
    color: #ffffff !important;
}

/* 모바일 줄바꿈 제어 기본 숨김 */
.mobile-br {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-br {
        display: inline !important; /* 모바일 환경에서만 2줄 줄바꿈 노출 */
    }
}

/* ==========================================================================
   학습패턴 루틴 완성 라이트 테마 섹션 (.ess-routine-section)
   ========================================================================== */
.ess-routine-section {
    background-color: #ffffff !important; /* 전체 배경 흰색 */
}

.ess-routine-section .ess-section-title {
    color: #222222 !important; /* 타이틀 검은색 */
}

.ess-routine-section .management-box .block-title {
    color: #222222 !important; /* 소제목 검은색 */
}

.ess-routine-section .management-box .block-desc {
    color: #666666 !important; /* 본문 짙은 회색 */
}

/* 이미지 배너 영역 및 캡쳐 둥근 모서리 맞춤 */
.ess-routine-section .management-box .box-image {
    min-height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px !important;
}



.ess-routine-section .management-box .box-bottom-bar p {
    color: #495057 !important; /* 어두운 회색 글씨 */
    font-weight: 500 !important;
}

/* 모바일 및 반응형 여백 조율 */
@media (max-width: 768px) {
    .ess-routine-section .management-box .box-image {
        padding: 20px !important;
    }
}

/* 추가 피드백: 학습패턴 루틴 라이트 모드 전용 형광펜 및 물결 밑줄 스타일 */
.ess-routine-section .wavy-underline {
    text-decoration: underline wavy #ff5c35 !important; /* 스마트 라이트 테마에 맞는 주황색 물결 밑줄 */
    text-underline-offset: 8px !important;
}

.ess-routine-section .highlight-yellow {
    background: linear-gradient(180deg, rgba(255, 237, 0, 0) 40%, rgba(255, 237, 0, 0.55) 40%) !important; /* 선명한 노란색 형광펜 */
    padding: 2px 4px !important;
    border-radius: 4px !important;
    display: inline !important;
}

.ess-routine-section .highlight-blue {
    background: linear-gradient(180deg, rgba(0, 98, 255, 0) 40%, rgba(0, 98, 255, 0.16) 40%) !important; /* 스마트 소프트 블루 형광펜 */
    padding: 2px 4px !important;
    border-radius: 4px !important;
    display: inline !important;
}

.ess-routine-section .highlight-orange {
    background: linear-gradient(180deg, rgba(255, 107, 74, 0) 40%, rgba(255, 107, 74, 0.25) 40%) !important; /* 소프트 주황색 형광펜 */
    padding: 2px 4px !important;
    border-radius: 4px !important;
    display: inline !important;
}

/* ==========================================================================
   상상코칭이 다른 이유 캡슐 섹션 스타일 (.ess-why-sangsang-section)
   ========================================================================== */
.ess-why-sangsang-section {
    background-color: #0031a0!important;
    padding: 150px 0 !important;
    overflow: hidden;
}

.ess-why-section-title {
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-align: center;
    margin-top: 0;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.why-capsule-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px; /* 두 캡슐의 수직 간격 */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.why-capsule-row {
    display: flex;
    align-items: center;
    width: 100%;
    opacity: 0.98;
}

/* 첫 번째 캡슐: 왼쪽으로 정렬 (왼쪽 여백 배치) */
.why-capsule-row.row-left {
    justify-content: flex-start;
}

/* 두 번째 캡슐: 오른쪽으로 정렬 (오른쪽 여백 배치) */
.why-capsule-row.row-right {
    justify-content: flex-end;
}

/* 캡슐 알약 형태의 골드 앰버 오렌지 박스 */
.why-capsule-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #FFA726 0%, #FB8C00 100%) !important; /* 파란 배경 및 푸른 아이콘과 보색 조화를 이루는 오렌지 그라데이션 */
    border-radius: 130px !important;
    padding: 50px 100px !important;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 15px 40px rgba(251, 140, 0, 0.3) !important;
    position: relative;
}

.capsule-text {
    font-size: 30px;
    font-weight: 500;
    color: #111111 !important; /* 밝은 오렌지 배경 위 시인성을 위한 짙은 차콜 */
    line-height: 1.5;
    letter-spacing: -0.8px;
    word-break: keep-all;
}

/* 캡슐 내부 특정 단어 강조 (밑줄 제거 및 딥 블루로 강조) */
.capsule-text strong {
    font-weight: 900 !important;
    font-size: 29px !important;
    color: #0031a0 !important; /* 상상코칭 딥 블루 포인트 강조 */
    border-bottom: none !important;
    display: inline-block;
    letter-spacing: -0.5px;
}

.capsule-text.text-right-layout {
    text-align: right;
}

.capsule-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    position: relative;
    flex-shrink: 0;
}

/* 캡슐 밖으로 살짝 튀어나오는 고품질 3D 입체 데코 효과 */
.capsule-icon {
    width: 180px;
    height: auto;
    position: absolute;
    top: -30px; /* 캡슐 위쪽으로 살짝 돌출 */
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
    transition: transform 0.3s ease;
}

.why-capsule-box:hover .capsule-icon {
    transform: translateY(-8px) scale(1.05); /* 살짝 떠오르는 마이크로 모션 */
}

/* 따옴표 SVG 박스 */
.why-quote {
    width: 60px;
    height: auto;
    flex-shrink: 0;
    margin: 0 35px;
    opacity: 0.9;
}

.why-quote svg {
    width: 100%;
    height: auto;
}

/* 모바일 반응형 조율 (768px 이하) */
@media (max-width: 768px) {
    .ess-why-sangsang-section {
        padding: 60px 0 !important;
    }
    
    .ess-why-section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .why-capsule-wrapper {
        gap: 30px;
    }
    
    .why-capsule-row.row-left,
    .why-capsule-row.row-right {
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }
    
    /* 모바일에서는 따옴표 기호를 숨겨 캡슐 가독성을 극대화 */
    .why-quote {
        display: none !important;
    }
    
    .why-capsule-box {
        border-radius: 30px !important; /* 모바일에서는 직사각형에 어울리도록 조절 */
        padding: 25px 30px !important;
        max-width: 92%;
        flex-direction: column; /* 세로 배열로 찌그러짐 방지 */
        gap: 20px;
        text-align: center;
    }
    
    .capsule-text {
        font-size: 20px;
        order: 2; /* 텍스트가 아래로 */
    }
    
    .capsule-text strong {
        font-size: 21px;
    }
    
    .capsule-text.text-right-layout {
        text-align: center;
    }
    
    .capsule-icon-wrap {
        width: 100px;
        /*height: 100px;*/
        order: 1; /* 아이콘이 위로 */
    }
    
    .capsule-icon.trophy-icon,
    .capsule-icon.crown-icon {
        width: 120px !important;
        position: static !important;
        transform: none !important;
        margin: 0 auto !important;
    }
}

/* ==========================================================================
   개별 아이콘 크기 및 위치 세밀 튜닝 (PC 전용)
   ========================================================================== */
/* 트로피 아이콘: 위로 더 돌출되고 세로 비례 최적화 */
.why-capsule-box .capsule-icon.trophy-icon {
    width: 180px !important;
    top: -2px !important;
    right: -10px !important;
}

/* 왕관 아이콘: 가로로 둥글고 비스듬히 얹히는 왕관 고유 비주얼 튜닝 */
.why-capsule-box .capsule-icon.crown-icon {
    width: 220px !important;
    top: 10px !important;
    left: -20px !important;
}

/* 호버 시 부드러운 모션 분리 적용 */
.why-capsule-box:hover .capsule-icon.trophy-icon {
    transform: translateY(-8px) scale(1.05) !important;
}

.why-capsule-box:hover .capsule-icon.crown-icon {
    transform: translateY(-8px) rotate(-10deg) scale(1.05) !important;
}


@media (max-width: 768px) {
    .why-capsule-box .capsule-icon.trophy-icon {
        width: 120px !important;
    }
    .why-capsule-box .capsule-icon.crown-icon {
        width: 150px !important;	
    }
}

/* ==========================================================================
   추가 피드백: 둥근 쌍따옴표 폰트 튜닝
   ========================================================================== */

/* 화살표/다각형 SVG 대신 키보드에 나오는 클래식하고 우아한 둥근 쌍따옴표(serif) 형태로 변경 */
.ess-why-sangsang-section .why-quote {
    font-family: 'Georgia', 'Times New Roman', serif !important;
    font-size: 140px !important;
    font-weight: 800 !important;
    color: #FFC700 !important; /* 눈에 띄는 화사한 골드 옐로우 */
    line-height: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    user-select: none;
}

/* 여는 따옴표와 닫는 따옴표의 미세 수직 정렬 보정 */
.ess-why-sangsang-section .why-quote.quote-left {
    margin-top: 50px !important; /* 여는 따옴표(“): 위쪽 여백을 주어 중앙에 정렬 */
}

.ess-why-sangsang-section .why-quote.quote-right {
    margin-top: -10px !important; /* 닫는 따옴표(”): 세로 baseline 보정 */
}

/* 모바일 텍스트 폰트 크기 및 밑줄 리셋 조율 */
@media (max-width: 768px) {
    .ess-why-sangsang-section .capsule-text strong {
        font-size: 23px !important;
    }
}

/* ==========================================================================
   추가 피드백: 무료 체험 CTA 섹션 배경 이미지 적용 및 텍스트/버튼 가독성 보강
   ========================================================================== */
.ess-cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('/ssc/resources/img/ess/cta_bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 150px 0 !important; /* 배경 이미지가 잘 부각되도록 수직 패딩을 늘림 */
    text-align: center !important;
}

.ess-cta-section .cta-title {
    color: #ffffff !important; /* 텍스트 흰색으로 오버라이드해 가독성 보장 */
    font-size: 38px !important;
    font-weight: 700 !important;
    margin-bottom: 35px !important;
    letter-spacing: -1px !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6) !important; /* 텍스트 그림자로 입체감 및 가독성 부여 */
}

.ess-cta-section .cta-orange-btn {
    background-color: #ff7b4a !important; /* 선명하고 고급스러운 오렌지색 버튼 */
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 18px 45px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 25px rgba(255, 123, 74, 0.4) !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.ess-cta-section .cta-orange-btn:hover {
    background-color: #ff5c20 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(255, 123, 74, 0.5) !important;
}

/* 모바일 반응형 CTA 폰트 조율 */
@media (max-width: 768px) {
    .ess-cta-section {
        padding: 80px 0 !important;
    }
    
    .ess-cta-section .cta-title {
        font-size: 32px !important;
        margin-bottom: 25px !important;
        line-height: 1.4 !important;
        word-break: keep-all !important;
    }
    
    .ess-cta-section .cta-orange-btn {
        padding: 15px 35px !important;
        font-size: 16px !important;
    }
}

/* ==========================================================================
   최종 모바일 반응형 레이아웃 틀어짐 정밀 교정 오버라이드 (768px 이하)
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. 신규 루틴 섹션 모바일 수직 1열 정렬 및 가로폭 100% 고정 (찌그러짐/터짐 방지) */
    .ess-routine-section .management-box .box-row {
        flex-direction: column !important; /* 모바일에서 텍스트가 위, 세로 병합 이미지가 아래로 1열 배열 */
        gap: 35px !important;
    }
    
    .ess-routine-section .management-box .box-content,
    .ess-routine-section .management-box .box-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 0 !important;
    }
    
    /* 2. 세로 병합된 대시보드 리포트 이미지가 모바일에서도 큼직하고 선명하게 확대 노출되도록 튜닝 */
    .ess-routine-section .routine-preview-img {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 520px !important; /* 세로로 병합된 리포트 카드를 고려하여 max-height 넉넉히 확장 */
        height: auto !important;
        object-fit: contain !important;
    }
    
    /* 3. 상상코칭이 다른 이유 캡슐 배너의 모바일 텍스트 크기 미세 피팅 */
    .ess-why-sangsang-section .capsule-text {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }
    
    .ess-why-sangsang-section .capsule-text strong {
        font-size: 19px !important;
    }
    
    /* 4. 모바일에서의 캡슐 박스 정중앙 정렬 보장 */
    .why-capsule-row {
        width: 100% !important;
        justify-content: center !important;
        padding: 0 15px !important;
    }
}

/* ==========================================================================
   추가 피드백: 혜택 카드 6종 개별 진한 보색 대비 컬러 적용 및 상위 카드 요소(.intro-slide-card) 맵핑
   ========================================================================== */
/* 내부 .card-inner의 독자적인 짙은/검은색 배경 및 테두리 강제 해제하여 투명화 */
.ess-intro-section .intro-slide-card .card-inner {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* 최상위 둥근 사각형 카드 박스(.ess-intro-section .intro-slide-card)에 보색 대비 배경색 직접 적용 */
/* 가중치 보강 및 PC 슬라이더 비활성 카드의 opacity 감쇠 현상 방지를 위해 opacity: 1 !important 강제 부여 */
.ess-intro-section .intro-slide-card:nth-of-type(1) {
    background-color: #E64A19 !important; /* 진한 레드 코랄 */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    opacity: 1 !important;
}

.ess-intro-section .intro-slide-card:nth-of-type(2) {
    background-color: #FFA000 !important; /* 진한 앰버 골드 옐로우 */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    opacity: 1 !important;
}

.ess-intro-section .intro-slide-card:nth-of-type(3) {
    background-color: #00BFA5 !important; /* 진한 터쿼이즈 민트 틸 */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    opacity: 1 !important;
}

.ess-intro-section .intro-slide-card:nth-of-type(4) {
    background-color: #D81B60 !important; /* 진한 로즈 매젠타 */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    opacity: 1 !important;
}

.ess-intro-section .intro-slide-card:nth-of-type(5) {
    background-color: #7B1FA2 !important; /* 진한 퍼플 바이올렛 */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    opacity: 1 !important;
}

.ess-intro-section .intro-slide-card:nth-of-type(6) {
    background-color: #FF5722 !important; /* 진한 코랄 주황 */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    opacity: 1 !important;
}

/* 짙은 배경 카드 위 텍스트 가독성을 위해 흰색으로 통합 전환 및 섀도우 처리 */
.ess-intro-section .intro-slide-card .slide-card-title {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
}

.ess-intro-section .intro-slide-card .slide-card-desc {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) !important;
}

/* 마우스 호버 시 최상위 카드 박스 자체에 세련된 밝기 대비 및 확대 모션 부여 */
.ess-intro-section .intro-slide-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.ess-intro-section .intro-slide-card:hover {
    filter: brightness(1.08) !important; /* 살짝 밝게 강조 */
    transform: translateY(-6px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25) !important;
}

