/* ========================================
   안전빵 랜딩페이지 - 블루 모노톤 스타일
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Blue Monotone Color Scheme */
    --primary-blue: #2563EB;
    --blue-700: #1E40AF;
    --blue-800: #1E3A8A;
    --blue-600: #2563EB;
    --blue-500: #3B82F6;
    --blue-400: #60A5FA;
    --blue-300: #93C5FD;
    --blue-200: #BFDBFE;
    --blue-100: #DBEAFE;
    --blue-50: #EFF6FF;
    
    /* Neutral Colors */
    --navy: #1E293B;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    
    /* Functional Colors */
    --white: #FFFFFF;
    --black: #000000;
    --text-primary: #1E293B;
    --text-secondary: #475569;
    --text-light: #64748B;
    
    /* Shadows */
    --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);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
}

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

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:not(.cta-button-small):hover {
    color: var(--primary-blue);
}

.nav-menu a:not(.cta-button-small)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition-fast);
}

.nav-menu a:not(.cta-button-small):hover::after {
    width: 100%;
}

.cta-button-small {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.cta-button-small:hover {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.mobile-menu a:hover {
    background-color: var(--blue-50);
    color: var(--primary-blue);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue-100) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.5;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--blue-50);
    color: var(--blue-700);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 2px solid var(--blue-200);
}

.hero-badge i {
    color: var(--blue-600);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--navy);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.15em;
    display: block;
    margin-top: 8px;
}

.hero-title .professional-line {
    display: block;
    font-size: 0.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-title .professional-badge {
    font-weight: 700;
    color: var(--blue-700);
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    padding: 6px 16px;
    border-radius: 25px;
    display: inline-block;
    margin: 0 4px;
    border: 2px solid var(--blue-200);
    white-space: nowrap;
}

.hero-title .times-symbol {
    color: var(--blue-500);
    font-weight: 700;
    margin: 0 6px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--blue-700);
    margin-bottom: 12px;
    line-height: 1.4;
}

.hero-description {
    font-size: 20px;
    font-weight: 500;
    color: var(--slate-600);
    margin-bottom: 20px;
}

.hero-trust-message {
    font-size: 18px;
    color: var(--slate-700);
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 24px;
    background: linear-gradient(135deg, var(--blue-50), var(--white));
    border-left: 4px solid var(--blue-600);
    border-radius: 8px;
    display: inline-block;
    text-align: left;
}

.hero-trust-message strong {
    color: var(--blue-700);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.cta-button-primary {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: var(--white);
}

.cta-button-primary:hover {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button-secondary {
    background-color: var(--white);
    color: var(--blue-700);
    border: 2px solid var(--blue-600);
}

.cta-button-secondary:hover {
    background-color: var(--blue-50);
    border-color: var(--blue-700);
    transform: translateY(-3px);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white);
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 2px solid var(--blue-100);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--blue-700);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--slate-600);
    font-weight: 500;
}

/* ========================================
   Commission Issue Section
   ======================================== */
.commission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 100%);
}

.commission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commission-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 32px;
    line-height: 1.3;
}

.highlight-text {
    color: var(--blue-700);
}

.commission-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.commission-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--blue-600);
    box-shadow: var(--shadow-sm);
}

.commission-stat-label {
    font-size: 16px;
    color: var(--slate-600);
    font-weight: 500;
}

.commission-stat-value {
    font-size: 18px;
    color: var(--slate-700);
}

.commission-stat-value strong {
    font-size: 24px;
    font-weight: 900;
    color: var(--blue-700);
}

.commission-description {
    font-size: 17px;
    line-height: 1.9;
    color: var(--slate-600);
    padding: 24px;
    background-color: var(--blue-50);
    border-radius: 12px;
    border-left: 4px solid var(--blue-600);
}

.commission-description strong {
    color: var(--blue-700);
    font-weight: 700;
}

.emphasis-text {
    color: var(--blue-700);
    font-weight: 700;
    font-size: 18px;
}

.commission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.commission-box {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.commission-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
}

.commission-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 32px;
}

.savings-calculator {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.savings-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.savings-label {
    font-size: 16px;
    font-weight: 600;
}

.savings-arrow {
    font-size: 20px;
    font-weight: 700;
}

.savings-value {
    font-size: 20px;
    font-weight: 900;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
}

.commission-note {
    font-size: 14px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ========================================
   Problems Section
   ======================================== */
.problems-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background-color: var(--blue-50);
    color: var(--blue-700);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    border: 2px solid var(--blue-200);
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-description {
    font-size: 18px;
    color: var(--slate-600);
    line-height: 1.6;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.problem-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 2px solid var(--slate-100);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-300);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    margin-bottom: 24px;
}

.problem-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.problem-description {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--slate-700);
}

