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

html {
    height: 100%;
}

body {
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'Osaka', 'MS Pゴシック', sans-serif;
    line-height: 1.7;
    color: #333;
    overflow-x: hidden;
    height: 100%;
}

.pricing-page {
    background-color: #FFFFFF;
}

/* Team Page Specific Styles - PC only */
@media (min-width: 769px) {
    .team-page .main-content {
        margin-top: 0 !important;
        margin-left: 130px !important;
    }

    .team-page .sidebar {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 20px 0 !important;
    }
}

/* Pricing Page Specific Styles - PC only */
@media (min-width: 769px) {
    .pricing-page .main-content {
        margin-top: 0 !important;
        margin-left: 130px !important;
    }

    .pricing-page .sidebar {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 20px 0 !important;
    }
}

/* Career Page Specific Styles - PC only */
@media (min-width: 769px) {
    .career-page .main-content {
            min-width: 320px;
            min-height: 380px;
        margin-top: 0 !important;
        margin-left: 130px !important;
    }

    .career-page .sidebar {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 20px 0 !important;
    }
}

/* Trial Page Specific Styles - PC only */
@media (min-width: 769px) {
    /* 데스크톱에서 769px~1024px 사이일 때 1열로 변경 및 맵 크기 보장 */
    @media (max-width: 1024px) and (min-width: 769px) {
        .contact-page .contact-container {
            display: block !important;
            margin-bottom: 40px !important;
        }
        .contact-page .contact-container>.address-info,
        .contact-page .contact-container>.map-container {
            width: 100% !important;
            margin: 0 0 18px 0 !important;
        }
        .contact-page .map-container {
            min-width: 320px !important;
            min-height: 320px !important;
        }
        .contact-page .map-container>div,
        .contact-page .map-container iframe {
            min-height: 320px !important;
        }
    }
    .trial-page .main-content {
        margin-top: 0 !important;
        margin-left: 130px !important;
    }

    .trial-page .sidebar {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 20px 0 !important;
    }
}

.team-header.content-section {
    margin-bottom: 0;
    background: #FFFFFF;
    border-radius: 0;
    padding-bottom: 40px;
    /* Reduce padding to bring sections closer */
}

#team.content-section {
    margin-top: 0;
    padding-top: 40px;
    background: #FFFFFF;
    border-radius: 0;
    margin-bottom: 0;
}

/* スプラッシュ画面 */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: none;
    /* 기본적으로 숨김 */
    align-items: center;
    justify-content: center;
    background: #000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

/* 처음 방문자를 위한 스플래시 화면 표시 */
.splash-screen.show {
    display: flex;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/eco2.jpg') center/cover no-repeat;
    opacity: 0.3;
    z-index: 1;
}

.splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: splashFadeIn 2s ease-out;
}

.splash-logo {
    margin-bottom: 30px;
    animation: splashLogoScale 1.5s ease-out;
}

.splash-logo img {
    height: 120px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.splash-title {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: splashTitleSlide 1.5s ease-out 0.5s both;
}

.splash-subtitle {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: splashSubtitleSlide 1.5s ease-out 1s both;
}

/* 스플래시 화면 초록색 텍스트 */
.eco-text {
    color: #4CAF50;
    text-shadow: 0 4px 20px rgba(76, 175, 80, 0.6);
    animation: ecoGlow 2s ease-in-out infinite alternate;
}

.highlight-text {
    color: #66BB6A;
    text-shadow: 0 2px 15px rgba(102, 187, 106, 0.6);
    font-weight: 500;
    animation: highlightGlow 2.5s ease-in-out infinite alternate;
}

/* 초록색 텍스트 글로우 효과 */
@keyframes ecoGlow {
    0% {
        text-shadow: 0 4px 20px rgba(76, 175, 80, 0.6);
    }

    100% {
        text-shadow: 0 4px 30px rgba(76, 175, 80, 0.9), 0 0 20px rgba(76, 175, 80, 0.4);
    }
}

@keyframes highlightGlow {
    0% {
        text-shadow: 0 2px 15px rgba(102, 187, 106, 0.6);
    }

    100% {
        text-shadow: 0 2px 25px rgba(102, 187, 106, 0.9), 0 0 15px rgba(102, 187, 106, 0.4);
    }
}

/* 스플래시 애니메이션 */
@keyframes splashFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes splashLogoScale {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.1) rotate(0deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes splashTitleSlide {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes splashSubtitleSlide {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 0.9;
        transform: translateX(0);
    }
}


/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 130px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    z-index: 1001;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    /* 모서리 각지게 */
    transition: transform 0.4s ease;
    height: 100dvh;
    overflow-y: auto;
}

.sidebar-logo {
    text-align: center;
    padding: 0 10px;
}

.sidebar-logo img {
    height: 40px;
    margin-bottom: -5px;
}

.sidebar-logo h1 {
    font-size: 16px;
    color: #2E7D32;
    /* 원래 초록색으로 복원 */
    font-weight: bold;
    letter-spacing: 0.5px;
}

.sidebar-logo a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.sidebar-description {
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
}

.sidebar-description p {
    font-size: 14px;
    color: #2E7D32;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.hamburger-menu {
    padding: 0 10px 15px;
    position: relative;
    text-align: center;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    display: inline-block;
}

.hamburger-btn:hover {
    background: rgba(76, 175, 80, 0.1);
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background: #2E7D32;
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* 햄버거 메뉴 애니메이션 - X로 변환 */
.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: white;
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: white;
}

/* 메뉴 열렸을 때 햄버거 버튼 스타일 - 기본 색상 유지 */
.hamburger-btn.active {
    background: transparent;
    z-index: 3003;
}

.hamburger-btn.active .hamburger-line {
    background: #2E7D32 !important;
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 130px;
    width: calc(100vw - 130px);
    height: 100vh;
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 50%, #66BB6A 100%);
    z-index: 3000;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.fullscreen-menu.active {
    transform: scaleX(1);
}

.fullscreen-menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.fullscreen-menu-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 3001;
}

.fullscreen-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: rotate(90deg);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 800px;
}

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

.menu-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu.active .menu-item {
    opacity: 1;
    transform: translateY(0);
}

