/* ==================== 
   CSS 변수 및 기본 설정
==================== */
:root {
    --primary-color: #2d2d2d;
    --primary-dark: #1a1a1a;
    --primary-light: #4a4a4a;
    --secondary-color: #666666;
    --accent-color: #888888;
    
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    
    --bg-white: #ffffff;
    --bg-gray: #f5f5f5;
    --bg-dark: #2d2d2d;
    
    --border-color: #e0e0e0;
    --border-color-dark: #cccccc;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    --transition: all 0.3s ease;
    
    --form-width: 380px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple SD Gothic Neo', 
                 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== 
   헤더 & 네비게이션
==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.company-subtitle {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
}

.nav-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
}

.nav-menu.active {
    display: flex;
}

.nav-link {
    padding: 12px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--bg-gray);
    color: var(--primary-color);
}

.nav-link.cta-nav {
    background: var(--primary-color);
    color: white;
    text-align: center;
    margin-top: 8px;
}

.nav-link.cta-nav:hover {
    background: var(--primary-dark);
}

/* ==================== 
   메인 레이아웃
==================== */
.main-wrapper {
    margin-top: 76px;
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.content-area {
    flex: 1;
    max-width: 100%;
}

/* ==================== 
   메인 비주얼
==================== */
.main-visual {
    position: relative;
    background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 100%);
    padding: 50px 24px 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    color: white;
    overflow: hidden;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 40px;
}

.visual-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.visual-title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #ffffff;
}

