@media screen and (max-width: 480px) {
    .hero-description {
        text-align: center !important;
    }
}
@media screen and (min-width: 1025px) {
        .keywords-container {
            transform: none;
        max-width: 700px;
        padding-left: 0;
        padding-right: 0;
        gap: 20px;
    }
    .keyword-item {
        font-size: 1.25rem;
        padding: 1.2rem 2.5rem;
        min-width: 0;
        max-width: 700px;
    }
    .keyword-content h2 {
        font-size: 1.8rem;
    }
    .keyword-content p {
        font-size: 1.15rem;
    }
}
@media screen and (max-width: 480px) {
    .keywords-container {
        transform: none !important;
        max-width: 98vw;
        padding-left: 2vw;
        padding-right: 2vw;
        gap: 10px;
    }
    .keyword-item {
        font-size: 1rem;
        padding: 0.7rem 0.5rem;
        min-width: 0;
        max-width: 100%;
    }
    .keyword-content h2 {
        font-size: 1.1rem;
    }
    .keyword-content p {
        font-size: 0.95rem;
    }
}
/* 섹션 0 - 배경 복원 */
.section-00 {
    background: transparent;
    color: #f5f7fa;
    text-align: center;
    overflow: hidden;
    position: relative;
    padding: 80px 40px;
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
}

@media screen and (max-width: 1024px) {
    .section-00 {
        padding: 60px 20px;
    }
    .section-00 .main-title {
        font-size: 2.2rem;
    }
    .section-00 .keywords-container {
        gap: 16px;
    }
}

@media screen and (max-width: 768px) {
    .section-00 {
        padding: 40px 10px;
    }
    .section-00 .main-title {
        font-size: 1.5rem;
    }
    .section-00 .keywords-container {
        gap: 12px;
    }
}

@media screen and (max-width: 480px) {
    .section-00 {
        padding: 24px 4px;
    }
    .section-00 .main-title {
        font-size: 1.1rem;
    }
    .section-00 .keywords-container {
        gap: 8px;
    }
}