.menu-link {
    display: block;
    text-decoration: none;
    color: white;
    padding: 15px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.menu-link:hover,
.menu-link.active {
    border-bottom-color: rgba(255, 255, 255, 0.6);
    transform: translateX(10px);
}

.menu-title {
    display: block;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.menu-subtitle {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fullscreen-menu-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.menu-logo img {
    height: 120px;
    /* 크기 줄임 */
    filter: drop-shadow(0 6px 24px rgba(46, 125, 50, 0.18));
    transition: transform 0.3s;
}

.menu-logo img:hover {
    transform: scale(1.08) rotate(-3deg);
}

.menu-logo h2 {
    font-size: 36px;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-weight: 800;
    color: #fff;
    /* 흰색으로 변경 */
    letter-spacing: 2px;
    text-shadow: 0 2px 12px rgba(76, 175, 80, 0.12);
    transition: color 0.3s;
}

.menu-logo h2:hover {
    color: #388E3C;
}

/* Main Content */
.main-content {
    margin-left: 130px;
    min-height: 100vh;
    position: relative;
    z-index: 2;
    margin-top: 100vh;
    background: url('image/sup-eseo-jandie-keuliseutal-geullobeuui-keullojeueob.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Pages without a hero section */
.no-hero-page .main-content {
    margin-top: 0 !important;
    margin-left: 130px;
}

/* Hero Section */
.hero-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 500;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #000;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: calc(130px + 8%);
    padding-right: 8%;
}

.slide.active {
    opacity: 1;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .slide-content h1 {
    opacity: 1;
    transform: translateX(0);
}

.slide.active .slide-content p {
    opacity: 1;
    transform: translateX(0);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(46, 125, 50, 0.7) 0%, rgba(76, 175, 80, 0.5) 50%, rgba(102, 187, 106, 0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.slide-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease 0.8s;
}

.slide-content p {
    font-size: 20px;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease 1.1s;
}

/* General Content Section */
.content-section {
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    margin: 400px 0;
    /* 간격 더 넓힘 */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* */
#versions-applications.content-section {
    margin-bottom: 0 !important;
    padding-bottom: 40px;
    border-radius: 12px 12px 0 0;
}

.section-title {
    font-size: 36px;
    color: #2E7D32;
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

#pricing-plans-section .section-title {
    margin-bottom: 80px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4CAF50 0%, #E95420 100%);
    border-radius: 2px;
}

/* About Section */
#about.content-section {
    background: #FFFFFF;
    backdrop-filter: none;
    border-radius: 0;
    margin-top: 0;
    margin-bottom: 0;
    /* 바로 아래 섹션과 붙임 */
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    padding-right: 30px;
}

#about .section-title {
    text-align: left;
    margin-bottom: 0;
}

#about .section-title::after {
    display: none;
}

.about-title-group {
    margin-bottom: 25px;
}

.about-subtitle {
    font-size: 18px;
    color: #555;
    margin-top: 5px;
}

.about-description {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.about-image img,
.about-image video {
    max-width: 500px;
    /* 원하는 최대 너비 */
    width: 100%;
    /* 부모 영역 안에서 반응형 */
    height: auto;
    /* 비율 유지 */
    display: block;
    margin: 0 auto;
    /* 가운데 정렬 */
    border-radius: 12px;
    /* 선택: 모서리 둥글게 */
}


.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* News Section */
.news-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.news-item {
    flex: 1;
    text-align: center;
}

.news-image-placeholder,
.news-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.news-image-placeholder {
    background-color: #f0f0f0;
}

.news-image {
    object-fit: cover;
}

.news-title {
    font-size: 20px;
    color: #2E7D32;
    margin-bottom: 10px;
    font-weight: bold;
}

.news-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.news-content {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Features Group Section */
#features-group {
    background: #FFFFFF;
    backdrop-filter: none;
    padding-top: 20px;
    padding-bottom: 20px;
}

.sub-section {
    padding: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.sub-section:last-child {
    border-bottom: none;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 24px 12px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #66BB6A, #81C784);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.12);
}

.feature-title {
    font-size: 18px;
    color: #2E7D32;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
}

.feature-text {
    color: #555;
    font-size: 13px;
    line-height: 1.7;
}

/* Comparison Section */
#comparison.sub-section {
    padding: 60px;
}

.comparison-container {
    margin-top: 50px;
    width: 100%;
    padding: 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.comparison-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.comparison-card.ecoqcode {
    border: 2px solid #4CAF50;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e8 100%);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

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

.comparison-card.ecoqcode:hover {
    transform: scale(1.05) translateY(-8px);
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.comparison-title {
    font-size: 20px;
    color: #2E7D32;
    font-weight: bold;
    margin: 0;
}

.comparison-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.traditional-badge {
    background: #ffebee;
    color: #d32f2f;
}

.eco-badge {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.qr-badge {
    background: #fff3e0;
    color: #f57c00;
}

.comparison-image {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

@media (min-width: 769px) {
    .barcode-traditional .comparison-image {
        margin: 52px 0;
    }
}

.comparison-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    background: white;
    transition: all 0.3s ease;
}

.comparison-image.featured img {
    border-color: #4CAF50;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
}

.featured-overlay {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.comparison-stats {
    margin-top: 20px;
}

/* 데스크톱에서는 모바일용 설명 숨김 */
.mobile-description {
    display: none;
}

/* 클릭 가능한 카드 스타일 */
.comparison-card.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.comparison-card.clickable:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.3);
}

/* PC/모바일 우위성 섹션 제어 */
.mobile-summary {
    display: none !important;
    /* PC에서 완전히 숨김 */
}

.desktop-summary {
    display: block;
}

/* PC에서는 클릭 효과 제거 */
@media (min-width: 769px) {
    .comparison-card.ecoqcode.clickable {
        animation: none !important;
        cursor: default !important;
    }

    .comparison-card.ecoqcode.clickable::after {
        display: none !important;
    }

    /* PC에서 모바일 우위성 섹션 완전히 제거 */
    .mobile-summary {
        display: none !important;
        position: absolute !important;
        left: -9999px !important;
        visibility: hidden !important;
    }
}

/* 애니메이션 키프레임 */
@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.stat-value {
    font-weight: bold;
    font-size: 14px;
    padding: 2px 8px;
    border-radius: 12px;
}

.stat-value.good {
    background: #e8f5e8;
    color: #2e7d32;
}

.stat-value.medium {
    background: #fff3e0;
    color: #f57c00;
}

.stat-value.bad {
    background: #ffebee;
    color: #d32f2f;
}

.comparison-summary {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.summary-card {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.3);
}

.summary-card h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.summary-card ul {
    list-style: none;
    text-align: left;
}

.summary-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.summary-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #81C784;
    font-weight: bold;
    font-size: 16px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.stat-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 18px 8px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.15);
}

.stat-icon {
    font-size: 48px;
    margin-right: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.stat-content {
    flex: 1;
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #2E7D32;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-progress {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    margin: 12px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50 0%, #66BB6A 50%, #81C784 100%);
    border-radius: 4px;
    width: 0%;
    transition: width 2s ease-out 0.5s;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

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

    100% {
        transform: translateX(100%);
    }
}

.stat-label {
    color: #555;
    font-weight: 500;
    font-size: 14px;
    margin-top: 4px;
}

/* Contact Section */
.plan-button {
    background: linear-gradient(135deg, #66BB6A 0%, #4CAF50 100%);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

/* Footer */
.footer {
    background: rgba(46, 125, 50, 0.95);
    color: white;
    padding: 25px 60px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-text {
        padding-right: 0;
        text-align: center;
    }

    #about .section-title {
        text-align: left;
    }
}

@media (max-width: 768px) {

    /* 모바일 스플래시 화면 */
    .splash-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .splash-subtitle {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .splash-logo img {
        height: 80px;
    }

    /* 모바일 사이드바 (데스크탑과 동일한 세로 형태) */
    .sidebar {
        top: 0;
        left: 0;
        bottom: 200px;
        /* 아래쪽에 200px 간격 */
        transition: transform 0.4s ease;
        transform: translateX(0);
        /* 기본적으로 보이도록 설정 */
    }

    .sidebar.hidden {
        transform: translateX(-100%);
        /* 스크롤 시 왼쪽으로 숨김 */
    }

    /* 메인 콘텐츠는 모바일에서 항상 전체 너비 사용 */
    .main-content {
        margin-left: 0;
        margin-top: 100vh;
        background: none !important;
        position: relative;
        z-index: 1;
    }

    /* Team 페이지 모바일 전용 스타일 - 상단 공백 제거 */
    .team-page .main-content {
        margin-top: 0 !important;
        padding-top: 20px;
    }

    /* Team 페이지는 모바일에서 고정 배경 비활성화 */
    .team-page .main-content::before {
        display: none;
    }

    /* 모바일에서 고정 배경 효과 */
    .main-content::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('image/sup-eseo-jandie-keuliseutal-geullobeuui-keullojeueob.jpg') center/cover no-repeat;
        z-index: -1;
    }

    /* 각 섹션에 배경색 추가하여 콘텐츠가 배경 위를 이동하는 효과 */
    .sub-section {
        background: rgba(255, 255, 255, 0.95) !important;
        margin-bottom: 20px !important;
        border-radius: 0 !important;
    }

    /* 모바일 상단 배너 */
    .mobile-top-banner {
        position: fixed;
        top: -80px;
        left: 0;
        width: 100%;
        height: 70px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: transform 0.3s ease;
        display: none;
    }

    .mobile-top-banner.show {
        transform: translateY(80px);
    }

    .banner-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
        height: 100%;
    }

    .banner-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .banner-logo img {
        height: 30px;
        width: auto;
    }

    .banner-title {
        font-size: 12px;
        font-weight: bold;
        color: #2E7D32;
        line-height: 1;
    }

    .banner-description {
        font-size: 12px;
        color: #666;
        flex: 1;
        text-align: center;
        margin: 0 10px;
    }

    .banner-menu-toggle {
        background: none;
        border: none;
        font-size: 20px;
        color: #2E7D32;
        cursor: pointer;
        padding: 5px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

    .banner-menu-toggle:hover {
        background-color: rgba(46, 125, 50, 0.1);
    }

    /* 기존 모바일 토글 버튼 숨김 */
    .mobile-menu-toggle {
        display: none;
    }

    /* 히어로 섹션 텍스트 숨김 */
    .slide-content h1,
    .slide-content p {
        display: none;
    }

    /* 전체화면 메뉴 (2열 유지) */
    .fullscreen-menu {
        left: 0;
        width: 100vw;
    }

    .fullscreen-menu-content {
        padding: 0 8%;
        padding-top: 60px;
        align-items: center;
    }

    .fullscreen-menu-right {
        display: none;
    }

    .fullscreen-menu-left {
        max-width: 100%;
        padding: 0;
    }

    .menu-grid {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .menu-link {
        padding: 10px 0;
    }

    .menu-title {
        font-size: 16px;
    }

    .menu-subtitle {
        font-size: 9px;
    }

    /* 기타 섹션 - 전체적으로 더 컴팩트하게 */
    .content-section {
        padding: 25px 15px;
        margin-bottom: 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .features-grid,
    .comparison-grid,
    .stats-grid,
    .news-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* About 섹션 모바일 최적화 - PC와 동일한 가로 레이아웃 유지 */
    .about-container {
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }

    .about-text {
        flex: 1;
        padding-right: 8px;
        text-align: left;
        min-width: 0;
    }

    #about .section-title {
        text-align: left !important;
    }

    .about-title-group {
        margin-bottom: 10px;
    }

    .about-subtitle {
        font-size: 12px;
    }

    .about-description {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .about-image {
        flex: 0 0 140px;
        max-width: 140px;
        margin: 0;
    }

    .about-image img,
    .about-image video {
        max-width: 140px;
        width: 140px;
        height: 120px;
        border-radius: 6px;
        display: block;
        margin: 0;
        object-fit: cover;
    }

    /* 모바일에서 비디오 최적화 */
    .about-image video {
        background: url('image/ecoimage1.png') center/cover;
    }

    /* 모바일 통계 카드 조정 */
    .stat-card {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
    }

    .stat-icon {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 24px;
    }

    .stat-content {
        text-align: center;
    }

    .stat-number {
        font-size: 20px;
    }

    /* 뉴스 섹션 모바일 최적화 - 강제로 가로 레이아웃 적용 */
    .news-item {
        display: block !important;
        padding: 12px 12px 12px 6px;
        margin-bottom: 15px;
        text-align: left;
        position: relative;
    }

    .news-item,
    .news-item a {
        display: flex !important;
        gap: 12px !important;
        align-items: flex-start !important;
    }

    .news-item a {
        text-decoration: none;
        color: inherit;
        width: 100%;
    }

    /* 가상 요소로 텍스트 컨테이너 만들기 */
    .news-item::after {
        content: '';
        display: flex;
        flex-direction: column;
        flex: 1;
        order: 999;
    }

    /* 텍스트 요소들을 절대 위치로 배치 */
    .news-item .news-title,
    .news-item .news-date,
    .news-item .news-content {
        position: absolute !important;
        left: 118px !important;
        right: 12px !important;
    }

    .news-item .news-title {
        top: 12px !important;
    }

    .news-item .news-date {
        top: 46px !important;
    }

    .news-item .news-content {
        top: 72px !important;
    }

    .news-image-placeholder,
    .news-image {
        width: 100px !important;
        height: 130px !important;
        object-fit: cover !important;
        border-radius: 6px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        aspect-ratio: unset !important;
    }

    .news-title {
        font-size: 14px !important;
        margin: 0 0 6px 0 !important;
        line-height: 1.3 !important;
        font-weight: bold !important;
    }

    .news-date {
        font-size: 11px !important;
        color: #999 !important;
        margin: 0 0 8px 0 !important;
    }

    .news-content {
        font-size: 12px !important;
        line-height: 1.4 !important;
        color: #666 !important;
        margin: 0 !important;
    }

    /* 피처 카드 모바일 최적화 */
    .feature-card {
        padding: 15px;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .feature-text {
        font-size: 13px;
        line-height: 1.4;
    }

    /* 모바일 비교 섹션 - 뉴스와 동일한 간단한 가로 레이아웃 */
    #comparison.sub-section {
        padding: 60px 0 !important;
    }

    .comparison-container {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    .comparison-grid {
        display: block !important;
    }

    .comparison-card {
        display: flex !important;
        gap: 15px !important;
        padding: 12px !important;
        margin-bottom: 15px !important;
        margin-left: 5px !important;
        margin-right: 5px !important;
        text-align: left !important;
        border-radius: 12px !important;
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        align-items: flex-start !important;
    }

    .comparison-card.ecoqcode {
        transform: none !important;
        border: 2px solid #4CAF50 !important;
        background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e8 100%) !important;
        order: -1;
    }

    .comparison-image {
        width: 120px !important;
        height: 120px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        background: white !important;
        border-radius: 10px !important;
        border: 2px solid #e0e0e0 !important;
        order: -1 !important;
    }

    .comparison-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 100px !important;
        max-height: 100px !important;
        object-fit: contain !important;
    }

    .comparison-content {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .comparison-title {
        font-size: 14px !important;
        margin: 0 0 6px 0 !important;
        font-weight: bold !important;
        color: #2E7D32 !important;
    }

    .comparison-badge {
        font-size: 10px !important;
        padding: 3px 8px !important;
        margin-bottom: 8px !important;
        display: inline-block !important;
        border-radius: 12px !important;
    }

    /* 모바일에서만 ECOQCODE 클릭 효과 */
    .comparison-card.ecoqcode.clickable {
        cursor: pointer !important;
        position: relative !important;
        animation: pulseGlow 2s infinite !important;
    }

    .comparison-card.ecoqcode.clickable:active {
        transform: scale(0.98) !important;
    }

    /* 클릭 유도 애니메이션 */
    @keyframes pulseGlow {

        0%,
        100% {
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3) !important;
        }

        50% {
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6) !important;
        }
    }

    /* 클릭 유도 아이콘 추가 */
    .comparison-card.ecoqcode.clickable::after {
        content: "👆 タップして詳細を見る" !important;
        position: absolute !important;
        bottom: -25px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        background: rgba(76, 175, 80, 0.9) !important;
        color: white !important;
        padding: 4px 8px !important;
        border-radius: 12px !important;
        font-size: 10px !important;
        white-space: nowrap !important;
        animation: bounce 1.5s infinite !important;
    }

    @keyframes bounce {

        0%,
        20%,
        50%,
        80%,
        100% {
            transform: translateX(-50%) translateY(0) !important;
        }

        40% {
            transform: translateX(-50%) translateY(-3px) !important;
        }

        60% {
            transform: translateX(-50%) translateY(-1px) !important;
        }
    }

    /* 모바일에서는 stats 숨기고 설명 표시 */
    .comparison-stats {
        display: none !important;
    }

    .mobile-description {
        display: block !important;
        color: #555 !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        margin-top: 0 !important;
    }

    /* 모바일 Stats Grid - 2x2 그리드 */
    #stats.sub-section {
        padding: 60px 0 !important;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        margin-top: 30px !important;
        padding: 0 10px !important;
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        box-sizing: border-box !important;
    }

    .stat-card {
        padding: 25px 20px !important;
        border-radius: 15px !important;
        min-height: auto !important;
        margin: 0 !important;
        width: 100% !important;
        height: 160px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .stat-icon {
        font-size: 40px !important;
        margin-right: 0 !important;
        margin-bottom: 12px !important;
    }

    .stat-content {
        text-align: center !important;
        width: 100% !important;
    }

    .stat-number {
        font-size: 28px !important;
        margin-bottom: 6px !important;
        line-height: 1 !important;
        font-weight: bold !important;
    }

    .stat-progress {
        height: 4px !important;
        margin: 6px 0 !important;
        width: 85% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .stat-label {
        font-size: 14px !important;
        margin-top: 6px !important;
        line-height: 1.3 !important;
        font-weight: 500 !important;
    }

    /* 모바일에서 PC용 우위성 숨김, 모바일용만 표시 */
    .desktop-summary {
        display: none !important;
    }

    .mobile-summary {
        display: block !important;
        /* 항상 렌더링하되 높이로 숨김 */
        margin: 15px 5px !important;
        overflow: hidden !important;
        max-height: 0 !important;
        opacity: 0 !important;
        transform: translateY(-20px) !important;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
        transition-property: max-height, opacity, transform !important;
    }

    .mobile-summary.show {
        max-height: 500px !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .summary-card {
        margin: 0 15px !important;
        padding: 15px !important;
        max-width: 100% !important;
        border-radius: 8px !important;
    }

    .summary-card h4 {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }

    .summary-card li {
        font-size: 11px !important;
        padding: 3px 0 !important;
        padding-left: 15px !important;
        line-height: 1.3 !important;
    }

    .summary-card li::before {
        font-size: 12px !important;
    }

    /* 모바일에서 footer 표시 보장 */
    .footer {
        display: block !important;
        position: relative !important;
        z-index: 10 !important;
        margin-top: 0 !important;
        padding: 20px 20px !important;
        width: 100% !important;
        background: rgba(46, 125, 50, 0.95) !important;
    }

    .footer-links {
        gap: 15px !important;
        font-size: 12px !important;
    }

    .footer-bottom p {
        font-size: 10px !important;
    }
}

/* Responsive Grid for News Section */
@media (max-width: 1200px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
    }
}

#contact.content-section {
    background: #FFFFFF;
    backdrop-filter: none;
    margin-bottom: 0;
    border-radius: 20px 20px 0 0 !important;
}

#news.content-section {
    background: #FFFFFF;
    backdrop-filter: none;
    border-radius: 0 0 20px 20px;
    /* 위쪽은 각지고 아래쪽만 둥글게 */
    margin-top: 0;
}

/* 가격 페이지 - index.html과 완전히 동일한 구조 */
.pricing-page .main-content {
    margin-left: 130px;
    margin-top: 0;
}

#pricing-main.content-section {
    background: #FFFFFF;
    backdrop-filter: none;
    padding: 80px 40px;
    margin-top: 0;
    border-radius: 0 0 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

#pricing-comparison.content-section {
    background: #FFFFFF;
    backdrop-filter: none;
    padding: 80px 40px;
    margin-top: 0;
}

#pricing-plans-section.content-section {
    background: #FFFFFF;
    backdrop-filter: none;
    padding: 80px 40px;
    border-radius: 20px 20px 0 0;
    margin-bottom: 0;
}

/* 페이지 타이틀 스타일 */
.page-title {
    font-size: 48px;
    font-weight: bold;
    color: #2E7D32;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 모바일 앱 소개 섹션 */
.pricing-intro {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 0;
    padding: 60px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(233, 236, 239, 0.6) 100%);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-intro-image img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    mix-blend-mode: multiply;
}

.pricing-intro-content h3 {
    color: #2E7D32;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.pricing-intro-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-intro-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #333;
    line-height: 1.6;
}

.pricing-intro-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.app-download {
    display: flex;
    gap: 20px;
    align-items: center;
}

.app-download img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.app-download img:hover {
    transform: scale(1.05);
}

/* 제품 비교 섹션 */
.product-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 0;
    margin-top: 80px;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.product-card h4 {
    color: #2E7D32;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.product-specs h5 {
    color: #666;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
}

.product-specs ul {
    list-style: none;
    padding: 0;
}

.product-specs li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
    line-height: 1.6;
}

.product-specs li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

/* 가격 플랜 */
.pricing-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 0;
}

.pricing-plan {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-plan:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.pricing-plan.featured {
    border: 2px solid #4CAF50;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.98) 0%, rgba(232, 245, 232, 0.95) 100%);
    transform: scale(1.08);
    position: relative;
    box-shadow: 0 25px 70px rgba(76, 175, 80, 0.2);
}

.pricing-plan.featured:before {
    content: "おすすめ";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.plan-header h3 {
    color: #2E7D32;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.plan-price {
    font-size: 32px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 35px;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-features {
    margin-bottom: 35px;
    flex-grow: 1;
}

.plan-features p {
    margin: 12px 0;
    color: #555;
    line-height: 1.7;
    font-size: 16px;
}

.plan-button {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.plan-button:hover {
    background: linear-gradient(135deg, #45a049 0%, #1B5E20 100%);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.5);
    transform: translateY(-3px);
}

.plan-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.plan-button:hover:before {
    left: 100%;
}

/* 추가 정보 섹션 */
.pricing-additional-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #e9ecef;
}

.info-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
    color: #2E7D32;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.info-card p {
    color: #666;
    line-height: 1.7;
    font-size: 16px;
}

/* 모바일 반응형 */
@media (max-width: 1024px) {
    .pricing-intro {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-plan.featured {
        transform: none;
    }

    .product-comparison {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-additional-info {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }
}

@media (max-width: 768px) {
    .pricing-page .main-content {
        margin-left: 0;
        margin-top: 0;
    }

    #pricing-main.content-section {
        padding: 20px 20px;
    }

    #pricing-comparison.content-section {
        padding: 40px 20px;
    }

    #pricing-plans-section.content-section {
        padding: 40px 20px;
    }

    .pricing-intro {
        padding: 40px 25px;
        margin-bottom: 0;
        gap: 50px;
    }

    .pricing-intro-image img {
        max-width: 280px;
    }

    .app-download {
        flex-direction: column;
        gap: 20px;
    }

    .app-download img {
        height: 55px;
    }

    .product-card {
        padding: 35px 25px;
    }

    .pricing-plan {
        padding: 40px 25px;
        min-height: 380px;
    }

    .pricing-plan.featured {
        transform: scale(1.02);
    }

    .plan-header h3 {
        font-size: 22px;
    }

    .plan-price {
        font-size: 28px;
    }

    .page-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
}

/* Team Page Styles */
.team-header {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.team-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.team-intro {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.team-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

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

/* Reusable hover card style used on team cards. Apply this to other boxes to get the same hover effect. */
.hover-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

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

.team-card.founder {
    border: 2px solid #4CAF50;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(46, 125, 50, 0.05) 100%);
}

.team-card.advisor {
    border: 2px solid #FF9800;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
    border: 4px solid #4CAF50;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 24px;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 8px;
    text-align: center;
}

.member-position {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    padding: 8px 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 25px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.team-card.founder .member-position {
    background: rgba(76, 175, 80, 0.15);
    color: #2E7D32;
}

.team-card.advisor .member-position {
    background: rgba(255, 152, 0, 0.15);
    color: #F57C00;
}

.member-bio {
    text-align: left;
    line-height: 1.8;
}

.member-bio p {
    margin-bottom: 15px;
    color: #555;
}

.member-bio strong {
    color: #2E7D32;
    font-weight: 700;
}

.achievements {
    list-style: none;
    margin-top: 20px;
}

.achievements li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #666;
    line-height: 1.6;
}

.achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }

    .team-card {
        padding: 30px;
    }

    .team-header .page-title {
        font-size: 36px;
    }

    .team-intro {
        font-size: 18px;
    }

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

/* ===================== ESG ===================== */

/* ESG Hero Section - 메인화면 슬라이드와 동일 */
.esg-hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 500;
}

.esg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('image/esg_header_bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: calc(130px + 8%);
    padding-right: 8%;
}

.esg-page .main-content {
    margin-left: 130px;
    margin-top: 0;
    background: url('image/sup-eseo-jandie-keuliseutal-geullobeuui-keullojeueob.jpg') center/cover fixed;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* 모든 섹션을 전체 너비로 만들고, 섹션 간 400px 간격 */
.esg-page .content-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 80px 60px;
    border-radius: 25px;
    /* 중간 섹션들은 둥글게 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0;
    /* 모든 마진 제거 */
    margin-bottom: 400px;
    /* 섹션 간 400px 간격 */
    width: 100%;
}

/* 첫 번째 섹션은 상단과 붙이고 위쪽 모서리만 각지게 */
.esg-page .content-section:first-of-type {
    margin-top: 0;
    border-radius: 0 0 25px 25px;
    /* 아래쪽만 둥글게 */
}

/* 마지막 섹션은 아래 마진을 없애고 아래쪽 모서리만 각지게 */
.esg-page .content-section:last-of-type {
    margin-bottom: 0;
    border-radius: 25px 25px 0 0;
    /* 위쪽만 둥글게 */
}

/* 푸터는 마지막 섹션과 바로 붙임 */
.esg-page .footer {
    margin-top: 0;
    width: 100%;
}


/* --- 기존 ESG 콘텐츠 스타일 유지 및 조정 --- */
.esg-hero {
    text-align: center;
}

.esg-section.alt {
    background-color: rgba(248, 249, 250, 0.95);
}

.esg-container {
    max-width: 1100px;
    margin: 0 auto;
}

.esg-hero .page-title {
    color: #2E7D32;
    font-size: 48px;
    margin-bottom: 20px;
}

.esg-hero-sub {
    color: #5f6b5f;
    opacity: .9;
    margin-bottom: 28px;
    font-size: 20px;
}

.esg-badges {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.esg-badge {
    background: #e8f5e9;
    color: #2E7D32;
    border: 1px solid rgba(46, 125, 50, .15);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.esg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 24px;
}

.esg-card {
    background: #fff;
    border-radius: 14px;
    border-top: 4px solid #4CAF50;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    padding: 24px 24px 28px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.esg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.esg-card h3 {
    font-size: 18px;
    margin: 6px 0 12px;
    color: #2E7D32;
}

.esg-card.check {
    border-top-color: #66BB6A;
}

.esg-lead {
    background: #f3faf4;
    border: 1px solid #e8f2ea;
    border-radius: 14px;
    padding: 24px;
    color: #334;
    line-height: 1.8;
}

.esg-callout {
    border-left: 4px solid #4CAF50;
    background: #f8fbf8;
    padding: 20px 24px;
    line-height: 1.9;
    border-radius: 8px;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .esg-page .main-content {
        margin-left: 0;
        padding-top: 0;
    }

    .esg-page .content-section {
        margin: 0;
        margin-bottom: 200px;
        /* 모바일에서는 섹션 간 200px 간격 */
        padding: 60px 20px;
        width: 100%;
    }

    .esg-page .content-section:last-of-type {
        margin-bottom: 0;
    }

    .esg-page .footer {
        margin-top: 0;
        width: 100%;
    }

    /* 모바일에서 시각적 요소 조정 */
    .impact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center !important;
    }

    .timeline-content.left,
    .timeline-content.right {
        text-align: center !important;
        padding: 0 !important;
        margin-bottom: 1rem;
    }

    .timeline-line {
        display: none;
    }

    .timeline-dot {
        position: relative !important;
        margin: 1rem 0;
    }
}

/* ===== ECOQCODEバージョンと活用事例 스타일 ===== */

/* 버전 소개 */
.versions-intro {
    text-align: center;
    margin-bottom: 50px;
}

.intro-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.example-code {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    display: inline-block;
    border-left: 4px solid #4CAF50;
}

.example-label {
    color: #2E7D32;
    font-weight: bold;
    margin-right: 10px;
}

.example-number {
    font-family: 'Courier New', monospace;
    color: #1976D2;
    font-weight: bold;
}

/* 버전 섹션 */
.versions-section {
    margin-bottom: 60px;
}

.subsection-title {
    font-size: 24px;
    color: #2E7D32;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.versions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.version-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.version-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

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

.version-card:hover::before {
    height: 100%;
    opacity: 0.15;
}

.version-card:focus,
.version-card:focus-visible {
    outline: none;
}

.version-card.free {
    border-color: #FF9800;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8cc 100%);
}

.version-card.free::before {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.version-card.free:focus,
.version-card.free:focus-visible,
.version-card.free:active {
    outline: none;
    border-color: #FF9800;
}

.version-card.v1 {
    border-color: #2196F3;
    background: linear-gradient(135deg, #f0f7ff 0%, #d6ebff 100%);
}

.version-card.v1::before {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.version-card.v2 {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #f1f8f1 0%, #d8ecd8 100%);
}

.version-card.v2::before {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.version-card h4 {
    color: #2E7D32;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    position: relative;
}

.version-capacity {
    color: #555;
    font-weight: 700;
    font-size: 18px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 활용사례 슬라이더 */
.applications-section {
    margin-bottom: 60px;
}

.applications-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.application-slide {
    display: none;
    opacity: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 450px;
    position: relative;
    animation: fadeOut 0.5s ease-out;
}

.application-slide.active {
    display: flex;
    align-items: stretch;
    opacity: 1;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.application-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    position: relative;
    overflow: hidden;
}

.application-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
    pointer-events: none;
}

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

.application-slide.active .application-image img {
    transform: scale(1.05);
}

.application-content {
    flex: 1;
    padding: 50px 45px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.application-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50px;
    width: 5px;
    height: 80px;
    background: linear-gradient(180deg, #4CAF50 0%, #2E7D32 100%);
    border-radius: 0 5px 5px 0;
    animation: slideDown 0.6s ease-out 0.3s both;
}

@keyframes slideDown {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        height: 80px;
        opacity: 1;
    }
}

.application-title {
    font-size: 28px;
    color: #2E7D32;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-left: 20px;
}

.application-description {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
    padding-left: 20px;
    text-align: justify;
}

/* 슬라이더 컨트롤 */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.slider-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.slider-btn:hover::before {
    width: 100%;
    height: 100%;
}

.slider-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.5);
}

.slider-btn:active {
    transform: scale(0.95);
}

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

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: #4CAF50;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
    background: #4CAF50;
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.dot.active::before {
    width: 6px;
    height: 6px;
    background: white;
}

.dot:hover:not(.active) {
    background: #81C784;
    transform: scale(1.2);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .applications-section {
        margin-bottom: 40px;
    }

    .applications-slider {
        border-radius: 18px;
        margin: 0 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .application-slide {
        min-height: 320px;
    }

    .application-slide.active {
        flex-direction: column;
    }

    .application-image {
        max-width: 100%;
        height: 180px;
        flex: none;
    }

    .application-image::after {
        background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.4) 100%);
    }

    .application-image img {
        height: 100%;
        border-radius: 18px 18px 0 0;
    }

    .application-content {
        padding: 25px 20px;
        flex: 1;
    }

    .application-content::before {
        width: 4px;
        height: 60px;
        top: 25px;
    }

    @keyframes slideDown {
        from {
            height: 0;
            opacity: 0;
        }

        to {
            height: 60px;
            opacity: 1;
        }
    }

    .application-title {
        font-size: 20px;
        margin-bottom: 12px;
        padding-left: 15px;
    }

    .application-description {
        font-size: 14px;
        line-height: 1.6;
        padding-left: 15px;
    }

    .slider-controls {
        margin-top: 25px;
        gap: 18px;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .slider-dots {
        gap: 10px;
    }

    .dot {
        width: 11px;
        height: 11px;
    }

    .dot.active {
        transform: scale(1.2);
    }

    .dot.active::before {
        width: 4px;
        height: 4px;
    }
}

/* 버전 카드 모바일 최적화 */
.versions-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 10px;
}

.version-card {
    padding: 20px;
    margin-bottom: 0;
}

.version-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.version-capacity {
    font-size: 14px;
}

.versions-intro {
    margin-bottom: 25px;
    padding: 0 10px;
}

.intro-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.example-code {
    font-size: 13px;
    padding: 12px 15px;
}

.subsection-title {
    font-size: 20px;
    margin-bottom: 20px;
}

/* 연락처 폼 모바일 최적화 */
#contact .content-section {
    padding: 20px 15px;
}

#contact form>div {
    max-width: 100% !important;
    padding: 20px !important;
    border-radius: 12px !important;
}

#contact form input,
#contact form textarea {
    padding: 10px !important;
    font-size: 14px !important;
    border-radius: 6px !important;
}

#contact form label {
    font-size: 14px !important;
    margin-bottom: 5px !important;
}

#contact form>div>div {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
}

.plan-button {
    font-size: 14px;
    padding: 12px 24px;
}

/* Contact: 모바일에서 맵이 사라지는 문제 방지 */
.contact-page .map-container {
    display: block !important;
    width: 100% !important;
    min-height: 240px !important;    /* 모바일에서 보일 최소 높이 */
    background: #f6f6f6 !important;  /* 맵 로드 전 플레이스홀더 색상 */
    border: 1px solid rgba(0,0,0,0.04) !important;
    overflow: visible !important;
    visibility: visible !important;
}

/* 맵 요소(구글맵 div / iframe 등)에 높이 강제 적용 */
.contact-page .map-container > div,
.contact-page .map-container > iframe,
#map-sg, #map-jp {
    height: 100% !important;
    min-height: 240px !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Career Page Specific Styles */
.career-page .main-content {
    margin-left: 130px;
    margin-top: 0 !important;
}

.career-page .content-section {
    margin: 0;
    padding: 80px 60px;
    background: #FFFFFF;
    border-radius: 0;
    width: 100%;
}

/* Career 포지션 카드 스타일 */
.career-positions {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.position-card {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    min-height: auto;
}

.expand-icon {
    font-size: 20px;
    color: #4CAF50;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 8px;
    padding: 4px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.1);
}

.expand-icon:hover {
    background: rgba(76, 175, 80, 0.2);
    transform: scale(1.1);
}

.position-image {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    background: #f0f0f0;
    margin-right: 25px;
    flex-shrink: 0;
}

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

.position-content {
    flex: 1;
    width: 100%;
}

.position-title {
    font-size: 18px;
    color: #2E7D32;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
    line-height: 1.3;
}

.position-subtitle {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
    background: rgba(76, 175, 80, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
}

.position-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: left;
}

.expand-icon.expanded {
    transform: rotate(45deg) scale(1.1);
    color: #2E7D32;
    background: rgba(46, 125, 50, 0.2);
}

/* Job Details */
.job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    margin-top: 15px;
    opacity: 0;
    padding: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    height: 0;
}