.highlight {
    background: linear-gradient(90deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
}

.visual-description {
    font-size: 16px;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.7;
}

.visual-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-icon,
.btn-arrow {
    font-size: 18px;
}

.consultation-time {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-align: center;
    opacity: 0.95;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    position: relative;
    z-index: 2;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-value {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 4px;
    color: #ffffff;
    line-height: 1.3;
}

.hero-stat-label {
    font-size: 11px;
    opacity: 0.9;
    line-height: 1.4;
}

/* ==================== 
   히어로 섹션 내 해결 포인트 카드
==================== */
.hero-solution-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: relative;
    z-index: 2;
    margin-top: 32px;
}

.hero-solution-card {
    background: rgba(255, 0, 0, 0.95);
    padding: 18px 14px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.hero-solution-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.hero-solution-card:hover h3 {
    color: #000000 !important;
}

.hero-solution-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

/* ==================== 
   실적 통계 하이라이트 섹션
==================== */
.stats-highlight-section {
    background: white;
    padding: 32px 24px;
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ==================== 
   실시간 접수 현황 라이브 피드
==================== */
.live-feed-section {
    background: white;
    padding: 24px;
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
}

.live-feed-header {
    margin-bottom: 16px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.live-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.live-feed-container {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 8px;
}

.live-feed-container::-webkit-scrollbar {
    width: 6px;
}

.live-feed-container::-webkit-scrollbar-track {
    background: var(--bg-gray);
    border-radius: 3px;
}

.live-feed-container::-webkit-scrollbar-thumb {
    background: var(--border-color-dark);
    border-radius: 3px;
}

.live-feed-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.live-feed-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--bg-gray);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    transition: var(--transition);
    animation: slideIn 0.5s ease-out;
    border-left: 3px solid var(--primary-color);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.live-feed-item:hover {
    background: #f0f0f0;
    transform: translateX(4px);
}

.live-feed-item:last-child {
    margin-bottom: 0;
}

.live-feed-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-feed-category {
    display: inline-block;
    padding: 4px 10px;
    background: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 12px;
    white-space: nowrap;
}

.live-feed-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.live-feed-action {
    font-size: 13px;
    color: var(--text-secondary);
    margin-left: 8px;
}

.live-feed-time {
    font-size: 12px;
    color: var(--text-light);
    white-space: nowrap;
    margin-left: 12px;
}

.stats-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stats-highlight-item {
    text-align: center;
    padding: 20px 16px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.stats-highlight-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stats-highlight-value {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 6px;
    color: var(--primary-color);
    line-height: 1.2;
}

/* 최대 강조 텍스트 */
.emphasis-text {
    color: #dc2626;
    font-size: 28px;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
    animation: emphasisPulse 2s ease-in-out infinite;
}

@keyframes emphasisPulse {
    0%, 100% {
        color: #dc2626;
        text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
    }
    50% {
        color: #ef4444;
        text-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
    }
}

.stats-highlight-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ==================== 
   섹션 공통
==================== */
section {
    margin-bottom: 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(45, 45, 45, 0.1);
    padding: 4px 14px;
    border-radius: 16px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* ==================== 
   훅포인트 섹션 2: 해결책
==================== */
.solution-section {
    margin-bottom: 40px;
}

.solution-grid {
    display: grid;
    gap: 16px;
}

.solution-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
}

.solution-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.solution-card.highlight {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.solution-card.highlight h3,
.solution-card.highlight p,
.solution-card.highlight .solution-features li {
    color: var(--text-primary);
}

.solution-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.solution-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.solution-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.solution-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
}

.solution-features li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ==================== 
   훅포인트 섹션 3: 사회적 증거
==================== */
.social-proof-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 100%);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    color: white;
    margin-bottom: 40px;
}

.social-proof-section .section-title,
.social-proof-section .section-description {
    color: white;
}

.stats-container {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box .stat-number {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 6px;
}

.stat-box .stat-number::after {
    content: '+';
    margin-left: 4px;
}

.stat-box .stat-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-box .stat-detail {
    font-size: 12px;
    opacity: 0.8;
}

/* ==================== 
   서비스
==================== */
.services-grid {
    display: grid;
    gap: 16px;
}

.service-item {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-item.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.service-number {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-light);
    opacity: 0.5;
    margin-bottom: 12px;
}

.service-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.service-item h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.service-item > p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ==================== 
   고객 후기
==================== */
.testimonials {
    display: grid;
    gap: 16px;
}

.testimonial-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    font-size: 14px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e8e8e8, #cccccc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.author-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
}

.author-company {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ==================== 
   CTA 섹션
==================== */
.cta-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 100%);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 15px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.cta-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.cta-btn-large:active {
    transform: translateY(2px);
}

/* ==================== 
   고정 상담 폼 (데스크톱)
==================== */
.fixed-contact-container {
    display: none;
    position: sticky;
    top: 96px;
    width: var(--form-width);
    height: fit-content;
}

.fixed-contact {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-color);
    overflow: hidden;
}

.contact-header {
    background: var(--primary-color);
    color: white;
    padding: 24px;
    text-align: center;
}

.contact-header h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.contact-header p {
    font-size: 13px;
    opacity: 0.9;
}

.contact-form {
    padding: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 45, 45, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background: white url('data:image/svg+xml;utf8,<svg fill="%234b5563" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"/></svg>') no-repeat;
    background-position: right 10px center;
    padding-right: 35px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-group span {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: normal;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.submit-btn:active {
    transform: translateY(2px);
}

.contact-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.info-icon {
    font-size: 16px;
}

/* ==================== 
   모바일 하단 고정 접수폼
==================== */
.mobile-bottom-form {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px 16px 0 0;
}

.mobile-bottom-form.collapsed .mobile-form-content {
    max-height: 0;
    padding: 0;
    overflow: hidden;
}

.mobile-form-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
    cursor: pointer;
}

.form-header-content {
    flex: 1;
}

.form-header-content h4 {
    font-size: 16px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.form-header-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.form-collapse-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: none;
}

.collapse-icon {
    color: white;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-bottom-form.collapsed .collapse-icon {
    transform: rotate(180deg);
}

.mobile-form-content {
    max-height: 500px;
    overflow-y: auto;
    transition: all 0.3s ease;
    background: white;
}

.mobile-quick-form {
    padding: 16px;
}

.form-field-group {
    margin-bottom: 12px;
}

.input-wrapper {
    position: relative;
}

.input-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.form-input-new,
.form-select-new {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-input-new:focus,
.form-select-new:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(45, 45, 45, 0.02);
    box-shadow: 0 0 0 3px rgba(45, 45, 45, 0.1);
}

.form-select-new {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%234b5563" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.privacy-agreement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-gray);
    padding: 10px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

.checkbox-label-new {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex: 1;
}

.checkbox-label-new input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label-new span {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 500;
}

.privacy-detail-btn {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-submit-btn-new {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(45, 45, 45, 0.3);
}

.mobile-submit-btn-new:active {
    transform: translateY(2px);
}

.submit-text {
    flex: 1;
}

.submit-icon {
    font-size: 20px;
    font-weight: bold;
}

.form-footer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 11px;
    color: var(--text-secondary);
}

/* 모바일 라디오 버튼 스타일 */
.radio-group-mobile {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.radio-label-mobile {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.radio-label-mobile:hover {
    border-color: var(--primary-light);
    background: #f8f9fa;
}

.radio-label-mobile input[type="radio"] {
    margin-right: 5px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.radio-label-mobile input[type="radio"]:checked + span {
    font-weight: 700;
}

.radio-label-mobile:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(45, 45, 45, 0.05);
}

/* ==================== 
   푸터
==================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 50px 0 24px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-symbol {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-info h4,
.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

/* ==================== 
   로딩 오버레이
==================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loading-overlay p {
    color: white;
    margin-top: 16px;
    font-size: 14px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== 
   반응형 - 모바일 기본
==================== */
@media (max-width: 767px) {
    .hero-solution-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .hero-solution-card {
        padding: 14px 10px;
        min-height: 50px;
    }
    
    .hero-solution-card h3 {
        font-size: 14px;
    }
    
    .stats-highlight-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stats-highlight-item {
        padding: 16px 12px;
    }
    
    .stats-highlight-value {
        font-size: 20px;
    }
    
    /* 라이브 피드 모바일 */
    .live-feed-section {
        padding: 16px;
    }
    
    .live-feed-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .live-feed-info {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .live-feed-action {
        margin-left: 0;
    }
    
    .live-feed-time {
        margin-left: 0;
        align-self: flex-end;
    }
}

/* ==================== 
   반응형 - 태블릿
==================== */
@media (min-width: 768px) {
    .visual-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-solution-cards {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-highlight-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .visual-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .mobile-bottom-form {
        display: none;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        padding: 0;
        gap: 8px;
    }
    
    .nav-link {
        padding: 8px 16px;
    }
    
    .nav-link.cta-nav {
        margin-top: 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ==================== 
   반응형 - 데스크톱
==================== */
@media (min-width: 1024px) {
    .fixed-contact-container {
        display: block;
    }
    
    .content-area {
        max-width: 900px;
    }
    
    .main-visual {
        padding: 80px 60px 60px;
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==================== 
   히어로 카드 힌트
==================== */
.card-hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    margin-bottom: 0;
    font-weight: 600;
}

.hero-solution-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-solution-card:active {
    transform: translateY(0);
}

/* ==================== 
   긴급 혜택 모달
==================== */
.benefit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.benefit-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease;
    z-index: 1;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 40px 25px 30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
    color: white;
}

.modal-icon {
    font-size: 50px;
    margin-bottom: 15px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.modal-title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 12px;
}

.modal-title .highlight {
    color: #fbbf24;
    display: block;
    font-size: 28px;
}

.modal-urgent {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.modal-body {
    padding: 30px 25px;
}

.benefit-list {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text {
    flex: 1;
}

.benefit-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.warning-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 15px 18px;
    border-radius: 10px;
    margin-top: 20px;
}

.warning-box p {
    margin: 0;
    font-size: 14px;
    color: #92400e;
    line-height: 1.6;
}

.warning-box strong {
    color: #dc2626;
    font-weight: 800;
}

.modal-footer {
    padding: 20px 25px 30px;
    text-align: center;
    background: #f9fafb;
    border-radius: 0 0 20px 20px;
}

.modal-cta-btn {
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.modal-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

.modal-cta-btn:active {
    transform: translateY(0);
}

.modal-cta-btn .btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.modal-cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.modal-note {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

/* 모달 반응형 - 태블릿 이상 */
@media (min-width: 768px) {
    .modal-content {
        width: 85%;
        max-width: 550px;
    }
    
    .modal-header {
        padding: 50px 35px 35px;
    }
    
    .modal-icon {
        font-size: 60px;
    }
    
    .modal-title {
        font-size: 28px;
    }
    
    .modal-title .highlight {
        font-size: 32px;
    }
    
    .modal-body {
        padding: 35px 35px;
    }
    
    .benefit-text strong {
        font-size: 17px;
    }
    
    .benefit-text p {
        font-size: 14px;
    }
    
    .modal-footer {
        padding: 25px 35px 35px;
    }
    
    .modal-cta-btn {
        padding: 20px 32px;
        font-size: 18px;
    }
}

/* ==================== 
   하단 고정 접수 폼 섹션 (간결 버전)
   ==================== */

.bottom-contact-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 100%);
    padding: 30px 12px;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.bottom-contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 20px 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.bottom-contact-header {
    text-align: center;
    margin-bottom: 18px;
}

.bottom-contact-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.3;
}

.highlight-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    margin-right: 6px;
    box-shadow: 0 2px 10px rgba(45, 45, 45, 0.3);
}

.bottom-contact-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
}

.bottom-contact-description strong {
    color: #3b82f6;
    font-weight: 700;
}

.bottom-contact-form {
    margin-top: 20px;
}

.form-grid-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.form-input-compact {
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input-compact:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 45, 45, 0.1);
}

.submit-btn-compact {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 45, 45, 0.4);
}

.submit-btn-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 45, 45, 0.5);
}

.submit-btn-compact .btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.submit-btn-compact:hover .btn-icon {
    transform: translateX(4px);
}

.privacy-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 13px;
}

.privacy-compact label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #475569;
}

.privacy-compact input[type="checkbox"] {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.privacy-compact a {
    color: var(--primary-color);
    text-decoration: underline;
}

.security-badge {
    color: #10b981;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* 라디오 버튼 스타일 */
.radio-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-group-label {
    font-size: 14px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0;
}

.radio-group-compact {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.radio-label-compact {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.radio-label-compact:hover {
    border-color: var(--primary-light);
    background: #f8f9fa;
}

.radio-label-compact input[type="radio"] {
    margin-right: 3px;
    cursor: pointer;
    accent-color: var(--primary-color);
    width: 13px;
    height: 13px;
}

.radio-label-compact input[type="radio"]:checked + span {
    font-weight: 700;
}

.radio-label-compact:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(45, 45, 45, 0.05);
}

/* 반응형 - 태블릿 */
@media (min-width: 640px) {
    .form-grid-compact {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .submit-btn-compact {
        grid-column: 1 / -1;
    }
    
    .bottom-contact-title {
        font-size: 24px;
    }
    
    .radio-group-compact {
        grid-column: 1 / -1;
    }
}

/* 반응형 - 데스크톱 */
@media (min-width: 768px) {
    .bottom-contact-section {
        padding: 40px 30px;
    }
    
    .bottom-contact-wrapper {
        padding: 25px 30px;
    }
    
    .form-grid-compact {
        grid-template-columns: 1fr 1fr;
    }
    
    .submit-btn-compact {
        grid-column: 1 / -1;
        padding: 12px 32px;
    }
    
    .bottom-contact-title {
        font-size: 26px;
    }
    
    .bottom-contact-description {
        font-size: 14px;
    }
    
    .radio-group-compact {
        grid-column: 1 / -1;
    }
}

/* 반응형 - 큰 데스크톱 */
@media (min-width: 1024px) {
    .bottom-contact-section {
        padding: 50px 60px;
    }
    
    .bottom-contact-wrapper {
        max-width: 500px;
    }
    
    .form-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .radio-group-compact {
        justify-content: center;
    }
    
    .submit-btn-compact {
        max-width: 100%;
    }
}

/* ==================== 
   동적 히어로 섹션 스타일 변형
==================== */

/* 기본 히어로 스타일 강화 */
.visual-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.visual-title {
    transition: var(--transition);
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.visual-description {
    transition: var(--transition);
}

/* 스타일 변형 1: Urgent (긴급) */
.hero-style-urgent .visual-subtitle {
    color: #ff4444;
    animation: pulse 2s ease-in-out infinite;
}

.hero-style-urgent .visual-title {
    color: #ff4444;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
}

.hero-style-urgent .btn-primary {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    animation: shake 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* 스타일 변형 2: Comparison (비교) */
.hero-style-comparison .visual-title {
    background: linear-gradient(135deg, #ff4444 0%, #2d2d2d 50%, #00cc66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-style-comparison .visual-subtitle {
    color: #ff9800;
}

/* 스타일 변형 3: Question (질문) */
.hero-style-question .visual-subtitle {
    color: #64b5f6;
}

.hero-style-question .visual-title {
    font-size: 2.3rem;
    line-height: 1.5;
    color: #ffffff;
}

.hero-style-question .visual-description {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffb74d;
}

/* 스타일 변형 4: Social Proof (사회적 증거) */
.hero-style-social-proof .visual-subtitle {
    color: #4caf50;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-style-social-proof .visual-title {
    color: #ffffff;
    font-weight: 800;
}

.hero-style-social-proof .visual-description {
    color: #e0e0e0;
    font-size: 1rem;
    opacity: 0.95;
}

/* 스타일 변형 5: Big Number (큰 숫자) */
.hero-style-big-number .visual-subtitle {
    color: #e0e0e0;
    font-size: 1.3rem;
    font-weight: 500;
}

.hero-style-big-number .visual-title {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin: 1.5rem 0;
}

.hero-style-big-number .visual-description {
    font-size: 1.1rem;
    color: #ffffff;
}

/* 스타일 변형 6: Before After (전후 비교) */
.hero-style-before-after .visual-subtitle {
    color: #9c27b0;
}

.hero-style-before-after .visual-title {
    font-size: 2rem;
    line-height: 1.6;
}

/* 스타일 변형 7: Warning (경고) */
.hero-style-warning .visual-content {
    border: 3px solid #ff6b6b;
    border-radius: var(--radius-lg);
    padding: 2rem;
    background: rgba(255, 68, 68, 0.1);
}

.hero-style-warning .visual-subtitle {
    color: #ff6b6b;
    font-size: 1.5rem;
}

.hero-style-warning .visual-title {
    color: #ff5252;
}

/* 스타일 변형 8: Calculator (계산기) */
.hero-style-calculator .visual-subtitle {
    color: #4db6ac;
}

.hero-style-calculator .visual-title {
    font-size: 2.5rem;
    color: #26a69a;
}

/* 스타일 변형 9: Empathy (공감) */
.hero-style-empathy .visual-subtitle {
    color: #90caf9;
}

.hero-style-empathy .visual-title {
    font-size: 2.2rem;
    line-height: 1.5;
    color: #ffffff;
}

.hero-style-empathy .visual-description {
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* 스타일 변형 10: Exclusive (프리미엄) */
.hero-style-exclusive .visual-content {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
    border: 2px solid #ffd700;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.hero-style-exclusive .visual-subtitle {
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-style-exclusive .visual-title {
    color: #ffffff;
    font-size: 2.3rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-style-exclusive .btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ff9800 100%);
    color: #1a1a1a;
    font-weight: 700;
}

/* 스타일 변형 11: Fact (사실) */
.hero-style-fact .visual-subtitle {
    color: #90a4ae;
}

.hero-style-fact .visual-title {
    font-size: 2.1rem;
    line-height: 1.6;
    color: #ffffff;
}

/* 스타일 변형 12: Checklist (체크리스트) */
.hero-style-checklist .visual-subtitle {
    color: #4caf50;
}

.hero-style-checklist .visual-title {
    font-size: 2rem;
    line-height: 1.6;
}

/* 스타일 변형 13: Authority (권위) */
.hero-style-authority .visual-content {
    border-left: 5px solid #64b5f6;
    padding-left: 2rem;
}

.hero-style-authority .visual-subtitle {
    color: #64b5f6;
}

.hero-style-authority .visual-title {
    font-size: 1.9rem;
    line-height: 1.7;
    font-style: italic;
    color: #ffffff;
}

/* 스타일 변형 14: Shock (충격) */
.hero-style-shock .visual-subtitle {
    color: #f48fb1;
    font-size: 1.3rem;
}

.hero-style-shock .visual-title {
    color: #ff4081;
    font-size: 2.4rem;
}

.hero-style-shock .visual-description {
    color: #f48fb1;
    font-weight: 600;
}

/* 반응형 스타일 조정 */
@media (max-width: 768px) {
    .hero-style-big-number .visual-title {
        font-size: 3.5rem;
    }
    
    .visual-title {
        min-height: 100px;
        font-size: 2rem;
    }
    
    .hero-style-urgent .visual-title,
    .hero-style-comparison .visual-title,
    .hero-style-question .visual-title {
        font-size: 1.8rem;
    }
    
    .hero-style-exclusive .visual-content,
    .hero-style-warning .visual-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-style-big-number .visual-title {
        font-size: 2.5rem;
    }
    
    .visual-title {
        font-size: 1.6rem;
        min-height: 80px;
    }
    
    .visual-subtitle {
        font-size: 0.95rem;
    }
    
    .visual-description {
        font-size: 0.95rem;
    }
}

/* ==================== 
   플로팅 상담 버튼
   ==================== */

.floating-consult-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    
    display: flex;
    align-items: center;
    gap: 10px;
    
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
    color: white;
    
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    
    font-size: 16px;
    font-weight: 700;
    
    cursor: pointer;
    
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3),
                0 4px 12px rgba(0, 0, 0, 0.15);
    
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    animation: floatingBounce 2s ease-in-out infinite;
}

.floating-consult-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4),
                0 6px 16px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #1e40af 0%, var(--primary-color) 100%);
}

.floating-consult-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.floating-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.floating-text {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

/* 플로팅 버튼 애니메이션 */
@keyframes floatingBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .floating-consult-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 14px;
        gap: 8px;
    }
    
    .floating-icon {
        width: 20px;
        height: 20px;
    }
    
    .floating-text {
        font-size: 14px;
    }
}

/* 작은 모바일 화면 */
@media (max-width: 480px) {
    .floating-consult-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        gap: 6px;
    }
    
    .floating-icon {
        width: 18px;
        height: 18px;
    }
    
    .floating-text {
        font-size: 13px;
    }
}

