/* 전역 스타일 */
/* 사주플랫폼 메인 스타일 */
/* Version: 20260301b - 생년월일 입력 개선 */

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

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* 실시간 알림 배너 */
.notification-banner {
    background: linear-gradient(90deg, #FF0000 0%, #8B0000 50%, #FF0000 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

/* 히어로 섹션 */
.hero {
    padding: 60px 20px;
    text-align: center;
}

/* 금색 대형 타이틀 */
.hero-title {
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    margin: 40px 0;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
                 0 0 60px rgba(255, 215, 0, 0.5);
    animation: goldGlow 3s ease-in-out infinite, textShine 5s linear infinite;
    background-size: 200% 200%;
}

@keyframes goldGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1));
    }
}

@keyframes textShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 경고 박스 */
.warning-box {
    background: linear-gradient(135deg, #1a0000 0%, #0a0000 100%);
    border: 4px solid #FF0000;
    border-radius: 20px;
    padding: 30px;
    margin: 50px auto;
    max-width: 800px;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
    animation: warningPulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes warningPulse {
    0%, 100% {
        box-shadow: 0 0 40px rgba(255, 0, 0, 0.6);
        border-color: #FF0000;
    }
    50% {
        box-shadow: 0 0 80px rgba(255, 0, 0, 0.9);
        border-color: #FF4444;
    }
}

.warning-top-bar {
    background: #FF0000;
    color: #FFFFFF;
    text-align: center;
    padding: 12px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 4px;
    border-radius: 10px;
    margin-bottom: 20px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.warning-icon {
    font-size: 48px;
    margin: 20px 0;
    animation: warningShake 0.5s ease-in-out infinite;
}

@keyframes warningShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.warning-main-text {
    font-size: 38px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 20px 0;
    line-height: 1.4;
}

.warning-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.warning-badge {
    background: linear-gradient(135deg, #FF0000 0%, #8B0000 60%, #FF0000 100%);
    background-size: 200% 200%;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid rgba(255, 80, 80, 0.8);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.7), 
                inset 0 0 8px rgba(139, 0, 0, 0.5);
    transition: transform 0.3s ease;
    animation: badgeBlink 1s step-end infinite, badgeShine 2s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(255, 200, 200, 0.8);
}

@keyframes badgeBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.25; }
}

@keyframes badgeShine {
    0%, 100% {
        box-shadow: 0 0 12px rgba(255, 0, 0, 0.7), 
                    inset 0 0 8px rgba(139, 0, 0, 0.5);
        background-position: 0% 50%;
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 0, 0, 1), 
                    inset 0 0 15px rgba(255, 0, 0, 0.7);
        background-position: 100% 50%;
    }
}

.warning-badge:hover {
    transform: scale(1.1);
}

.warning-final {
    font-size: 40px;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.9), 
                 0 0 50px rgba(255, 255, 255, 0.5);
    animation: whiteGlow 1.5s ease-in-out infinite;
    margin-top: 20px;
}

@keyframes whiteGlow {
    0%, 100% { 
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.9), 
                     0 0 50px rgba(255, 255, 255, 0.5);
    }
    50% { 
        text-shadow: 0 0 50px rgba(255, 255, 255, 1), 
                     0 0 100px rgba(255, 255, 255, 0.7);
    }
}

/* 히어로 헤드라인 */
.hero-headline {
    font-size: 36px;
    font-weight: 900;
    color: #FFFFFF;
    margin: 20px 0 10px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.hero-subtext {
    font-size: 18px;
    color: #CCCCCC;
    margin-bottom: 40px;
}

/* 통계 카운터 */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.stat-label {
    font-size: 16px;
    color: #CCCCCC;
    margin-top: 8px;
}

/* 자격증 섹션 */
.cert-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 100%);
}

.section-title {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.cert-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border-color: #FF6F0F;
}

.cert-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.cert-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.cert-card p {
    font-size: 16px;
    color: #FFD700;
    font-weight: 700;
}