.job-details.expanded {
    max-height: none;
    height: auto;
    padding: 25px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    opacity: 1;
    overflow: visible;
    min-height: 400px;
}

.job-details h4 {
    color: #2E7D32;
    font-size: 18px;
    margin: 20px 0 15px 0;
    font-weight: 600;
}

.job-details h4:first-child {
    margin-top: 0;
}

.job-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.job-details li {
    position: relative;
    padding: 8px 0 8px 25px;
    color: #555;
    line-height: 1.6;
    border-left: 3px solid #4CAF50;
    margin-left: 15px;
    margin-bottom: 8px;
    padding-left: 15px;
}

.job-details li::before {
    content: '▸';
    position: absolute;
    left: -5px;
    color: #4CAF50;
    font-weight: bold;
    top: 8px;
}

/* 모바일 반응형 */
@media (max-width: 1024px) {
    .career-positions {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .career-positions {
        flex-direction: column;
        gap: 20px;
    }

    .position-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        min-height: auto;
    }

    .position-image {
        width: 120px;
        height: 120px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .position-title {
        font-size: 16px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .position-description {
        text-align: center;
    }

    .expand-icon {
        margin-left: 0;
    }

    .job-details li {
        margin-left: 0;
        font-size: 13px;
    }
}

/* 추가: 콘텐츠가 완전히 표시되도록 보장 */
.job-details.expanded {
    height: auto !important;
    max-height: none !important;
    min-height: 400px !important;
    overflow: visible !important;
}

.job-details * {
    box-sizing: border-box;
}

.job-details h4 {
    line-height: 1.4;
    word-wrap: break-word;
    margin: 20px 0 15px 0 !important;
    color: #2E7D32 !important;
    font-size: 16px !important;
    font-weight: 600;
}

.job-details h4:first-child {
    margin-top: 0 !important;
}

.job-details ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
}

.job-details li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    padding: 8px 0 8px 20px !important;
    color: #555 !important;
    line-height: 1.6;
    margin-bottom: 10px !important;
    border-left: 3px solid #4CAF50;
    margin-left: 10px !important;
}

