﻿@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");

:root {
    --primary: #13111C; /* Dark background */
    --primary-light: #2A263D;
    --secondary: #00F0FF; /* Electric Cyan */
    --secondary-hover: #00C4D1;
    --accent: #7000FF; /* Tech Purple */
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --bg-main: #0B0A10;
    --bg-alt: #161420;
    --border: #334155;
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.5);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.7);
    --font-main: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-main); color: var(--text-main); background: var(--bg-main); line-height: 1.6; word-break: keep-all; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

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

/* Header */
.fc-header { position: sticky; top: 0; background: rgba(19, 17, 28, 0.85); backdrop-filter: blur(16px); z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.05); }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.logo { display: flex; align-items: center; gap: 14px; font-weight: 900; font-size: 1.5rem; color: #FFF; letter-spacing: -0.02em; }
.main-nav ul { list-style: none; display: flex; gap: 40px; }
.main-nav a { font-weight: 700; font-size: 1.1rem; color: #CBD5E1; transition: color 0.3s; }
.main-nav a:hover { color: var(--secondary); }

/* Hero */
.fc-hero { position: relative; padding: 180px 0; color: white; overflow: hidden; }
.hero-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(11, 10, 16, 0.95) 0%, rgba(112, 0, 255, 0.4) 100%); z-index: -1; }
.hero-content { position: relative; z-index: 2; max-width: 900px; text-align: left; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 24px; background: rgba(0, 240, 255, 0.1); border: 1px solid var(--secondary); color: var(--secondary); border-radius: 50px; font-weight: 800; font-size: 1rem; margin-bottom: 30px; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-title { font-size: clamp(3.5rem, 6vw, 6rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.05em; margin-bottom: 30px; }
.hero-title .highlight { color: var(--secondary); text-shadow: 0 0 20px rgba(0, 240, 255, 0.4); }
.hero-subtitle { font-size: clamp(1.2rem, 2vw, 1.4rem); color: #94A3B8; margin-bottom: 50px; font-weight: 500; line-height: 1.7; }
.btn-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--secondary); color: #000; padding: 22px 50px; border-radius: 4px; font-weight: 900; font-size: 1.25rem; transition: all 0.3s ease; box-shadow: 0 0 20px rgba(0, 240, 255, 0.3); }
.btn-primary:hover { background: #FFF; transform: translateY(-4px); box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2); }

/* About */
.fc-about { padding: 140px 0; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image img { border-radius: 8px; box-shadow: 0 0 30px rgba(112, 0, 255, 0.3); border: 1px solid rgba(255,255,255,0.1); filter: grayscale(50%) contrast(120%); transition: filter 0.5s; }
.about-image img:hover { filter: grayscale(0%) contrast(100%); }
.about-text h2 { font-size: 3rem; font-weight: 900; color: #FFF; margin-bottom: 24px; line-height: 1.25; letter-spacing: -0.04em; }
.about-text p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; }
.about-bullets { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.about-bullets li { display: flex; align-items: center; gap: 20px; font-size: 1.2rem; font-weight: 700; color: #FFF; }
.about-bullets i { color: var(--secondary); font-size: 1.5rem; width: 30px; text-align: center; }

/* Features */
.fc-features { padding: 140px 0; background: var(--bg-main); }
.section-heading { text-align: center; margin-bottom: 80px; }
.section-heading h2 { font-size: 3.2rem; font-weight: 900; color: #FFF; margin-bottom: 20px; letter-spacing: -0.04em; }
.section-heading p { font-size: 1.2rem; color: var(--text-muted); }
.features-asym { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; }
.feat-img-box img { border-radius: 8px; box-shadow: var(--shadow-lg); border-left: 6px solid var(--accent); }
.feat-content-box { display: flex; flex-direction: column; gap: 30px; }
.feat-item { display: flex; gap: 24px; background: var(--bg-alt); padding: 40px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s, border-color 0.3s; }
.feat-item:hover { transform: translateY(-5px); border-color: var(--secondary); }
.feat-icon { width: 70px; height: 70px; background: rgba(112, 0, 255, 0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #B280FF; flex-shrink: 0; }
.feat-item h3 { font-size: 1.5rem; font-weight: 800; color: #FFF; margin-bottom: 12px; }
.feat-item p { color: var(--text-muted); line-height: 1.6; font-size: 1.1rem; }

/* Impact / Stats */
.fc-impact { padding: 80px 0; background: var(--accent); color: white; }
.stats-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-num { display: block; font-size: 5rem; font-weight: 900; color: #FFF; line-height: 1; margin-bottom: 12px; letter-spacing: -0.02em; }
.stat-desc { font-weight: 700; font-size: 1.25rem; color: rgba(255,255,255,0.8); }

/* Lead Form */
.fc-lead-form { padding: 140px 0; background: var(--bg-main); background-image: radial-gradient(circle at center, rgba(112,0,255,0.1) 0%, transparent 70%); }
.form-wrapper { max-width: 800px; }
.form-header { text-align: center; margin-bottom: 50px; }
.form-header h2 { font-size: 3rem; font-weight: 900; color: #FFF; margin-bottom: 20px; letter-spacing: -0.03em; }
.form-header p { font-size: 1.2rem; color: var(--text-muted); }
.form-container { background: var(--bg-alt); padding: 60px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.input-group { margin-bottom: 24px; }
.input-group label { display: block; font-weight: 800; margin-bottom: 12px; color: #E2E8F0; }
.input-group input { width: 100%; padding: 18px; border: 1px solid var(--border); border-radius: 4px; font-size: 1.1rem; font-family: var(--font-main); transition: all 0.3s; background: var(--primary); color: #FFF; }
.input-group input:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 10px rgba(0, 240, 255, 0.2); }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 40px; font-size: 1.05rem; color: var(--text-muted); }
.checkbox-group input { margin-top: 6px; width: 20px; height: 20px; accent-color: var(--secondary); }
.checkbox-group a { color: var(--secondary); text-decoration: underline; font-weight: 800; }
.btn-submit { width: 100%; padding: 22px; background: var(--secondary); color: #000; border: none; border-radius: 4px; font-size: 1.3rem; font-weight: 900; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 12px; transition: background 0.3s; }
.btn-submit:hover { background: #FFF; }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* Success Message */
.success-message { text-align: center; padding: 40px 20px; }
.success-icon i { font-size: 5rem; color: var(--secondary); margin-bottom: 30px; }
.success-message h3 { font-size: 2.2rem; font-weight: 900; color: #FFF; margin-bottom: 20px; }
.success-message p { font-size: 1.15rem; color: var(--text-muted); }

/* FAQ */
.fc-faq { padding: 120px 0; background: var(--bg-alt); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
details { background: var(--primary); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; overflow: hidden; }
summary { padding: 24px 30px; font-weight: 800; font-size: 1.25rem; color: #FFF; cursor: pointer; list-style: none; position: relative; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--secondary); transition: transform 0.3s; }
details[open] summary::after { content: '\f068'; transform: rotate(180deg); color: var(--accent); }
.details-content { padding: 0 30px 30px; color: var(--text-muted); line-height: 1.8; font-size: 1.1rem; border-top: 1px solid rgba(255,255,255,0.05); margin-top: -10px; padding-top: 20px; }

/* Footer */
.fc-footer { background: #000; color: var(--text-muted); padding: 80px 0 40px; font-size: 1rem; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; margin-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 50px; }
.footer-info h3 { color: #FFF; font-size: 1.5rem; font-weight: 900; margin-bottom: 24px; }
.footer-info p { margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 16px; }
.footer-links a { font-weight: 700; transition: color 0.3s; }
.footer-links a:hover { color: var(--secondary); }
.highlight-link { color: var(--secondary); }
.footer-bottom { text-align: center; font-size: 0.95rem; }

/* Legal Pages General */
.legal-page { background: var(--bg-main); padding: 100px 0; }
.legal-card { background: var(--bg-alt); padding: 70px; border-radius: 8px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.05); }
.legal-card h1 { font-size: 2.8rem; font-weight: 900; color: #FFF; margin-bottom: 40px; border-bottom: 2px solid var(--accent); padding-bottom: 20px; display: inline-block; }
.legal-card h2 { font-size: 1.6rem; font-weight: 900; margin: 50px 0 20px; color: #FFF; }
.legal-card p { margin-bottom: 16px; color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; }
.legal-card ul { margin-left: 24px; margin-bottom: 16px; color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; }
.map-container { width: 100%; height: 450px; border-radius: 8px; overflow: hidden; margin-top: 50px; border: 1px solid var(--border); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: rgba(11, 10, 16, 0.95); backdrop-filter: blur(10px); color: white; padding: 24px; z-index: 9999; transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1); border-top: 1px solid rgba(255,255,255,0.1); }
.cookie-banner.show { bottom: 0; }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cookie-content p { font-size: 1.05rem; line-height: 1.5; color: #E2E8F0; }
.cookie-btns { display: flex; gap: 16px; flex-shrink: 0; }
.cookie-btns button { padding: 14px 28px; border: none; border-radius: 4px; font-weight: 800; cursor: pointer; transition: all 0.3s; font-size: 1rem; }
.btn-cookie-accept { background: var(--secondary); color: #000; }
.btn-cookie-accept:hover { background: #FFF; }
.btn-cookie-decline { background: transparent; color: #FFF; border: 1px solid rgba(255,255,255,0.3) !important; }
.btn-cookie-decline:hover { background: rgba(255,255,255,0.1); }

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .hero-title { font-size: 3rem; }
    .hero-content { text-align: center; }
    .about-grid, .features-asym, .footer-grid, .stats-wrapper { grid-template-columns: 1fr; gap: 50px; }
    .features-asym { display: flex; flex-direction: column-reverse; }
    .input-row { grid-template-columns: 1fr; }
    .form-container { padding: 40px 24px; }
    .cookie-content { flex-direction: column; text-align: center; }
    .legal-card { padding: 40px 24px; }
    .stat-num { font-size: 4rem; }
}