/* 페이스북 버튼 완전 중앙 정렬 */
.sns-button.facebook {
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.sns-button.facebook a {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* 페이스북 버튼 한 줄 배치 */
.sns-button.facebook {
    flex-direction: row !important;
    justify-content: center;
    align-items: center;
    text-align: center;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
}

/* 드롭박스 스타일 */
select {
    width: 100%;
        height: 70px;
        padding: 0px 40px 0px 20px;
    font-size: 22px;
    font-weight: 500;
    text-align: left;
    line-height: 0.85;
    font-size: 2.5rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    backdrop-filter: none;
    transition: all 0.3s ease;
    box-shadow: none;
    appearance: revert;
    -webkit-appearance: revert;
    -moz-appearance: revert;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 215, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

select option {
    background-color: transparent;
    color: #fff !important;
    padding: 15px;
    font-size: 16px;
}

select:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
}

select:hover {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    transform: none;
}

select:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
}

/* 드롭다운 옵션 스타일링 */
select option {
    padding: 15px;
    font-size: 16px;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

select option:hover,
select option:focus {
    background: transparent;
}

select option:checked {
    background: transparent;
    color: #FFD700;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #333333;
    --form-bg-color: #ffffff;
    --input-border-color: #e0e0e0;
    --input-focus-color: #FEE500;
    --error-color: #dc3545;
    --text-light: #ffffff;
    --kakao-yellow: #FEE500;
    --gray-light: #f5f5f5;
    --gray-medium: #666666;
    --text-dark: #1a1a1a;
    --background-overlay: rgba(0, 0, 0, 0.7);
    --transition-speed: 0.3s;
    --section-padding: clamp(60px, 8vh, 100px);
    --accent-gray: #4a4a4a;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.5;
}

body {
    min-height: 100vh;
    color: #f5f7fa;
    background: linear-gradient(135deg, #0d133a 0%, #1a237e 60%, #283593 100%);
}

.container {
    position: relative;
    overflow-x: hidden;
}

/* 모든 섹션에 공통 스타일 적용 */
.section {
    position: relative;
    overflow: hidden;
}

/* 모든 섹션에 공통 overlay 적용 */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% center, transparent 0%, rgba(0,0,0,0.7) 100%),
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

/* 모든 섹션 content 통일 스타일 */
.section .content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 80px 40px;
}

/* 섹션별 고급스러운 차별화 스타일 - 통일된 색상 적용 */

/* 섹션 0 - 메인 히어로 */
.section-00 {
    background: linear-gradient(135deg, #0d133a 0%, #1a237e 60%, #303f9f 100%);
    color: #f5f7fa;
    text-align: center;
    overflow: hidden;
    position: relative;
    padding: 80px 40px;
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

/* 섹션 1 - 특징 소개 (통일된 네이비 배경) */
.section-01 {
    background: linear-gradient(135deg, #0d133a 0%, #1a237e 60%, #303f9f 100%);
    color: #f5f7fa;
    position: relative;
    padding: 80px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    overflow: hidden;
}

.section-01::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* 섹션 2 - 서비스 특징 */
.section-02 {
    background: linear-gradient(135deg, #0d133a 0%, #1a237e 60%, #303f9f 100%);
    color: #f5f7fa;
    position: relative;
    overflow: hidden;
}

.section-02::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* 섹션 3 - 인증서 */
.section-03 {
    background: linear-gradient(135deg, #0d133a 0%, #1a237e 60%, #303f9f 100%);
    color: #f5f7fa;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

/* 섹션 4 - 통계 */
.section-04 {
    background: 
        radial-gradient(circle at top left, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(255, 69, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #0d133a 0%, #1a237e 30%, #303f9f 60%, #3f51b5 80%, #2196f3 100%);
    color: #f5f7fa;
    position: relative;
    overflow: hidden;
}

.section-04::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(
            45deg,
            transparent 0%,
            rgba(255, 215, 0, 0.05) 15%,
            transparent 30%,
            rgba(255, 140, 0, 0.03) 45%,
            transparent 60%,
            rgba(255, 215, 0, 0.04) 75%,
            transparent 100%
        ),
        linear-gradient(
            -45deg,
            transparent 0%,
            rgba(255, 69, 0, 0.02) 25%,
            transparent 50%,
            rgba(255, 215, 0, 0.03) 75%,
            transparent 100%
        );
    animation: gradientShift 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.section-04::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgba(255, 215, 0, 0.03) 60deg,
        transparent 120deg,
        rgba(255, 140, 0, 0.02) 180deg,
        transparent 240deg,
        rgba(255, 215, 0, 0.025) 300deg,
        transparent 360deg
    );
    animation: conicBackground 30s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    25% {
        opacity: 0.8;
        transform: translateX(20px) translateY(-10px);
    }
    50% {
        opacity: 0.9;
        transform: translateX(-10px) translateY(15px);
    }
    75% {
        opacity: 0.7;
        transform: translateX(15px) translateY(-20px);
    }
}

@keyframes conicBackground {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 섹션 5 - 프로세스 */
.section-05 {
    background: linear-gradient(135deg, #0d133a 0%, #1a237e 60%, #303f9f 100%);
    color: #f5f7fa;
    position: relative;
    overflow: hidden;
}

.section-05::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* 섹션 6 - 후기 */
.section-06 {
    background: linear-gradient(135deg, #0d133a 0%, #1a237e 60%, #303f9f 100%);
    color: #f5f7fa;
    position: relative;
}

.section-06::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

/* 섹션 7 - 문의 폼 */
.section-07 {
    background: linear-gradient(135deg, #0d133a 0%, #1a237e 60%, #303f9f 100%);
    color: #f5f7fa;
    position: relative;
    overflow: hidden;
    border-top: 3px solid rgba(255, 215, 0, 0.3);
}

.section-07 .content {
    position: relative;
    z-index: 2;
    padding: 80px 40px;
}

.section-07 .section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.1);
}

.section-07 .form-container {
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 20px;
    padding: 28px;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-07 .form-container:hover {
    transform: none;
    box-shadow: none;
}

.section-07 input,
.section-07 select,
.section-07 button {
    transition: all 0.3s ease;
}

.section-07 button {
    background: transparent;
    color: #f5f7fa;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: none;
}

.section-07 button:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.section-07 label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
}

.section-07 input,
.section-07 select {
    border: none;
    background: transparent;
    color: #fff;
}

/* 모든 섹션 공통 스타일 업그레이드 */
.section {
    position: relative;
    padding: 80px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    transition: all 0.5s ease;
}

/* 공통 컨테이너 스타일 개선 - 모든 섹션 통일 */
.content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    color: #f5f7fa;
    text-align: center;
    min-height: 500px;
}

/* 섹션 타이틀 고급화 */
.section-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    text-align: center;
    margin-bottom: clamp(50px, 7vh, 70px);
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
    border-radius: 1px;
}

/* 모든 섹션 내부 요소들의 고급화 */
.hero-text-container,
.section-content,
.keywords-container,
.features-container,
.grid-container,
.cards-container,
.text-container,
.form-container {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #f5f7fa;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-text-container:hover,
.section-content:hover,
.keywords-container:hover,
.features-container:hover,
.grid-container:hover,
.cards-container:hover,
.text-container:hover,
.form-container:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 이미지나 비디오 요소들도 최대 너비 제한 */
.section img,
.section video,
.section iframe {
    /* max-width 제한 해제 */
    height: auto;
}

/* 섹션 1 - 히어로 섹션 (다른 섹션과 통일) */
.section-01 {
    background: linear-gradient(135deg, #0d133a 0%, #1a237e 60%, #303f9f 100%);
    color: #f5f7fa;
    position: relative;
    padding: 80px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    overflow: hidden;
}

.section-01 .content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 80px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    color: #f5f7fa;
    text-align: center;
    min-height: 500px;
}

.section-01 .main-title {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
}

.section-01 .keywords-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


.section-01::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-image {
    display: none;
}

@keyframes heroImageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% center, transparent 0%, rgba(0,0,0,0.7) 100%),
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-content {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 5vw;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-heading {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.1);
}

.hero-description {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    line-height: 1.4;
    font-weight: 700;
    font-family: 'Noto Sans KR', sans-serif;
    color: white;
    margin-bottom: 35px;
    opacity: 0.95;
    /* max-width 제한 해제 */
    text-shadow: 
        -1px -1px 0 rgba(0,0,0,0.3),
        1px -1px 0 rgba(0,0,0,0.3),
        -1px 1px 0 rgba(0,0,0,0.3),
        1px 1px 0 rgba(0,0,0,0.3),
        2px 2px 8px rgba(0,0,0,0.4);
    letter-spacing: -0.02em;
    word-break: keep-all;
}

.hero-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    color: #000;
    text-decoration: none;
    border-radius: 35px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.7s;
}

.hero-button:hover {
    background: linear-gradient(135deg, #FFE44D 0%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: none;
}

.hero-button:hover::before {
    left: 100%;
}

.keywords-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    padding: 60px 50px;
    min-height: 500px;
    justify-content: flex-start;
}

/* 메인 콘텐츠 레이아웃 */

/* 여백 조정 기능을 위한 content-flex 스타일 개선 */
.content-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 20px; /* 기본 gap 값 - JavaScript로 동적 조정 */
    margin-bottom: 20px;
    padding: 20px 0;
    transition: gap 0.3s ease; /* 부드러운 여백 변화 효과 */
}

/* 텍스트 영역 - 여백 조정을 위해 최대 너비 확장 */
.text-content {
    flex: 1;
    max-width: 700px; /* 확장하여 여백 조정 시 자연스럽게 */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content .title-wrapper {
    text-align: left;
    padding: 0;
    margin: 0;
    width: 100%;
}

.text-content .pre-title {
    display: block;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 215, 0, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.text-content .section-main-title {
    margin-bottom: 25px;
    line-height: 1.2;
}

.text-content .hero-description {
    margin-bottom: 20px;
    line-height: 1.5;
}

.text-content .sub-description {
    margin-bottom: 0;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* 비디오 컨테이너 - 반응형 기본 설정 */
.image-content,
div.image-content {
    flex: 0 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 500px !important;
    height: 500px !important;
    max-width: 500px !important;
    max-height: 500px !important;
    min-width: 250px !important;
    min-height: 250px !important;
    overflow: hidden !important;
    border-radius: 15px !important;
    position: relative !important;
    box-sizing: border-box !important;
}

/* 전역 비디오 리셋 - 모든 환경에서 동일하게 작동 */
video, video[autoplay], video[loop], video[muted] {
    outline: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 컨테이너 내 모든 요소 강제 설정 - 여백 조정을 위해 500x500으로 변경 (반응형 대응) */
.image-content > *,
.image-content video,
.image-content img {
    width: 500px !important;
    height: 500px !important;
    max-width: 500px !important;
    max-height: 500px !important;
    min-width: 300px !important; /* 반응형을 위해 최소값 축소 */
    min-height: 300px !important; /* 반응형을 위해 최소값 축소 */
}

/* 비디오 컨트롤 패널 스타일 - 여백 조정 버튼 포함 */
.video-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.control-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.control-btn:active {
    transform: scale(0.95);
}

/* 비활성화된 버튼 스타일 */
.control-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed;
    transform: none !important;
}

.control-btn:disabled:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: none;
}

/* 여백 조정 버튼 특별 스타일 */
#gapBtn, #gapBtn2 {
    background: rgba(255, 215, 0, 0.8);
    color: #000;
    font-weight: bold;
}

#gapBtn:hover, #gapBtn2:hover {
    background: rgba(255, 215, 0, 1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* 이미지 스타일 - 최고 우선순위로 강제 적용 */
.main-platform-image,
img.main-platform-image {
    width: 500px !important;
    max-width: 500px !important;
    min-width: 500px !important;
    height: 500px !important;
    max-height: 500px !important;
    min-height: 500px !important;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.15)) !important;
    transition: all 0.3s ease !important;
    object-fit: cover !important;
    box-sizing: border-box !important;
    display: block !important;
}

.main-platform-image:hover {
    transform: scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 215, 0, 0.2);
}

/* 비디오 스타일 - 반응형 기본 설정 */
.image-content .main-platform-video,
video.main-platform-video,
#heroVideo {
    width: 100% !important;
    max-width: 500px !important;
    min-width: 250px !important;
    height: 100% !important;
    max-height: 500px !important;
    min-height: 250px !important;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.15)) !important;
    transition: all 0.3s ease !important;
    border-radius: 15px !important;
    object-fit: cover !important;
    object-position: center !important;
    background: transparent !important;
    /* 1:1 비율로 프레임 사이즈에 정확히 맞춤 */
    transform: none !important;
    box-sizing: border-box !important;
    display: block !important;
}

.image-content .main-platform-video:hover,
video.main-platform-video:hover,
#heroVideo:hover {
    transform: none !important;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 215, 0, 0.2) !important;
}

