﻿:root {
    --primary-color: #0D1117;
    --secondary-color: #00FFD1;
    --accent-color: #FF007A;
    --bg-color: #050709;
    --text-color: #E6EDF3;
    --card-bg: #161B22;
    --white: #FFFFFF;
    --border-radius: 12px;
    --font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, "Noto Sans KR", sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    word-break: keep-all; 
    overflow-wrap: break-word;
}

.hidden {
    display: none !important;
}

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

/* Header */
header {
    background-color: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 255, 209, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 1px;
}

nav a {
    text-decoration: none;
    color: #A3B3C1;
    margin: 0 15px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover { color: var(--secondary-color); }

.btn-primary {
    background: linear-gradient(90deg, #00FFD1, #00B8FF);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 255, 209, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 209, 0.5);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 255, 209, 0.05) 0%, transparent 60%);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    color: var(--white);
}

.highlight {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 50px;
    color: #A3B3C1;
}

.hero-image-wrapper img {
    width: 100%;
    max-width: 1000px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-card p {
    color: #A3B3C1;
    font-weight: 500;
    font-size: 1.1rem;
}

/* About & Features */
.about-section, .features-section {
    padding: 100px 0;
}

.about-section h2, .features-section h2, .faq-section h2, .form-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
}

.about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    color: #A3B3C1;
}

.about-content strong {
    color: var(--secondary-color);
}

.features-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-image { flex: 1; }
.feature-image img { 
    width: 100%; 
    border-radius: 20px; 
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-text { flex: 1; }
.feature-list { list-style: none; }
.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    background: var(--card-bg);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: transform 0.3s;
}

.feature-list li:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 209, 0.3);
}

.feature-list i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 5px;
}
.feature-list strong { 
    font-size: 1.3rem; 
    display: block; 
    margin-bottom: 8px;
    color: var(--white);
}

.feature-list p {
    color: #A3B3C1;
}

/* FAQ */
.faq-section { padding: 80px 0; background: var(--primary-color); }
.faq-item {
    max-width: 850px;
    margin: 0 auto 15px;
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s;
}
.faq-item:hover {
    border-color: rgba(0, 255, 209, 0.3);
}
.faq-item summary {
    font-weight: 700;
    font-size: 1.2rem;
    list-style: none;
    color: var(--white);
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #A3B3C1;
    line-height: 1.8;
}

/* Form Section */
.form-section { padding: 100px 0; background: #000; }
.form-container {
    max-width: 750px;
    background: var(--white);
    color: #111;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 255, 209, 0.15);
}

.form-container h2 {
    color: var(--primary-color);
}

.form-container p {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

.form-step { display: none; animation: fadeIn 0.5s ease-in-out; }
.form-step.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #111;
}

.radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.radio-grid label {
    display: block;
    border: 2px solid #E1E4E8;
    padding: 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    color: #333;
    transition: all 0.2s;
    background: #F8F9FA;
}

.radio-grid input[type="radio"] { display: none; }
.radio-grid input[type="radio"]:checked + span { color: var(--primary-color); }
.radio-grid label:has(input:checked) {
    border-color: var(--primary-color);
    background-color: rgba(13, 17, 23, 0.05);
}

.slider-container { margin-top: 30px; text-align: center; }
input[type="range"] { 
    width: 100%; 
    margin: 30px 0; 
    accent-color: var(--primary-color);
}
.budget-display { font-size: 2.5rem; font-weight: 900; color: var(--accent-color); }
.slider-notice { font-size: 0.85rem; color: #888; margin-top: 10px; }

.form-controls { margin-top: 40px; text-align: center; }
#btn-next { padding: 15px 40px; font-size: 1.2rem; }

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 800;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    margin-top: 25px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #000;
    color: #FFF;
}

.input-group { margin-bottom: 20px; text-align: left; }
.input-group label { display: block; font-weight: 800; margin-bottom: 8px; color: #333; }
.input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #E1E4E8;
    border-radius: 8px;
    font-size: 1.1rem;
    background: #F8F9FA;
}
.input-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox-group { display: flex; align-items: center; gap: 10px; margin-bottom: 20px;}
.checkbox-group label { font-weight: 600; color: #555; font-size: 0.95rem; }
.recaptcha-text { font-size: 0.8rem; color: #999; margin-top: 15px; text-align: center;}
.recaptcha-text a { color: #666; }

/* Loader */
.loader-container {
    display: none;
    text-align: center;
    padding: 60px 0;
}
.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Success */
#success-message { 
    display: none;
    text-align: center; 
    padding: 50px 0; 
}
#success-message i { font-size: 5rem; color: #00C853; margin-bottom: 25px; }
#success-message h2 { font-size: 2.2rem; margin-bottom: 15px; color: #111; }
#success-message p { font-size: 1.1rem; color: #555; }

/* Legal Pages Wrapper */
.legal-content {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 50px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    margin: 60px auto;
}
.legal-content h1 { margin-bottom: 25px; border-bottom: 2px solid var(--secondary-color); padding-bottom: 15px; color: var(--white); }
.legal-content h2 { margin: 30px 0 15px; font-size: 1.5rem; color: var(--white); }
.legal-content p, .legal-content li { margin-bottom: 15px; color: #A3B3C1; font-size: 1.05rem; }
.legal-content ul { padding-left: 20px; }

/* Footer */
footer {
    background: #000;
    color: #666;
    padding: 80px 0 40px;
    text-align: center;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-links { margin-bottom: 30px; }
.footer-links a { color: #A3B3C1; text-decoration: none; margin: 0 15px; font-weight: 600; }
.footer-links a:hover { color: var(--secondary-color); }
.company-info p { margin-bottom: 8px; }
.cert-info { color: var(--secondary-color); margin-top: 20px !important; font-weight: bold;}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(5, 7, 9, 0.98);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    border-top: 1px solid rgba(0, 255, 209, 0.2);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}
.cookie-content {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    gap: 20px;
}
.cookie-buttons { display: flex; gap: 10px; }
.btn-small { padding: 10px 20px; background: var(--secondary-color); color: #000; border: none; font-weight: 800; cursor: pointer; border-radius: 8px; transition: background 0.3s;}
.btn-small:hover { background: var(--white); }
.btn-outline { background: transparent; border: 1px solid var(--secondary-color); color: var(--secondary-color); }
.btn-outline:hover { background: rgba(0, 255, 209, 0.1); color: var(--secondary-color); }

/* Mobile Responsive */
@media (max-width: 768px) {
    nav { display: none; }
    .features-flex { flex-direction: column; }
    .radio-grid { grid-template-columns: 1fr; }
    .cookie-content { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 2.2rem; }
    .form-container { padding: 30px 20px; }
}