/* 컸퓨터 비전공자를 위한 디버깅 */
.job-details.expanded::after {
    content: '';
    display: block;
    height: 20px;
    width: 100%;
    clear: both;
}

/* Trial Button Styles */
.trial-menu-button:hover,
.trial-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
    background: linear-gradient(135deg, #45a049, #1B5E20);
}

.upgrade-button:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px);
}

/* Trial Page Specific Styles */
.trial-page .main-content {
    margin-left: 130px;
    margin-top: 0 !important;
}

.trial-page .content-section {
    margin: 0;
    padding: 60px 40px;
    background: #FFFFFF;
    border-radius: 0;
    width: 100%;
    max-width: none;
}

/* Trial Page Content Styles */
.trial-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.trial-hero {
    position: relative;
    margin-bottom: 2rem;
}

.trial-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #2E7D32;
    text-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

.trial-title::-moz-selection {
    background: #4CAF50;
    color: white;
}

.trial-title::selection {
    background: #4CAF50;
    color: white;
}

.title-accent {
    display: inline-block;
    position: relative;
}

.title-version {
    display: inline-block;
    font-size: 0.7em;
    background: linear-gradient(45deg, #4CAF50, #2E7D32);
    color: white;
    padding: 0.2em 0.6em;
    border-radius: 20px;
    margin-left: 0.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
    animation: float 2s ease-in-out infinite;
}

.trial-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    color: #2E7D32;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid rgba(76, 175, 80, 0.3);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
    animation: pulse 2s infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    }
}