/* 상품 섹션 */
.products-section {
    padding: 60px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.product-card {
    background: linear-gradient(135deg, #1a0000 0%, #2a1010 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.product-card.premium {
    border: 3px solid #FF6F0F;
    box-shadow: 0 0 30px rgba(255, 111, 15, 0.5);
}

.product-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FF6F0F;
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 111, 15, 0.6);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.product-icon {
    font-size: 52px;
    margin: 15px 0;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    margin: 15px 0 10px;
}

.product-desc {
    font-size: 15px;
    color: #CCCCCC;
    margin-bottom: 15px;
}

.product-price {
    font-size: 28px;
    font-weight: 900;
    color: #FF6F0F;
    margin: 15px 0;
}

.product-detail-link {
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.product-detail-link:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.product-btn {
    background: linear-gradient(135deg, #FF0000 0%, #8B0000 100%);
    color: #FFFFFF;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    width: 100%;
}

.product-btn:hover {
    background: linear-gradient(135deg, #FF4444 0%, #AA0000 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

/* 상품 상세 설명 섹션 */
.product-details-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
}

/* 프리미엄 상품 카드 */
.detail-card {
    background: linear-gradient(135deg, #1a0000 0%, #2a1010 100%);
    border: 2px solid #FFD700;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.premium-detail {
    border: 3px solid #FF6F0F;
    box-shadow: 0 0 40px rgba(255, 111, 15, 0.4);
}

.detail-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #FFD700;
    flex-wrap: wrap;
}

.detail-icon {
    font-size: 72px;
    flex-shrink: 0;
}

.detail-title-group {
    flex: 1;
    min-width: 250px;
}

.detail-title {
    font-size: 32px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 8px;
}

.detail-subtitle {
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.5;
}

.detail-price-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.detail-original-price {
    font-size: 18px;
    color: #888;
    text-decoration: line-through;
}

.detail-price {
    font-size: 42px;
    font-weight: 900;
    color: #FF6F0F;
    text-shadow: 0 0 20px rgba(255, 111, 15, 0.5);
}

.detail-badge {
    background: #FF0000;
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.detail-features h4,
.detail-analysis h4 {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 16px;
    color: #FFFFFF;
    padding: 10px 0;
    padding-left: 10px;
    line-height: 1.6;
    border-left: 3px solid #FF6F0F;
    margin-bottom: 8px;
    background: rgba(255, 111, 15, 0.1);
    border-radius: 0 8px 8px 0;
}

.premium-features li {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: #FFD700;
}

.analysis-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.analysis-item {
    background: rgba(255, 111, 15, 0.1);
    border: 2px solid #FF6F0F;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.analysis-item:hover {
    background: rgba(255, 111, 15, 0.2);
    transform: scale(1.03);
}

.analysis-number {
    background: #FF6F0F;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 900;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.analysis-name {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
}

.detail-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF0000 0%, #8B0000 100%);
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 35px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 30px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    grid-column: 1 / -1;
    text-align: center;
}

.detail-more-btn:hover {
    background: linear-gradient(135deg, #FF4444 0%, #AA0000 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

/* 기본 상품 그리드 */
.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.detail-mini-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.detail-icon-small {
    font-size: 36px;
}

.detail-title-small {
    font-size: 20px;
    font-weight: 700;
    color: #FFD700;
    flex: 1;
    min-width: 100px;
}

.detail-price-small {
    font-size: 24px;
    font-weight: 900;
    color: #FF6F0F;
}

.detail-description {
    font-size: 14px;
    color: #CCCCCC;
    margin-bottom: 15px;
    line-height: 1.5;
}

.mini-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.mini-features-list li {
    font-size: 14px;
    color: #FFFFFF;
    padding: 6px 0;
    line-height: 1.5;
}

.mini-detail-btn {
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.mini-detail-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* 공통 안내 */
.common-info {
    background: linear-gradient(135deg, #2a1a00 0%, #1a1000 100%);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
}

.common-info h3 {
    font-size: 28px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-item {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #FF6F0F;
    border-radius: 15px;
    padding: 25px 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 111, 15, 0.4);
}

.info-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.info-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 14px;
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
}

/* 고객 후기 섹션 */
.reviews-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #CCCCCC;
    margin-top: -20px;
    margin-bottom: 40px;
}

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

.review-card {
    background: linear-gradient(135deg, #1a0000 0%, #2a1010 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border-color: #FF6F0F;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.review-avatar {
    font-size: 48px;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
    min-width: 150px;
}

.review-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 5px;
}

.review-info p {
    font-size: 13px;
    color: #CCCCCC;
}

.review-stars {
    font-size: 18px;
    white-space: nowrap;
}

.review-content {
    background: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #FF6F0F;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.review-content p {
    font-size: 15px;
    color: #FFFFFF;
    line-height: 1.7;
    margin: 0;
}

.review-date {
    text-align: right;
    font-size: 13px;
    color: #888;
}

.more-reviews-btn {
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000000;
    text-decoration: none;
    text-align: center;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 40px;
    max-width: 400px;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.more-reviews-btn:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
}

.write-review-btn {
    display: block;
    background: linear-gradient(135deg, #FF6F0F 0%, #FF4500 100%);
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 40px;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 111, 15, 0.4);
}

.write-review-btn:hover {
    background: linear-gradient(135deg, #FF8C33 0%, #FF6633 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 111, 15, 0.6);
}

/* 신청 섹션 */
.apply-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 100%);
}

.selected-product-display {
    background: linear-gradient(135deg, #2a1a00 0%, #1a1000 100%);
    border: 3px solid #FFD700;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.selected-label {
    font-size: 16px;
    color: #FFD700;
    margin-bottom: 12px;
    font-weight: 700;
}

.selected-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

#selected-product-name {
    font-size: 26px;
    font-weight: 900;
    color: #FFFFFF;
}

.selected-price {
    font-size: 32px;
    font-weight: 900;
    color: #FF6F0F;
}

/* 신청 폼 */
.apply-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    background: linear-gradient(135deg, #1a0000 0%, #2a1010 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
}

.form-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 25px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #FFD700;
    border-radius: 8px;
    background: #1a0000;
    color: #FFFFFF;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all 0.3s ease;
}

/* 생년월일 입력 그룹 */
.birthdate-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.birth-input {
    flex: 2;
    min-width: 120px;
    min-height: 48px;
    padding: 14px 16px;
    font-size: 17px;
    border: 2px solid #FFD700;
    border-radius: 8px;
    background: #1a0000;
    color: #FFFFFF;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.birth-input::placeholder {
    color: #888888;
    font-size: 15px;
}

.birth-select {
    flex: 1;
    min-width: 80px;
    min-height: 48px;
    padding: 14px 16px;
    font-size: 17px;
    border: 2px solid #FFD700;
    border-radius: 8px;
    background: #1a0000;
    color: #FFFFFF;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23FFD700" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 35px;
}

.birth-select option {
    background: #1a0000;
    color: #FFFFFF;
    padding: 12px;
    font-size: 16px;
}

/* iOS Safari 스타일 초기화 */
.birth-input,
.birth-select {
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
}

/* Android Chrome 스타일 초기화 */
.birth-select::-ms-expand {
    display: none;
}

.birth-separator {
    color: #FFD700;
    font-weight: 700;
    font-size: 16px;
}

.birth-input:focus,
.birth-select:focus {
    outline: none;
    border-color: #FF0000;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

/* 숫자 입력 필드 스피너 제거 */
.birth-input::-webkit-outer-spin-button,
.birth-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.birth-input[type=number] {
    -moz-appearance: textfield;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF0000;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

/* 이메일 입력 필드 특별 스타일 */
#applicant-email {
    background: #1a0000;
    border: 2px solid #FFD700;
    color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-family: 'Noto Sans KR', sans-serif;
}

#applicant-email:focus {
    border-color: #FF0000;
    outline: none;
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

#applicant-email::placeholder {
    color: #777;
    font-size: 13px;
}

.form-hint {
    font-size: 13px;
    color: #FFD700;
    margin-top: 6px;
    margin-bottom: 0;
    padding-left: 2px;
    opacity: 0.9;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    cursor: pointer;
}

.radio-group input[type="radio"] {
    width: auto;
    cursor: pointer;
}

/* 결제 안내 */
.payment-info {
    background: linear-gradient(135deg, #2a1a00 0%, #1a1000 100%);
    border: 3px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.payment-info h3 {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 20px;
}

.payment-details p {
    font-size: 16px;
    color: #FFFFFF;
    margin: 10px 0;
}

.account {
    font-size: 28px;
    font-weight: 900;
    color: #FF6F0F;
    margin: 15px 0;
}

.account-holder {
    font-size: 18px;
    font-weight: 700;
    color: #FFD700;
}

.payment-guide {
    font-size: 15px;
    color: #CCCCCC;
    margin: 8px 0;
}

/* 제출 버튼 */
.submit-btn {
    background: linear-gradient(135deg, #FF0000 0%, #8B0000 100%);
    color: #FFFFFF;
    border: none;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 900;
    border-radius: 40px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.5);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #FF4444 0%, #AA0000 100%);
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.7);
}

/* 전화 상담 섹션 */
.contact-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a0000 0%, #0a0000 100%);
}

.contact-card {
    background: linear-gradient(135deg, #FEE500 0%, #FFD700 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 30px rgba(254, 229, 0, 0.4);
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-icon {
    font-size: 80px;
    flex-shrink: 0;
}

.contact-content {
    flex: 1;
    min-width: 250px;
}

.contact-title {
    font-size: 32px;
    font-weight: 900;
    color: #3C1E1E;
    margin-bottom: 12px;
}

.contact-description {
    font-size: 16px;
    color: #3C1E1E;
    line-height: 1.7;
}

.contact-btn {
    background: #3C1E1E;
    color: #FEE500;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(60, 30, 30, 0.5);
    white-space: nowrap;
}

.contact-btn:hover {
    background: #2C1616;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(60, 30, 30, 0.7);
}

.contact-logo {
    font-size: 28px;
}

.contact-text {
    font-family: 'Noto Sans KR', sans-serif;
}

/* 플로팅 전화 버튼 */
.phone-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FEE500 0%, #FFD700 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(254, 229, 0, 0.6);
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    animation: phoneFloat 2s ease-in-out infinite;
}

.phone-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(254, 229, 0, 0.8);
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.phone-floating-icon {
    font-size: 32px;
    line-height: 1;
}

.phone-floating-text {
    font-size: 11px;
    font-weight: 700;
    color: #3C1E1E;
    margin-top: 2px;
}

/* 푸터 */
.footer {
    background: #000000;
    padding: 40px 20px 20px;
    border-top: 2px solid #FFD700;
}

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

.footer-section h3,
.footer-section h4 {
    color: #FFD700;
    margin-bottom: 15px;
}

.footer-section p {
    color: #CCCCCC;
    font-size: 14px;
    margin: 8px 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

/* 반응형 디자인 */
@media (max-width: 1023px) {
    .hero-title { font-size: 80px; }
    .warning-main-text { font-size: 32px; }
    .warning-badge { font-size: 16px; padding: 7px 14px; }
    .warning-final { font-size: 34px; }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .details-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-content { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-card { padding: 30px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 56px; letter-spacing: 4px; }
    .warning-top-bar { font-size: 17px; letter-spacing: 2px; padding: 10px 12px; }
    .warning-icon { font-size: 36px; }
    .warning-main-text { font-size: 22px; line-height: 1.5; margin: 0 14px; }
    .warning-badge { font-size: 14px; padding: 6px 12px; }
    .warning-final { font-size: 26px; margin: 8px 14px; }
    .stats-container { gap: 25px; }
    .stat-number { font-size: 36px; }
    .products-grid { grid-template-columns: 1fr; }
    .selected-info { flex-direction: column; }
    .reviews-grid { grid-template-columns: 1fr; }
    .details-grid { grid-template-columns: 1fr; }
    .detail-header { flex-direction: column; align-items: flex-start; }
    .detail-price-group { align-items: flex-start; }
    .detail-icon { font-size: 56px; }
    .detail-title { font-size: 28px; }
    .detail-price { font-size: 36px; }
    .analysis-grid-simple { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .contact-card { 
        flex-direction: column; 
        text-align: center; 
        padding: 30px 20px; 
    }
    .contact-icon { font-size: 60px; }
    .contact-title { font-size: 26px; }
    .contact-btn { width: 100%; justify-content: center; }
    .kakao-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
    
    /* 생년월일 입력 모바일 최적화 */
    .birthdate-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .birth-input,
    .birth-select {
        width: 100%;
        min-width: auto;
    }
    
    .birth-separator {
        display: none;
    }
}
    .phone-floating-icon { font-size: 28px; }
    .phone-floating-text { font-size: 10px; }
}

@media (max-width: 479px) {
    .hero-title { font-size: 48px; }
    .warning-top-bar { font-size: 14px; letter-spacing: 1px; padding: 9px 10px; }
    .warning-icon { font-size: 30px; }
    .warning-main-text { font-size: 17px; line-height: 1.6; margin: 0 12px; }
    .warning-badge { font-size: 13px; padding: 5px 10px; }
    .warning-final { font-size: 21px; margin: 6px 12px; }
    .hero-headline { font-size: 24px; }
    .section-title { font-size: 24px; }
    .detail-card { padding: 25px 20px; }
    .detail-title { font-size: 24px; }
    
    /* 생년월일 입력 초소형 화면 최적화 */
    .birthdate-group {
        gap: 10px;
    }
    
    .birth-input,
    .birth-select {
        font-size: 16px;
        min-height: 50px;
        padding: 15px;
    }
    
    .birth-input::placeholder {
        font-size: 14px;
    }
}
    .contact-card { padding: 25px 15px; }
    .contact-icon { font-size: 50px; }
    .contact-title { font-size: 22px; }
    .contact-description { font-size: 14px; }
    .contact-btn { font-size: 16px; padding: 14px 25px; }
}
