/* 기본 설정 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 히어로 섹션 */
.hero-section {
    height: 100vh;
    background: url(../images/bgc.jpg) no-repeat center center  ;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, rgba(26, 35, 126, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

/* 신뢰도 배지 */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-badges .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.title-pre {
    display: block;
    font-size: 1.3rem;
    color: #ffc107;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.title-main {
    display: block;
    font-size: 3.2rem;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.title-sub {
    display: block;
    font-size: 1.4rem;
    color: #ffc107;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: #ffffff;
    line-height: 1.4;
}

.highlight {
    color: #ffc107;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* 가치 제안 */
.value-proposition {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.value-item .icon {
    font-size: 1.2rem;
}

.value-item .text {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CTA 섹션 */
.hero-cta-section {
    margin: 35px 0 25px 0;
}

.cta-info {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 사회적 증명 */
.social-proof {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
    color: white;
}

.proof-item .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffc107;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
}

.proof-item .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* CTA 버튼 */
.cta-button {
    background: linear-gradient(45deg, #ffc107, #ff9800);
    color: #1a237e;
    border: none;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.5);
    background: linear-gradient(45deg, #ff9800, #ffc107);
}

.cta-button:active {
    transform: translateY(0) scale(1);
}

/* 섹션 공통 스타일 */
.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 30px;
    text-align: center;
}

/* 프로필 섹션 */
.profile-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid #ffc107;
}

.profile-text {
    padding: 20px;
}

.profile-info {
    margin-top: 40px;
}

.info-item {
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ffc107;
}

.info-item h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

/* 세미나 포인트 섹션 */
.seminar-points-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
}

.points-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.points-text .section-title {
    color: white;
    text-align: left;
}

.points-text .section-subtitle {
    color: #ffc107;
    text-align: left;
}

.points-list {
    list-style: none;
    margin-top: 40px;
}

.points-list li {
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.points-list li:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateX(10px);
    border-color: #ffc107;
}

.points-list li strong {
    display: block;
    font-size: 1.2rem;
    color: #ffc107;
    margin-bottom: 10px;
}

.points-list li p {
    font-size: 1rem;
    color: #cccccc;
    margin-left: 20px;
}

.points-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
    border: 3px solid #ffc107;
}

/* 일정 섹션 */
.schedule-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.schedule-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.schedule-card:hover {
    border-color: #ffc107;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
}

.schedule-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.schedule-card p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.benefits-section {
    background: #1a237e;
    color: white;
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
}

.benefits-section h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 30px;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.benefits-list li {
    font-size: 1.1rem;
    padding: 15px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

/* 후기 섹션 */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
}

.reviews-section .section-title {
    color: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.3);
    border-color: #ffc107;
}

.review-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.review-content {
    padding: 25px;
}

.review-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 15px;
}

.review-content p {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.reviewer {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* 최종 CTA 섹션 */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1a237e;
    text-align: center;
}

.cta-content h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.urgency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.final-cta {
    background: #1a237e;
    color: white;
    font-size: 1.5rem;
    padding: 25px 60px;
    margin-bottom: 30px;
}

.final-cta:hover {
    background: #283593;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(26, 35, 126, 0.5);
}

.guarantee {
    font-size: 1.1rem;
    color: #1a237e;
    font-weight: 700;
}

/* 푸터 */
.footer {
    background: #1a237e;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #cccccc;
}

/* 애니메이션 효과 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-button {
    animation: pulse 2s infinite;
}

.cta-button:hover {
    animation: none;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .profile-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .points-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .points-text .section-title,
    .points-text .section-subtitle {
        text-align: center;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .cta-content h3 {
        font-size: 2.2rem;
    }
    
    .final-cta {
        font-size: 1.2rem;
        padding: 20px 40px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 1.5rem;
    }
    
    .title-sub {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .points-list li {
        padding: 20px;
    }
    
    .schedule-card {
        padding: 30px 20px;
    }
    
    .benefits-section {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
}

/* 스크롤바 스타일링 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a237e;
}

::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff9800;
}

/* 추가 효과 */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
} 
.floating-button-container {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none;
    }
    @keyframes bounce {
    0%, 100% {
    transform: translateY(0);
    }
    50% {
    transform: translateY(-10px);
    }
    }
    .floating-button {
    position: relative;
    background: #05C705;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: auto;
    }
    
    .floating-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    .floating-button .icon {
    font-size: 24px;
    }
    
    @media (max-width: 768px) {
    .floating-button-container {
    bottom: 20px;
    }
    
    .floating-button {
    font-size: 16px;
    padding: 12px 24px;
    }
    }
    
    @media (max-width: 480px) {
    .floating-button {
    font-size: 14px;
    padding: 10px 20px;
    }
    
    .floating-button .icon {
    font-size: 18px;
    }
    }