.problem-list i {
    color: var(--blue-600);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ========================================
   Process Section
   ======================================== */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 100%);
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 120px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 58px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--blue-600), var(--blue-400));
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step-reverse {
    /* Remove reverse styling - all steps same direction */
}

.process-number {
    position: absolute;
    left: -120px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
    z-index: 2;
}

.process-content {
    flex: 1;
    background-color: var(--white);
    padding: 32px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 2px solid var(--blue-100);
    border-left: 4px solid var(--blue-600);
}

.process-content:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--blue-700);
    border-left-width: 6px;
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-100), var(--blue-200));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-700);
    font-size: 28px;
    margin-bottom: 16px;
}

.process-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.process-description {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.process-details {
    list-style: none;
}

.process-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--slate-700);
}

.process-details i {
    color: var(--blue-600);
    flex-shrink: 0;
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits-section {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    text-align: center;
    border: 2px solid var(--slate-100);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-300);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
    margin: 0 auto 24px;
}

.benefit-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.benefit-description {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.benefit-list {
    list-style: none;
    text-align: left;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--slate-700);
}

.benefit-list i {
    color: var(--blue-600);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ========================================
   Impact Section
   ======================================== */
.impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    color: var(--white);
    text-align: center;
}

.impact-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.3;
}

.impact-description {
    font-size: 18px;
    margin-bottom: 60px;
    line-height: 1.8;
    opacity: 0.95;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.impact-stat {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.impact-value {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--white);
}

.impact-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--slate-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 2px solid var(--slate-100);
}

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

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: var(--blue-600);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-700);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.author-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
}

.author-location {
    font-size: 14px;
    color: var(--slate-500);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border: 2px solid var(--slate-200);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--blue-300);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    flex: 1;
}

.faq-question i {
    color: var(--blue-600);
    font-size: 20px;
    transition: var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

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

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-700);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-description {
    font-size: 18px;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-feature i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-feature h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-feature p {
    font-size: 14px;
    color: var(--slate-600);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--blue-100);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

.form-group label i {
    color: var(--blue-600);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--slate-200);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Noto Sans KR', sans-serif;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-privacy {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 14px;
    color: var(--slate-700);
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--slate-600);
    text-align: center;
    justify-content: center;
}

.form-notice i {
    color: var(--blue-600);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--navy);
    color: var(--slate-300);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 28px;
    color: var(--blue-400);
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--slate-400);
}

.footer-contact {
    margin-top: 20px;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--slate-300);
    text-decoration: none;
    font-size: 16px;
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.footer-email:hover {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: var(--white);
    transform: translateY(-2px);
}

.footer-email i {
    color: var(--blue-400);
    font-size: 18px;
}

.footer-company-info {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--slate-400);
    line-height: 1.8;
}

.footer-company-info p {
    margin-bottom: 8px;
}

.footer-company-info strong {
    color: var(--slate-300);
    font-weight: 600;
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--slate-400);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 13px;
    color: var(--slate-500);
}

/* ========================================
   Modal
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 40px;
}

.modal-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.modal-description {
    font-size: 16px;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.modal-button {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: var(--white);
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-button:hover {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    transform: translateY(-2px);
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 100;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .commission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .commission-title {
        font-size: 36px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .process-timeline {
        padding-left: 100px;
    }
    
    .process-timeline::before {
        left: 48px;
    }
    
    .process-number {
        left: -100px;
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-title .professional-line {
        font-size: 0.45em;
        margin-bottom: 12px;
    }
    
    .hero-title .professional-badge {
        padding: 4px 10px;
        margin: 2px;
        font-size: 1em;
    }
    
    .hero-title .times-symbol {
        margin: 0 2px;
    }
    
    .hero-title .highlight {
        font-size: 1.2em;
        margin-top: 6px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-trust-message {
        font-size: 15px;
        padding: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        padding-left: 60px;
    }
    
    .process-timeline::before {
        left: 28px;
    }
    
    .process-number {
        left: -60px;
        width: 56px;
        height: 56px;
        font-size: 22px;
        border: 3px solid var(--white);
    }
    
    .process-content {
        padding: 24px 20px;
    }
    
    .process-step {
        margin-bottom: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .commission-content {
        grid-template-columns: 1fr;
    }
    
    .commission-title {
        font-size: 28px;
    }
    
    .commission-description {
        font-size: 15px;
    }
    
    .commission-box {
        padding: 30px 24px;
    }
    
    .savings-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .problems-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-title {
        font-size: 28px;
    }
    
    .impact-description {
        font-size: 16px;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-email {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .footer-company-info {
        font-size: 13px;
        text-align: left;
        padding: 20px;
        margin-top: 24px;
    }
    
    .footer-company-info p {
        margin-bottom: 6px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .modal-content {
        margin: 20px;
        padding: 32px 24px;
    }
}