.trial-subtitle {
    font-size: 1.5rem;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.trial-text {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.trial-features-list {
    margin: 3rem 0;
    text-align: left;
    background: linear-gradient(135deg, #f8fffe, #e8f5e8);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.1);
}

.trial-feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #4CAF50;
}

.trial-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
    border-left-color: #2E7D32;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 2rem;
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.trial-slogan {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0, #e8f5e8);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.trial-slogan::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.trial-slogan h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.slogan-word {
    display: inline-block;
    color: #2E7D32;
    margin: 0 0.3rem;
    animation: colorShift 3s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

.slogan-word:nth-child(1) {
    animation-delay: 0s;
}

.slogan-word:nth-child(3) {
    animation-delay: 1s;
}

.slogan-word:nth-child(5) {
    animation-delay: 2s;
}

.slogan-dot {
    color: #4CAF50;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

.trial-slogan p {
    font-size: 1.3rem;
    color: #555;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

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

    100% {
        transform: rotate(360deg);
    }
}

@keyframes colorShift {

    0%,
    100% {
        color: #2E7D32;
        transform: scale(1);
    }

    50% {
        color: #4CAF50;
        transform: scale(1.1);
    }
}

/* Trial Plans */
.trial-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    width: 100%;
}

.plan-card-simple {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.plan-card-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.5s ease;
}

.plan-card-simple:hover::before {
    left: 100%;
}

.plan-card-simple:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.plan-card-simple.highlight {
    background: linear-gradient(135deg, #4CAF50, #2E7D32, #1B5E20);
    background-size: 200% 200%;
    color: white;
    border: 2px solid #4CAF50;
    animation: gradientShift 4s ease-in-out infinite;
    box-shadow: 0 10px 35px rgba(76, 175, 80, 0.3);
}

.plan-card-simple.highlight:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.4);
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: iconFloat 3s ease-in-out infinite;
    display: block;
}

.plan-card-simple h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2E7D32;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.plan-card-simple.highlight h3 {
    color: white;
}

.plan-card-simple p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.plan-card-simple.highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.plan-feature {
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.plan-card-simple.highlight .plan-feature {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

/* Trial Download Section */
.trial-download {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8fff8, #e8f5e8);
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
}

.app-stores {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.app-stores a {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.app-stores a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.app-stores img {
    height: 60px;
    transition: all 0.3s ease;
}

.label-download {
    margin-top: 2rem;
    position: relative;
}

.label-download-btn {
    background: linear-gradient(135deg, #4CAF50, #2E7D32, #1B5E20);
    background-size: 200% 200%;
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease-in-out infinite;
}

.label-download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.label-download-btn:hover::before {
    width: 300px;
    height: 300px;
}

.label-download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6);
}

.label-download-btn:active {
    transform: translateY(-1px) scale(1.02);
}

@media (max-width: 768px) {
    .trial-page .main-content {
        margin-left: 0;
        margin-top: 0;
    }

    .trial-page .content-section {
        padding: 20px 20px;
    }

    .trial-title {
        font-size: 2.5rem;
    }

    .trial-subtitle {
        font-size: 1.2rem;
    }

    .trial-text {
        font-size: 1rem;
    }

    .trial-slogan h2 {
        font-size: 2rem;
    }

    .trial-slogan p {
        font-size: 1rem;
    }

    .trial-plans {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plan-card-simple {
        padding: 1.5rem;
    }

    .app-stores {
        flex-direction: column;
        align-items: center;
    }

    .app-stores img {
        height: 45px;
    }

    .label-download-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .trial-plans {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .plan-card-simple {
        padding: 1.5rem;
    }

    .trial-page .content-section {
        padding: 40px 30px;
    }
}

/* Career Call-to-Action */
.career-cta {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ESG Page Styles - 기존 스타일 제거하고 새로운 스타일 적용 */

.esg-section {
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    margin: 400px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 첫 번째 ESG 섹션은 히어로와 바로 붙이고 위쪽 모서리 각지게 */
.esg-section:first-of-type {
    margin-top: 0;
    border-radius: 0 0 20px 20px;
}

/* 마지막 ESG 섹션은 푸터와 바로 붙이고 아래쪽 모서리 각지게 */
.esg-section:last-of-type {
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
}

.esg-section-title {
    font-size: 36px;
    color: #2E7D32;
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.esg-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4CAF50 0%, #E95420 100%);
    border-radius: 2px;
}

.esg-description {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.esg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.esg-item-card {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.esg-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #66BB6A, #81C784);
}

.esg-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.12);
}

.esg-item-image {
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
}

.esg-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.esg-item-card:hover .esg-item-image img {
    transform: scale(1.05);
}

.esg-item-content {
    padding: 0;
}

.esg-item-title {
    font-size: 22px;
    color: #2E7D32;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
}

.esg-item-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive Design for ESG */
@media (max-width: 768px) {
    .esg-slide {
        padding-left: 15px;
        padding-right: 15px;
        background-attachment: scroll;
    }

    .esg-page .main-content {
        margin-left: 0;
        margin-top: 0;
    }

    .esg-section {
        padding: 40px 20px;
        margin: 400px 0;
    }

    /* 모바일에서도 첫 번째와 마지막 섹션 마진 제거 */
    .esg-section:first-of-type {
        margin-top: 0;
    }

    .esg-section:last-of-type {
        margin-bottom: 0;
    }

    .esg-section-title {
        font-size: 26px;
    }

    .esg-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .esg-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .esg-item-content {
        padding: 20px;
    }
}

/* Animation for scroll */
.esg-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.esg-section:nth-child(2) {
    animation-delay: 0.1s;
}

.esg-section:nth-child(3) {
    animation-delay: 0.2s;
}

.esg-section:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 문의하기 폼 관련 스타일 */
.contact-message {
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    animation: fadeInMessage 0.5s ease;
}

.success-message {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4ecd4 100%);
    border: 2px solid #2E7D32;
    color: #1b5e20;
}

.success-message h3 {
    color: #2E7D32;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.error-message {
    background: linear-gradient(135deg, #ffeaea 0%, #ffe0e0 100%);
    border: 2px solid #e53e3e;
    color: #c53030;
}

.error-message h3 {
    color: #e53e3e;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-loading {
    text-align: center;
    padding: 30px;
    color: #2E7D32;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2E7D32;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 카운트다운 타이머 애니메이션 */
#redirectTimer {
    display: inline-block;
    font-weight: bold;
    color: #2E7D32;
    font-size: 1.1em;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* 입력 필드 에러 스타일 개선 */
.field-error {
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

/* 입력 필드 호버 및 포커스 효과 개선 */
#contact input,
#contact form textarea {
    transition: all 0.3s ease;
}

#contact input:hover,
#contact form textarea:hover {
    border-color: #a5d6a7 !important;
}

#contact input:focus,
#contact form textarea:focus {
    outline: none;
    border-color: #2E7D32 !important;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* Contact form sizing: larger inputs and textarea for better readability */
@media (min-width: 769px) {
    /* Desktop: make inputs taller and textarea larger */
    #contact input,
    #contact textarea,
    .contact-page #contactForm input,
    .contact-page #contactForm textarea {
        padding: 16px 18px;
        font-size: 16px;
        min-height: 52px;
        border-radius: 10px;
    }

    #contact textarea,
    .contact-page #contactForm textarea {
        min-height: 180px;
        line-height: 1.6;
        resize: vertical;
    }

    /* Ensure labels stack nicely above inputs */
    #contact label {
        display: block;
        margin-bottom: 10px;
    }
}

/* 필수 표시 스타일 */
#contact label span {
    font-size: 0.9em;
}

/* 제출 버튼 로딩 상태 */
#contactSubmitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#contactSubmitBtn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

/* 모바일에서 문의 폼 개선 */
@media (max-width: 768px) {
    #contact .content-section>div {
        padding: 30px 20px !important;
    }

    /* Mobile: slightly larger touch targets and taller textarea */
    #contact input,
    #contact form textarea,
    .contact-page #contactForm input,
    .contact-page #contactForm textarea {
        padding: 14px !important;
        font-size: 16px !important;
        min-height: 48px !important;
        border-radius: 10px !important;
    }

    #contact textarea,
    .contact-page #contactForm textarea {
        min-height: 220px !important;
        line-height: 1.6 !important;
        resize: vertical !important;
    }

    #contact>div>div {
        grid-template-columns: 1fr !important;
    }

    .contact-message {
        margin-bottom: 20px;
        padding: 15px;
    }

    .contact-loading {
        padding: 20px;
    }

    .loading-spinner {
        width: 35px;
        height: 35px;
    }
}