/* 반응형 디자인 */
@media (max-width: 1120px) {
    .content-flex {
        flex-direction: column;
        gap: 40px;
        padding: 10px 0;
    }
    
    .text-content {
        max-width: 100%;
        text-align: center;
        order: 1;
    }
    
    .text-content .title-wrapper {
        text-align: center;
    }
    
    .text-content .pre-title {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
    
    .text-content .section-main-title {
        margin-bottom: 20px;
        font-size: 2.5rem;
    }
    
    .text-content .hero-description {
        margin-bottom: 15px;
        font-size: 1.8rem;
    }
    
    .text-content .sub-description {
        font-size: 1.1rem;
    }
    
    /* 영상 컨테이너를 화면에 맞게 강제 축소 */
    .image-content,
    div.image-content {
        flex: none !important;
        width: 400px !important;
        height: 400px !important;
        max-width: 400px !important;
        max-height: 400px !important;
        min-width: 280px !important;
        min-height: 280px !important;
        order: 2;
        margin: 0 auto !important;
    }
    
    /* 영상 자체도 컨테이너에 맞게 축소 */
    .image-content > *,
    .image-content video,
    .image-content img,
    .image-content .main-platform-video,
    .main-platform-image,
    .main-platform-video,
    video.main-platform-video,
    #heroVideo {
        width: 400px !important;
        height: 400px !important;
        max-width: 400px !important;
        max-height: 400px !important;
        min-width: 280px !important;
        min-height: 280px !important;
    }
    
    /* 모바일에서 비디오 컨트롤 버튼 크기 조정 */
    .video-controls {
        top: 8px;
        right: 8px;
        gap: 6px;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .keywords-container {
        padding: 40px 20px;
        min-height: auto;
    }
}

.keyword-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(15px);
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem 2rem;
    border-radius: 18px;
    border: none;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 600px;
    text-align: center;
    animation: dissolveIn 0.5s ease-out forwards;
    animation-play-state: paused;
    white-space: normal;
    margin-bottom: 1rem;
    transition: all 0.5s ease;
}

.keyword-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.keyword-item:nth-child(1) { animation-delay: 0.1s; }
.keyword-item:nth-child(2) { animation-delay: 0.4s; }
.keyword-item:nth-child(3) { animation-delay: 0.7s; }
.keyword-item:nth-child(4) { animation-delay: 1.0s; }

.keyword-item[data-scroll].active {
    animation-play-state: running;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
}

