/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-content h1 .line1,
.hero-content h1 .line2 {
    display: block;
}

.hero-content h1 br {
    display: block;
    content: "";
    margin: 0.5rem 0;
}

.subtitle {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 3rem;
}

.subtitle strong {
    color: #2563eb;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    display: block;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

/* Pain Points Section */
.pain-points {
    padding: 6rem 0;
    background: #fff;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.highlight {
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border: 2px solid #2563eb;
    position: relative;
    overflow: hidden;
}

.card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #2563eb;
}

.card.highlight i {
    color: #dc2626;
}

.card.highlight:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.card i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.card p {
    color: #64748b;
}

/* Features Section */
.our-difference {
    padding: 6rem 0;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-item p {
    color: #64748b;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: #fff;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.process-step h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    color: #1e293b;
}

.process-step p {
    position: relative;
    z-index: 1;
    color: #64748b;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: #fff;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 2rem 0;
}

.cta-box b {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-form {
    max-width: 500px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #2563eb;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-footer {
    text-align: center;
    margin-top: 2rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #fff;
    padding: 4rem 0 2rem;
}

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

.footer-info h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #2563eb;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .cards-container,
    .features-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.card,
.feature-item,
.process-step {
    animation: fadeIn 0.6s ease-out forwards;
}

.potential-analysis {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.potential-analysis h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.potential-analysis p {
    color: #64748b;
    text-align: center;
    margin-bottom: 2rem;
}

.analysis-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.analysis-form .form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background: #f8fafc;
    color: #1e293b;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.analysis-form .form-group select:hover {
    border-color: #2563eb;
}

.analysis-form .form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.analysis-button {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
    text-align: center;
    text-decoration: none;
}

.analysis-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.analysis-button i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .potential-analysis {
        margin: 2rem 1rem;
    }
}

.success-cases {
    padding: 6rem 0;
    background: #f8fafc;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.case-card i {
    font-size: 2.2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.case-card h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.7rem;
}

.case-card p {
    color: #64748b;
    margin-bottom: 0.7rem;
}

.case-meta {
    display: inline-block;
    background: #e0e7ef;
    color: #2563eb;
    font-size: 0.9rem;
    padding: 0.2rem 0.7rem;
    border-radius: 0.5rem;
}

.case-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 15px rgba(37,99,235,0.08);
}

.cases-hope {
    margin-top: 3rem;
    text-align: center;
    color: #2563eb;
    font-size: 1.1rem;
}

.case-img {
    width: 100%;
    max-width: 400px;
    height: 220px;
    object-fit: cover;
    border-radius: 0.7rem;
    margin-bottom: 1rem;
    background: #e0e7ef;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ 섹션 스타일 */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* 상담 시간 섹션 스타일 */
.contact-hours {
    padding: 50px 0;
    background: #fff;
}

.contact-hours-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contact-hours h3 {
    color: #333;
    margin-bottom: 20px;
}

.contact-hours p {
    margin: 10px 0;
    color: #666;
}

.contact-hours .highlight {
    color: #007bff;
    font-weight: bold;
    margin-top: 20px;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .faq-item {
        padding: 20px;
    }

    .contact-hours-content {
        margin: 0 15px;
        padding: 20px;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }

    .trust-badge {
        width: 100%;
        max-width: 300px;
    }
}

/* 플로팅 CTA 버튼 크기 50% 축소 */
.floating-cta a {
    padding: 7px 12px;
    font-size: 0.85rem;
}
.floating-cta a i {
    font-size: 1rem;
}
@media (max-width: 768px) {
    .floating-cta a {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
    .floating-cta a i {
        font-size: 0.9rem;
    }
} 