/* Contact Page Styles for larger screens */
@media (min-width: 769px) {

    /* Contact section: address left, map right on larger screens */
    .contact-page #pricing-main {
        padding: 60px 150px;
        background: #fff;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    .contact-page #pricing-main .section-title {
        padding: 50px 0px 0px 0px;
    }

    /* each address and map block in 2-column layout */
    .contact-page .contact-container {
        display: grid;
        grid-template-columns: minmax(650px, 45%) 1fr;
        gap: 28px;
        align-items: start;
        margin-bottom: 100px;
    }


    /* address block styles */
    .contact-page .address-info {
        padding: 20px;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    }


    .contact-page .address-info h3 {
        font-size: 22px;
        color: #2E7D32;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .contact-page .address-info p {
        margin: 10px 0;
        line-height: 1.9;
        letter-spacing: 0.2px;
        font-size: 15px;
    }

    /* map container and iframe styles */
    .contact-page .map-container {
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.04);
        background: #f6f6f6;
    }

    .contact-page .map-container>div,
    .contact-page .map-container iframe {
        width: 100%;
        min-height: 380px;
        display: block;
    }

    .contact-page .contact-container+.contact-container {
        margin-top: 0px;
    }
}

@media (max-width: 768px) {

    /* 기본(데스크톱) 레이아웃 유지 */
    .contact-page #pricing-main {
        padding: 24px 28px;
        background: #fff;
        margin: 0 auto;
        max-width: 1200px;
    }

    /* 2열: 주소(왼쪽) / 지도(오른쪽) */
    .contact-page .contact-container {
        display: grid;
        grid-template-columns: 420px 1fr;
        /* 필요시 480px 등으로 조정 */
        gap: 24px;
        align-items: start;
        margin-bottom: 28px;
    }

    .contact-page .section-title {
        padding: 100px 0 20px 0;
    }

    .contact-page .section-title::after {
        margin-bottom: 20px;
    }

    .contact-page .address-info h3 {
        font-size: 20px;
        color: #2E7D32;
        margin-bottom: 12px;
        font-weight: 700;
    }

    /* 주소 블록 스타일(이미 정의된 규칙을 덮어씀) */
    .contact-page .address-info {
        padding: 20px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    }

    /* 맵 컨테이너 높이 보장 */
    .contact-page .map-container {
        overflow: hidden;
        border-radius: 12px;
    }

    .contact-page .map-container>div,
    .contact-page .map-container iframe {
        width: 100%;
        min-height: 360px;
        display: block;
    }

    /* 폼 내부 인라인 스타일 오버라이드 (모바일에서 전체폭으로) */
    .contact-page #contactForm,
    .contact-page #contactForm input,
    .contact-page #contactForm textarea,
    .contact-page #contactForm .plan-button {
        box-sizing: border-box;
    }

    /* 전체 섹션 패딩 축소 */
    .contact-page #pricing-main {
        padding: 16px 14px !important;
        max-width: 100%;
    }

    /* contact-container를 블록으로 바꿔 세로 스택 처리 */
    .contact-page .contact-container {
        display: block !important;
        margin-bottom: 20px !important;
    }

    .contact-page .contact-container>.address-info,
    .contact-page .contact-container>.map-container {
        width: 100% !important;
        margin: 0 0 14px 0 !important;
    }

    /* 주소 텍스트 줄간격 및 항목 간격 확보 */
    .contact-page .address-info p {
        margin: 10px 0 !important;
        line-height: 1.7 !important;
        letter-spacing: 0.2px;
    }

    /* 폼: 2열 그리드 -> 1열로 변경 (인라인 그리드 덮어쓰기) */
    .contact-page #contactForm>div[style*="grid-template-columns"],
    .contact-page #contactForm>div[style*="display: grid"] {
        display: block !important;
    }

    #contact .map-container {
        display: block !important;
        width: 100% !important;
        min-height: 240px !important;    /* 모바일에서 보일 최소 높이 */
        background: #f6f6f6 !important;  /* 맵 로드 전 플레이스홀더 색상 */
        border: 1px solid rgba(0,0,0,0.04) !important;
        overflow: visible !important;
        visibility: visible !important;
    }

    /* 맵 요소(구글맵 div / iframe 등)에 높이 강제 적용 */
    .contact-page .map-container > div,
    .contact-page .map-container > iframe,
    #map-sg, #map-jp {
        height: 100% !important;
        min-height: 240px !important;
        width: 100% !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* 섹션 타이틀 간격 보정 */
    .contact-page .section-title {
        margin-bottom: 18px !important;
    }

    /* 푸터 위 여유 확보 (붙는 문제 방지) */
    .contact-page .footer {
        padding-top: 24px !important;
    }
}