@keyframes dissolveIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.keyword-icon {
    font-size: 1.5rem;
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.pre-title {
    font-size: 1rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.sub-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.keyword-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: left;
}

.keyword-item h2 {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Noto Sans KR', sans-serif;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--text-light);
}

.keyword-content p {
    font-size: 1.15rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.main-title {
    position: relative;
    text-align: center;
    z-index: 3;
    width: 100%;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.title-wrapper {
    position: relative;
    width: clamp(300px, 95%, 1400px);
    text-align: left;
    padding: 0 clamp(20px, 5vw, 60px);
    margin: 0 auto;
}

.hero-description {
    font-size: clamp(1.5rem, 5vw, 2.8rem);
    line-height: 1.4;
    font-weight: 700;
    font-family: 'Noto Sans KR', sans-serif;
    color: white;
    text-shadow: 
        -1px -1px 0 rgba(0,0,0,0.3),
        1px -1px 0 rgba(0,0,0,0.3),
        -1px 1px 0 rgba(0,0,0,0.3),
        1px 1px 0 rgba(0,0,0,0.3),
        2px 2px 8px rgba(0,0,0,0.4);
    letter-spacing: -0.02em;
    word-break: keep-all;
}

@media screen and (max-width: 1024px) {
    .hero-content {
        padding: 40px;
    }

    .hero-text-container {
        max-width: 700px;
        margin-left: 5%;
        padding-right: 40px;
    }

    .hero-image {
        width: 70%;
        height: 70%;
        left: 30%;
    }

    .keywords-container {
        max-width: 650px;
    }

    .keyword-item {
        max-width: 600px;
        padding: 1rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .hero-content {
        padding: 30px 20px;
        align-items: center;
        text-align: center;
    }

    .hero-text-container {
        margin-left: 0;
        padding-right: 0;
        align-items: center;
    }

    .hero-image {
        width: 90%;
        height: 60%;
        left: 5%;
        top: auto;
        bottom: 0;
        transform: none;
        opacity: 0.6;
    }

    .hero-image {
        width: 80%;
        height: 50%;
        top: auto;
        bottom: 0;
        right: 50%;
        transform: translateX(50%);
        opacity: 0.4;
    }

    .hero-heading {
        font-size: clamp(2.2rem, 8vw, 3rem);
        text-align: center;
    }

    .hero-description {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        line-height: 1.4;
        text-align: center;
        margin-bottom: 25px;
    }

    .keywords-container {
        max-width: 100%;
        align-items: center;
        margin-top: 2rem;
    }

    .keyword-item {
        max-width: 100%;
        padding: 1rem 1.5rem;
        white-space: normal;
    }
    
    .keyword-item h2 {
        font-size: 1.4rem;
    }
    
    .keyword-content p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

@media screen and (max-width: 480px) {
    .hero-content {
        padding: 20px 15px;
    }

    .hero-heading {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        line-height: 1.3;
    }

    .hero-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .keyword-item {
        padding: 0.8rem 1.2rem;
        gap: 0.8rem;
    }
    
    .keyword-item h2 {
        font-size: 1.2rem;
    }
    
    .keyword-content p {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .hero-image {
        width: 90%;
        height: 40%;
    }
}

.hero-description .highlight {
    color: #FFD700;
    font-size: 1.1em;
    -webkit-text-stroke: 1px rgba(0,0,0,0.3);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.cta-button {
    display: inline-block;
    padding: clamp(12px, 2vw, 20px) clamp(30px, 4vw, 50px);
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    transition: transform var(--transition-speed), background-color var(--transition-speed);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* 섹션 2 - 특징 */
.section-02 {
    background: linear-gradient(135deg, #0d133a 0%, #1a237e 60%, #283593 100%);
    color: #f5f7fa;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    text-align: center;
    margin-bottom: clamp(50px, 7vh, 70px);
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    justify-items: center;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
        gap: 40px;
        padding: 25px 30px;
    }
    
    .feature-item {
        padding: 40px 35px;
        min-height: 220px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 95%;
        gap: 35px;
        padding: 20px 10px;
        margin: 0 auto;
    }
    
    .feature-item {
        width: 100%;
        max-width: none;
        padding: 45px 35px;
        min-height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .features-grid {
        gap: 30px;
        padding: 15px 5px;
        max-width: 100%;
    }
    
    .feature-item {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        padding: 40px 30px;
        min-height: 220px;
        border-radius: 20px;
    }
    
    .feature-item h3 {
        font-size: 1.3rem;
        margin: 1rem 0 0.8rem 0;
    }
    
    .feature-item p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 10px;
    }
}

.feature-item {
    text-align: center;
    padding: clamp(30px, 4vw, 40px);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #f5f7fa;
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.1),
        transparent
    );
    transition: left 0.8s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: clamp(3rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FDB931);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.feature-item p {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 400;
}

.certification-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
    max-width: 100%;
    margin: 60px auto 0;
    position: relative;
}

.certification-container::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.certification-content {
    width: 100%;
    max-width: 1400px;
    position: relative;
    margin: 0 auto;
    padding: 0 40px;
}

.certification-image {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

.certification-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.certification-image:hover::after {
    opacity: 1;
}

.cert-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: none;
    transition: transform 0.5s ease;
}

.cert-img:hover {
    transform: translateY(-10px);
}

@media screen and (max-width: 1024px) {
    .certification-container {
        gap: 40px;
        flex-direction: column;
    }
    
    .certification-content {
        order: 1;
        margin-bottom: 20px;
    }
    
    .certification-image {
        order: 2;
        max-width: 700px;
    }
    
    .cert-img {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .certification-container {
        gap: 30px;
    }
    
    .certification-image {
        max-width: 100%;
    }
    
    .certification-content {
        max-width: 100%;
    }
}

/* 섹션 4 - 통계 */
.section-04 {
    background: transparent;
    color: #f5f7fa;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-04 .content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin: 80px auto 0;
    width: 100%;
    position: relative;
    justify-items: center;
    text-align: center;
}

.stat-item {
    padding: 4rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    height: 380px;
    box-sizing: border-box;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.02) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #FFD700;
    background: transparent;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #FFD700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.stat-label {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.stat-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1rem;
    line-height: 1.6;
    position: relative;
    padding-top: 1rem;
}

.stat-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: rgba(255, 215, 0, 0.3);
}

@media screen and (max-width: 1400px) {
    .stats-container {
        gap: 2rem;
    }
}

@media screen and (max-width: 1200px) {
    .section-04 {
        padding: 100px 0;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .stats-container::before {
        display: none;
    }

    .stat-item {
        padding: 3rem 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .section-04 {
        padding: 80px 0;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 60px;
    }
    
    .stat-item {
        padding: 3.5rem 2.5rem;
        min-height: 350px;
        height: 350px;
    }
    
    .stat-number {
        font-size: 3rem;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .stat-label {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .section-04 {
        padding: 60px 0;
    }

    .stats-container {
        gap: 1.5rem;
        margin-top: 40px;
    }

    .stat-item {
        padding: 3rem 2rem;
        min-height: 320px;
        height: 320px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* 섹션 6 - 후기 */
.section-06 {
    background: linear-gradient(140deg, #000000, #1a1a1a);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.section-06::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 10%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(30px, 5vw, 50px);
    padding: 20px;
    position: relative;
    z-index: 1;
    justify-items: center;
    text-align: center;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.03);
    padding: clamp(30px, 4vw, 40px);
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 120px;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(255, 215, 0, 0.1);
    pointer-events: none;
}

.testimonial-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.05),
        transparent
    );
    transition: left 0.8s ease;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.testimonial-item:hover::after {
    left: 100%;
}

.testimonial-item:hover::after {
    left: 100%;
}

.testimonial-content {
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding-left: 25px;
    font-style: italic;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #FFD700, transparent);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    padding-top: 20px;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFD700;
    letter-spacing: 0.5px;
}

.author-detail {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}









/* 네비게이션 */
.navigation {
    position: fixed;
    left: clamp(20px, 3vw, 30px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.navigation ul {
    list-style: none;
    position: relative;
}

.navigation ul::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
}

.navigation ul li {
    margin: clamp(15px, 2.5vh, 25px) 0;
    position: relative;
}

.navigation ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all var(--transition-speed);
}

.navigation ul li a::before {
    content: '';
    display: block;
    width: clamp(10px, 1.2vw, 14px);
    height: clamp(10px, 1.2vw, 14px);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-speed);
    margin-right: 10px;
    border: 2px solid transparent;
}

.navigation ul li a::after {
    content: attr(data-section);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-speed);
    font-size: clamp(14px, 1vw, 16px);
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.8);
}

/* 섹션 5 - 투자 프로세스 */
.section-05 {
    background: linear-gradient(135deg, #1c1c1c 0%, #2a2a2a 100%);
    color: var(--text-light);
    padding: 80px 0;
}

.section-05 .content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(20px, 4vw, 40px);
    max-width: 1200px;
    margin: 0 auto;
}

.process-item {
    text-align: center;
    padding: clamp(20px, 3vw, 30px);
    background: transparent;
    border-radius: 15px;
    backdrop-filter: none;
    border: none;
    transition: transform 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .process-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 768px) {
    .section-05 {
        padding: 80px 0;
    }
    
    .section-05 .section-header {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
    }
    
    .section-05 .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .section-05 .section-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .process-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .process-item {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .form-section {
        padding: 2.5rem 1.5rem;
        margin: 2rem 1rem;
    }
}

@media screen and (max-width: 480px) {
    .section-05 {
        padding: 60px 0;
    }
    
    .section-05 .section-header {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .section-05 .section-title {
        font-size: clamp(1.6rem, 4.5vw, 2rem);
        margin-bottom: 1rem;
        line-height: 1.4;
        word-break: keep-all;
        white-space: normal;
        text-align: center;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-05 .section-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .process-container {
        gap: 20px;
        padding: 0 15px;
    }
    
    .process-item {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    .form-section {
        padding: 2rem 1rem;
        margin: 1.5rem 0.5rem;
        border-radius: 25px;
    }
}

.process-icon {
    width: 50px;
    height: 50px;
    background: #FEE500;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: none;
}

.process-item h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.process-item p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}



.navigation ul li a:hover::before,
.navigation ul li a.active::before {
    background-color: var(--primary-color);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.navigation ul li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}



.process-item:hover {
    transform: none;
    background: transparent;
    border-color: transparent;
}

.process-item:hover .process-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.process-item:hover .process-details li {
    color: rgba(255, 255, 255, 0.9);
}

.process-image {
    flex: 0.8;
    position: relative;
}

.process-illustration {
    width: 100%;
    /* max-width 제한 해제 */
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: none;
    border: none;
}

.overlay-content h3 {
    color: var(--kakao-yellow);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits-list i {
    color: var(--kakao-yellow);
    font-size: 0.9rem;
}

@media screen and (max-width: 1200px) {
    .process-layout {
        flex-direction: column;
        gap: 4rem;
    }

    .process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .process-flow {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 1200px) {
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-flow::before {
        display: none;
    }

    .process-header {
        margin-bottom: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .process-header {
        margin-bottom: 3rem;
    }

    .process-layout {
        padding: 0 1rem;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-item {
        padding: 2rem;
    }

    .process-icon {
        width: 70px;
        height: 70px;
        font-size: 18px;
        font-weight: 500;
        color: var(--text-light);
        margin-bottom: 10px;
        display: block;
        text-align: center;
        font-size: 1.3rem;
    }

    .process-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .process-header {
        margin-bottom: 3rem;
    }

    .process-item {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .process-content h3 {
        font-size: 1.2rem;
    }

    .process-flow::before {
        left: 30px;
    }
}

@media screen and (max-width: 480px) {
    .process-header .section-description br {
        display: none;
    }

    .process-item {
        padding: 1rem;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* 반응형 디자인 */
/* PC - 1024px 이상 */
@media screen and (min-width: 1024px) {
    .contact-form {
        width: 100%;
        max-width: 800px;
        padding: clamp(40px, 5vw, 60px);
        margin: 2rem auto;
    }

    .form-group input,
    .form-group select {
        height: clamp(58px, 5vh, 68px);
        padding: 0 15px;
        font-size: 16px;
        line-height: 1;
        text-overflow: ellipsis;
        display: flex;
        align-items: flex-start;
        padding-top: 4px;
    }

    /* 드롭박스 스타일 개선 */
    .form-group select {
        padding: 0 30px 0 15px;
        padding-top: 4px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        display: flex;
        align-items: flex-start;
    }

    /* 생년월일 선택 드롭박스 특별 스타일 */
    .birthdate-container select {
        padding: 0 25px 0 10px;
        padding-top: 4px;
        min-width: 80px;
    }

    /* 은행 선택 드롭박스 특별 스타일 */
    #bankSelect {
        width: 100%;
        max-width: none;
    }

    .account-form-container > div {
        grid-template-columns: minmax(200px, 1fr) 2fr;
        gap: 12px;
    }

    .submit-button {
        max-width: 400px;
        height: 60px;
        margin-top: 15px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .contact-form {
        padding: clamp(30px, 4vw, 40px);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .section5 {
        padding-top: max(140px, 18vh);
    }

    .contact-title {
        font-size: 2.8rem;
        top: 70px;
    }
}

/* Tablet - 768px ~ 1023px */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .contact-form {
        width: min(92%, 800px);
        padding: 35px;
        margin-top: 1.5rem;
    }

    .form-group input,
    .form-group select {
        height: 63px;
    }

    .features-grid,
    .stats-container,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .account-form-container > div {
        grid-template-columns: 1fr 2fr;
        gap: 10px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .section5 {
        padding-top: max(100px, 15vh);
    }

    .contact-title {
        font-size: 2.4rem;
        top: 50px;
    }

    .submit-button {
        max-width: 350px;
        height: 55px;
    }

    :root {
        --section-padding: clamp(50px, 8vh, 80px);
    }
}

/* Mobile - 767px 이하 */
@media screen and (max-width: 767px) {
    html {
        font-size: 14px;
    }

    .section {
        padding: clamp(30px, 5vh, 40px) 15px;
    }
    
    .contact-form {
        width: 96%;
        padding: clamp(30px, 4vw, 40px);
    }

    .contact-title {
        font-size: 1.8rem;
        top: 30px;
        white-space: normal;
        text-align: center;
        width: 90%;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select {
        height: 45px;
        font-size: 1rem;
        padding: 10px 15px;
    }

    .birthdate-container {
        gap: 10px;
    }
}

@media screen and (max-width: 767px) {
    .contact-form {
        width: 100%;
        /* max-width 제한 해제 */
        padding: clamp(30px, 5vw, 60px);
        margin: 2rem auto;
        background: transparent;
        backdrop-filter: none;
        border-radius: 15px;
        border: none;
    }
    
    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group select {
        height: 45px;
        font-size: 1rem;
    }

    .features-grid,
    .stats-container,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .account-form-container > div {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .birthdate-container {
        grid-template-columns: 4fr 3fr 3fr;
        gap: 8px;
    }
    
    .birthdate-container select {
        padding: 8px 25px 8px 8px;
        font-size: 0.9rem;
        height: 40px;
    }

    .section-05 {
        padding-top: max(80px, 12vh);
        width: 100%;
    }

    .contact-title {
        font-size: 1.8rem;
        top: 30px;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .submit-button {
        width: 100%;
        height: 50px;
        font-size: 1.1rem;
    }

    .navigation {
        display: none;
    }
}

/* 작은 모바일 화면 - 375px 이하 */
@media screen and (max-width: 375px) {
    .contact-form {
        width: 96%;
        padding: 15px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group select {
        height: 40px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .section5 {
        padding-top: max(70px, 10vh);
    }

    .contact-title {
        font-size: 1.5rem;
        top: 25px;
    }

    .submit-button {
        height: 45px;
        font-size: 1rem;
        padding: 10px;
    }
}

/* 높이가 작은 화면 대응 */
@media screen and (max-height: 700px) {
    .section5 {
        padding-top: max(70px, 10vh);
    }

    .contact-form {
        margin-top: 0.5rem;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .form-group {
        margin-bottom: 12px;
    }
}

/* 애니메이션 */
.fade-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.fade-text.animate span {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section 07 Styles */
.section-07 {
    background: linear-gradient(140deg, #000000, #1a1a1a);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4.2rem 5%;
    position: relative;
    overflow: hidden;
}

    @media (max-width: 768px) {
        .section-07 {
            padding: 2.5rem 5%;
        }
    }

.section-07 .content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-07 .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-07 .section-subtitle {
    color: #FFD700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.2);
    opacity: 0.9;
}

.section-07 .section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.section-07 .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.section-07 .section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Section 04 Header Enhancement */
.section-04 .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 215, 0, 0.02) 100%);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    overflow: visible;
}

.section-04 .section-subtitle {
    color: #FFD700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    opacity: 0.95;
}

.section-04 .section-title {
    font-size: clamp(2rem, 4vw, 4rem);
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 40%, #FFC107 60%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    font-weight: 800;
    line-height: 1.3;
    position: relative;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
    word-break: keep-all;
    white-space: normal;
    max-width: 100%;
    padding: 0 1rem;
}

.section-04 .section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.section-04 .section-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Urgent Text Effects */
.urgent-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    background: linear-gradient(45deg, #FF6B6B, #FFE66D, #FF6B6B);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: urgentGlow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    display: inline-block;
    position: relative;
}

.urgent-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    animation: urgentSweep 3s linear infinite;
    pointer-events: none;
}

@keyframes urgentGlow {
    0% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
    100% {
        background-position: 100% 50%;
        filter: brightness(1.3);
    }
}

@keyframes urgentSweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.time-warning {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FF8C00, #FF4500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(255, 140, 0, 0.4);
    animation: timeWarningPulse 1.5s ease-in-out infinite;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes timeWarningPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}
.contact-form {
    background: transparent;
    backdrop-filter: none;
    border-radius: 30px;
    box-shadow: none;
    padding: 4rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.05),
        transparent
    );
    transition: left 1.2s ease;
}

.contact-form:hover::before {
    left: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.form-section {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 215, 0, 0.05) 30%,
        rgba(255, 140, 0, 0.03) 60%,
        rgba(255, 255, 255, 0.08) 100%);
    border-radius: 35px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 4px 0 rgba(255, 255, 255, 0.15),
        inset 0 -4px 0 rgba(255, 215, 0, 0.15),
        0 0 50px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 215, 0, 0.08) 60deg,
        rgba(255, 140, 0, 0.05) 120deg,
        transparent 180deg,
        rgba(255, 215, 0, 0.03) 240deg,
        transparent 360deg
    );
    animation: conicRotate 25s linear infinite;
    pointer-events: none;
}

@keyframes conicRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.form-section::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, 
        rgba(13, 19, 58, 0.4) 0%, 
        rgba(48, 63, 159, 0.3) 100%);
    border-radius: 30px;
    pointer-events: none;
}

.form-section:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.15),
        inset 0 3px 0 rgba(255, 255, 255, 0.2);
}

.form-section-title {
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
    position: relative;
    padding-bottom: 1rem;
}

.form-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.form-group:hover label {
    color: #FFD700;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    color: var(--text-light);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 0 0 4px rgba(255, 215, 0, 0.1),
        0 4px 12px rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4L6 8L10 4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    color: var(--text-light);
    background-color: rgba(0, 0, 0, 0.7);
}

.form-group select:focus {
    background-color: rgba(0, 0, 0, 0.8);
}

.form-group select option {
    background: #1a1a1a;
    color: var(--text-light);
    padding: 10px;
}

.form-group select option:hover,
.form-group select option:focus,
.form-group select option:active,
.form-group select option:checked {
    background: var(--kakao-yellow);
    color: var(--primary-color);
}

/* 드롭다운 스타일링 */
.form-group select::-ms-expand {
    display: none;
}

.form-group select:focus option:checked {
    background: var(--kakao-yellow);
    color: var(--primary-color);
}

/* 드롭다운 컨테이너 스타일 */
.birthdate-group select {
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    text-align: center;
    padding-left: 0.5rem;
    padding-right: 2rem;
}

/* Birthday Group */
.birthdate-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* SNS Buttons */
.sns-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.sns-buttons input[type="radio"] {
    display: none;
}

.sns-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 2.5rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #ffffff;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 215, 0, 0.02) 100%);
    backdrop-filter: blur(15px);
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(255, 215, 0, 0.1);
    font-family: 'Montserrat', 'Noto Sans KR', sans-serif;
    position: relative;
    overflow: hidden;
    min-width: 220px;
    min-height: 100px;
}

.sns-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 215, 0, 0.1) 40%,
        rgba(255, 215, 0, 0.2) 60%,
        transparent 100%
    );
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sns-button i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.sns-button span {
    font-size: 1.1rem !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.sns-button:hover {
    border-color: rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 215, 0, 0.1) 100%);
    transform: translateY(-8px) scale(1.02);
    color: #fff;
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(255, 215, 0, 0.2);
}

.sns-button:hover::before {
    left: 100%;
}

input[type="radio"]:checked + .sns-button {
    border-color: rgba(255, 215, 0, 0.8);
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 215, 0, 0.05) 100%);
    transform: translateY(-5px) scale(1.05);
    color: #fff;
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 215, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(255, 215, 0, 0.3);
}

/* Form Section Title */
.form-section-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6347 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.form-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
}

/* Submit Button */
.submit-section {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 3rem;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: rgb(0, 0, 0);
    background: linear-gradient(135deg, #FFE44D 0%, #FFD700 50%, #FFC107 100%);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.6s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.4),
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #FFEB3B 0%, #FFD700 50%, #FF8F00 100%);
    filter: brightness(1.1) saturate(1.1);
}

.button-text {
    margin-right: 0.5rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.button-icon {
    font-size: 1.4rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: bold;
}

.submit-button:hover .button-icon {
    transform: translateX(8px) scale(1.2);
}

/* Error Messages */
.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-07 {
        padding: 2rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-07 .section-title {
        font-size: 2rem;
    }

    .sns-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .sns-button {
        min-width: 180px;
        min-height: 70px;
        padding: 1.2rem 2rem;
        font-size: 0.9rem;
    }
    
    .sns-button span {
        font-size: 16px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .sns-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .sns-button {
        min-width: 100%;
        min-height: 80px;
        padding: 1.5rem 1rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .sns-button a {
        width: 100% !important;
        flex-direction: row !important;
        gap: 1rem;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .sns-button span:first-child {
        font-size: 2rem !important;
        margin-right: 1rem !important;
    }
    
    .sns-button span:last-child {
        font-size: 16px !important;
        white-space: normal !important;
        display: inline-block !important;
        vertical-align: middle !important;
        line-height: 1.3;
        text-align: center;
        max-width: 120px;
    }
    
    /* 태블릿에서 SNS 텍스트 처리 - 기존 잘못된 코드 제거 */
    
    .form-section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .submit-button {
        width: 100%;
        padding: 1.3rem 2rem;
        font-size: 1.1rem;
        margin-top: 2rem;
    }
    
    .button-text {
        font-size: 1.1rem;
    }
}

/* 태블릿 반응형 추가 */
@media (max-width: 1024px) {
    .section-04 .section-header {
        padding: 2.5rem 2rem;
        max-width: 90%;
    }
    
    .section-04 .section-title {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
        line-height: 1.2;
    }
    
    .section-04 .section-description {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .urgent-text {
        font-size: 1.3rem;
    }
    
    .time-warning {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .sns-buttons {
        gap: 1.2rem;
        margin: 1rem 0;
    }
    
    .sns-button {
        min-width: 100%;
        min-height: 70px;
        padding: 1.2rem 0.8rem;
        border-radius: 15px;
    }
    
    .sns-button a {
        padding: 0 0.5rem;
        gap: 0.8rem;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: row !important;
    }
    
    .sns-button span:first-child {
        font-size: 1.8rem !important;
        margin-right: 0.8rem !important;
        display: inline-block !important;
    }
    
    .sns-button span:last-child {
        font-size: 13px !important;
        font-weight: 600;
        white-space: normal !important;
        display: inline-block !important;
        vertical-align: middle !important;
        line-height: 1.2;
        text-align: center;
        max-width: 90px;
        word-break: keep-all;
    }
    
    .form-section-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .form-section {
        padding: 2rem 1rem;
        border-radius: 20px;
    }
    
    .section-04 .section-header {
        padding: 2rem 1rem;
        margin-bottom: 2.5rem;
        max-width: 95%;
        overflow: visible;
    }
    
    .section-04 .section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-bottom: 1.5rem;
        line-height: 1.4;
        padding: 0 0.5rem;
        word-break: keep-all;
        white-space: normal;
        max-width: 100%;
    }
    
    .section-04 .section-description {
        font-size: 1.1rem;
        line-height: 1.7;
        padding: 0 0.5rem;
    }
    
    .urgent-text {
        font-size: 1.2rem;
        display: block;
        margin: 0.5rem 0;
    }
    
    .time-warning {
        font-size: 1.3rem;
        display: block;
        margin: 0.5rem 0;
    }
    
    .submit-button {
        width: 100%;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        border-radius: 20px;
        margin-top: 1.5rem;
    }
    
    .button-text {
        font-size: 1rem;
    }
    
    .button-icon {
        font-size: 1.2rem;
    }
    
    /* 모바일에서 제출 버튼 텍스트 변경 */
    .submit-button {
        position: relative;
    }
    
    .submit-button .button-text {
        visibility: hidden;
        position: relative;
    }
    
    .submit-button .button-text::before {
        content: '바로 시작하기';
        visibility: visible;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 700;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* 영상과 section-title 태블릿/모바일 반응형 추가 설정 */
@media screen and (max-width: 1200px) {
    /* 대형 태블릿용 추가 설정 */
    .image-content,
    div.image-content {
        width: 450px !important;
        height: 450px !important;
        max-width: 450px !important;
        max-height: 450px !important;
        min-width: 300px !important;
        min-height: 300px !important;
    }
    
    .image-content > *,
    .image-content video,
    .image-content img,
    .image-content .main-platform-video,
    video.main-platform-video,
    #heroVideo {
        width: 450px !important;
        height: 450px !important;
        max-width: 450px !important;
        max-height: 450px !important;
        min-width: 300px !important;
        min-height: 300px !important;
    }
}

@media screen and (max-width: 1024px) {
    /* 태블릿용 설정 */
    .section-title {
        font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
        margin-bottom: clamp(30px, 5vh, 50px) !important;
        padding: 0 20px;
        line-height: 1.3;
    }
    
    .image-content,
    div.image-content {
        width: 380px !important;
        height: 380px !important;
        max-width: 380px !important;
        max-height: 380px !important;
        min-width: 280px !important;
        min-height: 280px !important;
    }
    
    .image-content > *,
    .image-content video,
    .image-content img,
    .image-content .main-platform-video,
    video.main-platform-video,
    #heroVideo {
        width: 380px !important;
        height: 380px !important;
        max-width: 380px !important;
        max-height: 380px !important;
        min-width: 280px !important;
        min-height: 280px !important;
    }
}

@media screen and (max-width: 768px) {
    /* 모바일용 설정 */
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
        margin-bottom: clamp(20px, 4vh, 35px) !important;
        padding: 0 15px;
        line-height: 1.2;
    }
    
    .section-title::after {
        width: 60px !important;
        height: 2px !important;
        bottom: -10px !important;
    }
    
    .section-title::before {
        width: 40px !important;
        height: 1px !important;
        top: -5px !important;
    }
    
    .image-content,
    div.image-content {
        width: 300px !important;
        height: 300px !important;
        max-width: 300px !important;
        max-height: 300px !important;
        min-width: 250px !important;
        min-height: 250px !important;
    }
    
    .image-content > *,
    .image-content video,
    .image-content img,
    .image-content .main-platform-video,
    video.main-platform-video,
    #heroVideo {
        width: 300px !important;
        height: 300px !important;
        max-width: 300px !important;
        max-height: 300px !important;
        min-width: 250px !important;
        min-height: 250px !important;
    }
}

@media screen and (max-width: 480px) {
    /* 소형 모바일용 설정 */
    .section-title {
        font-size: clamp(1.2rem, 5vw, 1.8rem) !important;
        margin-bottom: clamp(15px, 3vh, 25px) !important;
        padding: 0 10px;
        line-height: 1.1;
    }
    
    .image-content,
    div.image-content {
        width: 250px !important;
        height: 250px !important;
        max-width: 250px !important;
        max-height: 250px !important;
        min-width: 220px !important;
        min-height: 220px !important;
    }
    
    .image-content > *,
    .image-content video,
    .image-content img,
    .image-content .main-platform-video,
    video.main-platform-video,
    #heroVideo {
        width: 250px !important;
        height: 250px !important;
        max-width: 250px !important;
        max-height: 250px !important;
        min-width: 220px !important;
        min-height: 220px !important;
    }
    
    .video-controls {
        top: 5px !important;
        right: 5px !important;
        gap: 4px !important;
    }
    
    .control-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
    }
}

@media screen and (max-width: 375px) {
    /* iPhone SE, 소형 모바일용 추가 설정 */
    .section-title {
        font-size: clamp(1.1rem, 5.5vw, 1.6rem) !important;
        margin-bottom: clamp(12px, 2.5vh, 20px) !important;
        padding: 0 8px;
        line-height: 1.0;
    }
    
    .image-content,
    div.image-content {
        width: 220px !important;
        height: 220px !important;
        max-width: 220px !important;
        max-height: 220px !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    
    .image-content > *,
    .image-content video,
    .image-content img,
    .image-content .main-platform-video,
    video.main-platform-video,
    #heroVideo {
        width: 220px !important;
        height: 220px !important;
        max-width: 220px !important;
        max-height: 220px !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    
    .video-controls {
        top: 4px !important;
        right: 4px !important;
        gap: 3px !important;
    }
    
    .control-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
    }
}

@media screen and (max-width: 320px) {
    /* 초소형 모바일용 설정 */
    .section-title {
        font-size: clamp(1rem, 6vw, 1.4rem) !important;
        margin-bottom: clamp(10px, 2vh, 18px) !important;
        padding: 0 5px;
        line-height: 0.95;
    }
    
    .image-content,
    div.image-content {
        width: 190px !important;
        height: 190px !important;
        max-width: 190px !important;
        max-height: 190px !important;
        min-width: 180px !important;
        min-height: 180px !important;
    }
    
    .image-content > *,
    .image-content video,
    .image-content img,
    .image-content .main-platform-video,
    video.main-platform-video,
    #heroVideo {
        width: 190px !important;
        height: 190px !important;
        max-width: 190px !important;
        max-height: 190px !important;
        min-width: 180px !important;
        min-height: 180px !important;
    }
    
    .video-controls {
        top: 3px !important;
        right: 3px !important;
        gap: 2px !important;
    }
    
    .control-btn {
        width: 25px !important;
        height: 25px !important;
        font-size: 10px !important;
    }
}
