/* 세련된 현대적 디자인 - 개선 버전 */
:root {
    /* 메인 컬러 - 더 세련된 톤 */
    --primary: #ef4444;
    --primary-dark: #dc2626;
    --primary-light: #fca5a5;
    --accent: #f97316;
    
    /* 중성 컬러 */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* 시맨틱 컬러 */
    --success: #10b981;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* 그림자 */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* 간격 */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* 라운드 */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
}

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

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--gray-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* 긴급 알림 배너 */
.emergency-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 0.875rem 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.emergency-banner i {
    margin-right: 0.5rem;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* 히어로 섹션 - 현대적 그라데이션 */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: clamp(4rem, 10vw, 7rem) 0 clamp(5rem, 12vw, 8rem);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.urgent-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.urgent-badge i {
    animation: ring 1.5s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-8deg); }
    20%, 40% { transform: rotate(8deg); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    font-weight: 400;
}

.hero-subtitle strong {
    color: #fbbf24;
    font-weight: 700;
}

/* 카운트다운 - 미니멀 디자인 */
.countdown-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-2xl);
    margin: var(--spacing-xl) auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
}

.countdown-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: #fbbf24;
    letter-spacing: -0.01em;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    background: rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    min-width: 90px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    letter-spacing: -0.02em;
}

.countdown-label {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0.8;
    font-weight: 500;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 300;
    opacity: 0.4;
    margin: 0 -0.25rem;
}

/* CTA 버튼 - 현대적 스타일 */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: var(--spacing-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.5);
    letter-spacing: -0.01em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(239, 68, 68, 0.6);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-notice {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 500;
}

/* 섹션 공통 */
section {
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 8vw, 5rem);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    font-weight: 400;
}

/* 비교 섹션 - 카드 디자인 개선 */
.comparison-section {
    background: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: clamp(3rem, 8vw, 4rem);
}

.comparison-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gray-300);
}

.comparison-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.75rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.comparison-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.before, .after {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.before {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid var(--success);
}

.after {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid var(--primary);
}

.label {
    font-size: 0.8125rem;
    font-weight: 600;
    opacity: 0.75;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.value.good {
    color: var(--success);
}

.value.bad {
    color: var(--primary);
}

.detail {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
}

.arrow {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0.5rem 0;
}

.impact-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.impact-badge.negative {
    background: var(--primary);
    color: white;
}

/* 예시 박스 */
.example-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid var(--warning);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.example-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-lg);
}

.example-header i {
    font-size: 1.75rem;
    color: var(--accent);
}

.example-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.example-case h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--gray-900);
}

.example-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.example-col {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.example-label {
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    text-align: center;
    letter-spacing: -0.01em;
}

.example-label.current {
    background: var(--success);
    color: white;
}

.example-label.after {
    background: var(--primary);
    color: white;
}

.example-calc p {
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.example-result {
    font-weight: 700;
    font-size: 1rem;
}

.example-result.good {
    color: var(--success);
}

.example-result.bad {
    color: var(--primary);
}

.example-detail {
    margin-top: var(--spacing-md);
    padding: 0.875rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
}

.example-vs {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
}

/* 한문철 변호사 섹션 */
.hanmoonchul-section {
    background: var(--gray-100);
}

.video-container {
    max-width: 900px;
    margin: 0 auto clamp(3rem, 8vw, 4rem);
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    padding: var(--spacing-lg) var(--spacing-xl);
}

.video-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.video-info h3 i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.video-info p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.video-stats {
    display: flex;
    gap: var(--spacing-lg);
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

/* 인용문 */
.lawyer-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.quote-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.quote-card i {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: var(--spacing-md);
}

.quote-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.quote-author {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
}

/* 이유 섹션 */
.reasons-section {
    background: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.reason-card {
    background: var(--gray-50);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: white;
}

.reason-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
}

.reason-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: var(--spacing-md);
}

.reason-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.reason-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* FAQ 섹션 */
.faq-section {
    background: var(--gray-100);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem var(--spacing-lg);
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.01em;
}

.faq-question .fa-q {
    color: var(--primary);
    font-size: 1.125rem;
}

.faq-question .fa-chevron-down {
    color: var(--gray-400);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
}

.faq-item.active .faq-question .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.faq-answer .fa-a {
    color: var(--accent);
    font-weight: 700;
    margin-right: 0.5rem;
}

/* 상담 신청 폼 - 세련된 디자인 */
.final-cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: clamp(5rem, 12vw, 7rem) 0;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-urgent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.final-cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.final-cta-content > p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
}

.benefit-item i {
    color: var(--success);
    font-size: 1.125rem;
}

/* 폼 컨테이너 */
.consultation-form-container {
    max-width: 700px;
    margin: var(--spacing-xl) auto 0;
    background: white;
    padding: clamp(2rem, 6vw, 3rem);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--primary);
    font-size: 1rem;
}

.required {
    color: var(--primary);
    font-weight: 700;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select {
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-family: 'Noto Sans KR', sans-serif;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--gray-900);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.radio-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    font-weight: 500;
    font-size: 0.9375rem;
}

.radio-label:hover {
    border-color: var(--primary);
    background: var(--gray-50);
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.radio-label:has(input:checked) {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    font-weight: 600;
    color: var(--primary);
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid var(--gray-200);
}

.checkbox-label:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-label span {
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 500;
}

.form-submit-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 1.125rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: var(--spacing-md);
    letter-spacing: -0.01em;
}

.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(239, 68, 68, 0.6);
}

.form-submit-button:active {
    transform: translateY(0);
}

.form-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: center;
    margin-top: var(--spacing-md);
    display: none;
}

.form-message.success {
    display: block;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: var(--success);
    border: 2px solid var(--success);
}

.form-message.error {
    display: block;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-footer-text {
    margin-top: var(--spacing-lg);
    font-size: 0.875rem;
    opacity: 0.8;
}

.cta-footer-text i {
    margin-right: 0.375rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer-info p {
    font-size: 0.8125rem;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8125rem;
    opacity: 0.5;
}

/* 애니메이션 */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.fadeInUp {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .countdown-value {
        font-size: 2rem;
        padding: 0.875rem 1.125rem;
        min-width: 70px;
    }

    .countdown-separator {
        font-size: 1.75rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .example-comparison {
        grid-template-columns: 1fr;
    }

    .example-vs {
        transform: rotate(90deg);
        margin: var(--spacing-md) 0;
    }

    .lawyer-quotes {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .final-cta-content h2 {
        font-size: 1.875rem;
    }

    .cta-benefits {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .consultation-form-container {
        padding: var(--spacing-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-label {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .countdown {
        gap: 0.5rem;
    }

    .countdown-value {
        font-size: 1.75rem;
        padding: 0.75rem 1rem;
        min-width: 60px;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }
}