﻿@import url('https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css');
@font-face {
    font-family: 'GmarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

:root {
    --primary-color: #0A192F;
    --secondary-color: #00D4FF;
    --accent-color: #0070F3;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --border-color: #E2E8F0;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: 'SUIT', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'GmarketSans', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.text-center { text-align: center; }
.text-accent { color: var(--secondary-color); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 3rem; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.brand-logo { height: 40px; }
.nav-menu a {
    margin: 0 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition-fast);
}
.nav-menu a:hover { color: var(--accent-color); }
.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    transition: var(--transition-fast);
}
.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 120px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('hero-bg.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.15);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 2rem;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #CBD5E1;
}
.btn-large {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-family: 'GmarketSans', sans-serif;
    font-size: 1.25rem;
    padding: 20px 48px;
    border-radius: 50px;
    transition: var(--transition-fast);
}
.btn-large:hover {
    background: var(--bg-white);
    transform: scale(1.05);
}

/* Stats */
.stats-section {
    background: var(--bg-white);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}
.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.stat-box {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
}
.stat-number {
    font-family: 'GmarketSans', sans-serif;
    font-size: 3.5rem;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-desc {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* About & Features */
.about-section, .features-section { padding: 8rem 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.about-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.check-list { list-style: none; margin-top: 2rem; }
.check-list li {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.check-list i { color: var(--accent-color); font-size: 1.3rem; }
.about-visual img, .feature-image-box img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.feature-asymmetric {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-direction: row-reverse;
}
.feature-content-box h3 { font-size: 2rem; margin-bottom: 1rem; }
.feature-content-box p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
.bullet-points { padding-left: 1.2rem; color: var(--text-muted); }
.bullet-points li { margin-bottom: 1rem; font-size: 1.1rem; }

/* Lead Form Section */
.form-section {
    background: var(--primary-color);
    padding: 8rem 0;
    color: var(--bg-white);
}
.form-header { text-align: center; margin-bottom: 3rem; }
.form-header h2 { color: var(--bg-white); font-size: clamp(2rem, 4vw, 3rem); }
.form-header p { color: #CBD5E1; font-size: 1.1rem; }

.form-card {
    background: var(--bg-white);
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: var(--text-main);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
}
.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-slow);
}
.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}
.form-step h3 { margin-bottom: 2rem; font-size: 1.5rem; border-bottom: 2px solid var(--border-color); padding-bottom: 1rem; }

.input-row { display: flex; gap: 1rem; }
.input-col { flex: 1; }
.input-group, .input-col { margin-bottom: 1.5rem; }
label { display: block; font-weight: 700; margin-bottom: 0.5rem; font-size: 0.95rem; }
input[type="text"], input[type="email"], input[type="tel"] {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}
input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
}
.consent-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.consent-group input { width: 18px; height: 18px; }
.consent-group a { color: var(--accent-color); text-decoration: underline; }

.btn-next, .btn-submit, .btn-prev {
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}
.btn-next, .btn-submit {
    background: var(--primary-color);
    color: var(--bg-white);
    width: 100%;
}
.btn-next:hover, .btn-submit:hover { background: var(--accent-color); }
.form-actions { display: flex; gap: 1rem; }
.btn-prev { background: var(--bg-light); color: var(--text-main); border: 1px solid var(--border-color); flex: 1; }
.btn-submit { flex: 2; }

.success-message { text-align: center; padding: 2rem 0; }
.success-icon { font-size: 4rem; color: #10B981; margin-bottom: 1rem; }
.success-message h3 { margin-bottom: 1rem; }

/* Tech Stack */
.tech-stack { padding: 6rem 0; background: var(--bg-light); }
.tech-image { max-width: 100%; margin-top: 3rem; border-radius: var(--radius-md); }

/* FAQ */
.faq-section { padding: 8rem 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
details {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
}
summary {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    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(--accent-color);
}
details[open] summary::after { content: '\f068'; }
.faq-answer { padding: 0 1.5rem 1.5rem; color: var(--text-muted); font-size: 1.05rem; }

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: #94A3B8;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo { height: 30px; filter: grayscale(1) brightness(2); margin-bottom: 1rem; }
.footer-info h4, .footer-links h4 {
    color: var(--bg-white);
    font-family: 'GmarketSans', sans-serif;
    margin-bottom: 1.5rem;
}
.footer-info ul, .footer-links ul { list-style: none; }
.footer-info li, .footer-links li { margin-bottom: 0.8rem; font-size: 0.95rem; }
.footer-links a:hover { color: var(--secondary-color); }
.highlight-link { color: var(--bg-white); font-weight: 700; }
.footer-copy {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-wrapper { padding: 120px 0 80px; background: var(--bg-light); }
.legal-box {
    background: var(--bg-white);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}
.legal-box h1 { font-size: 2.2rem; margin-bottom: 2rem; border-bottom: 2px solid var(--border-color); padding-bottom: 1rem; }
.legal-box h2 { font-size: 1.4rem; margin: 2.5rem 0 1rem; color: var(--accent-color); }
.legal-box p, .legal-box li { color: var(--text-muted); margin-bottom: 0.8rem; font-size: 1.05rem; }

/* Map */
.map-iframe { width: 100%; height: 400px; border: none; border-radius: var(--radius-md); margin-top: 2rem; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-slow);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.cookie-container p { font-size: 0.95rem; margin: 0; }
.cookie-actions button {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    border: none;
}
.btn-accept { background: var(--secondary-color); color: var(--primary-color); }
.btn-reject { background: transparent; color: var(--bg-white); border: 1px solid rgba(255,255,255,0.3) !important; margin-left: 10px; }

/* Mobile Responsive */
@media (max-width: 992px) {
    .about-grid, .feature-asymmetric { grid-template-columns: 1fr; flex-direction: column; gap: 2rem; }
    .footer-layout { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero { padding: 120px 0 80px; }
    .input-row { flex-direction: column; gap: 0; }
    .form-card { padding: 2rem 1.5rem; }
    .cookie-container { flex-direction: column; text-align: center; }
    .legal-box { padding: 2rem 1.5rem; }
}
