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

:root {
    --primary: #002855; /* Deep Navy */
    --primary-light: #004080;
    --secondary: #00b4d8; /* Aqua/Water */
    --accent: #28a745; /* Eco Green */
    --accent-hover: #218838;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --bg-main: #ffffff;
    --bg-alt: #f3f4f6;
    --border: #e5e7eb;
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --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; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

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

/* Header */
.dq-header { position: sticky; top: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); z-index: 100; border-bottom: 1px solid var(--border); }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.3rem; color: var(--primary); letter-spacing: -0.02em; }
.main-nav ul { list-style: none; display: flex; gap: 32px; }
.main-nav a { font-weight: 700; font-size: 1.05rem; color: var(--text-main); transition: color 0.3s; }
.main-nav a:hover { color: var(--secondary); }

/* Hero */
.dq-hero { position: relative; padding: 160px 0; color: white; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0, 40, 85, 0.95), rgba(0, 180, 216, 0.8)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=1920') center/cover; z-index: -1; }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(40, 167, 69, 0.2); border: 1px solid var(--accent); color: #86efac; border-radius: 30px; font-weight: 700; font-size: 0.95rem; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-title { font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 900; line-height: 1.2; letter-spacing: -0.04em; margin-bottom: 24px; text-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.hero-title .highlight { color: #82ca9d; }
.hero-subtitle { font-size: clamp(1.1rem, 2vw, 1.3rem); color: #e5e7eb; margin-bottom: 50px; font-weight: 400; line-height: 1.8; }
.btn-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--secondary); color: white; padding: 20px 48px; border-radius: 8px; font-weight: 800; font-size: 1.15rem; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4); }
.btn-primary:hover { background: #0096b4; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 180, 216, 0.6); }

/* Vision / About */
.dq-vision { padding: 120px 0; background: var(--bg-main); }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vision-image img { border-radius: 12px; box-shadow: var(--shadow-lg); }
.vision-text h2 { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 24px; line-height: 1.3; letter-spacing: -0.03em; }
.vision-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; }
.vision-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.vision-list li { display: flex; align-items: center; gap: 16px; font-size: 1.15rem; font-weight: 600; color: var(--primary); }
.vision-list i { color: var(--secondary); font-size: 1.5rem; width: 30px; text-align: center; }

/* Features */
.dq-features { padding: 120px 0; background: var(--bg-alt); }
.section-heading { text-align: center; margin-bottom: 60px; }
.section-heading h2 { font-size: 2.8rem; font-weight: 900; color: var(--primary); margin-bottom: 16px; }
.section-heading p { font-size: 1.15rem; color: var(--text-muted); }
.features-asym { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; }
.feat-img-box img { border-radius: 12px; box-shadow: var(--shadow-lg); position: relative; border-bottom: 8px solid var(--secondary); }
.feat-content-box { display: flex; flex-direction: column; gap: 40px; }
.feat-item { display: flex; gap: 24px; background: white; padding: 30px; border-radius: 12px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform 0.3s; }
.feat-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feat-icon { width: 60px; height: 60px; background: rgba(0, 180, 216, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--secondary); flex-shrink: 0; }
.feat-item h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.feat-item p { color: var(--text-muted); line-height: 1.6; }

/* Stats */
.dq-stats { padding: 100px 0; background: var(--primary); color: white; text-align: center; }
.stats-wrapper h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 60px; color: #86efac; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stat-num { display: block; font-size: 4rem; font-weight: 900; color: white; line-height: 1; margin-bottom: 16px; font-family: system-ui; }
.stat-desc { font-weight: 600; font-size: 1.1rem; color: #9ca3af; letter-spacing: 0.05em; }

/* Lead Form */
.dq-lead-form { padding: 120px 0; background: var(--bg-main); }
.form-wrapper { max-width: 800px; }
.form-header { text-align: center; margin-bottom: 50px; }
.form-header h2 { font-size: 2.5rem; font-weight: 900; color: var(--primary); margin-bottom: 16px; }
.form-header p { font-size: 1.1rem; color: var(--text-muted); }
.form-container { background: white; padding: 50px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); border: 1px solid var(--border); }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.input-group { margin-bottom: 24px; }
.input-group label { display: block; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.input-group input { width: 100%; padding: 16px; border: 2px solid var(--border); border-radius: 8px; font-size: 1rem; font-family: var(--font-main); transition: all 0.3s; background: var(--bg-alt); }
.input-group input:focus { outline: none; border-color: var(--secondary); background: white; }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 32px; font-size: 0.95rem; color: var(--text-muted); }
.checkbox-group input { margin-top: 4px; width: 18px; height: 18px; cursor: pointer; }
.checkbox-group a { color: var(--primary-light); text-decoration: underline; font-weight: 700; }
.btn-submit { width: 100%; padding: 20px; background: var(--accent); color: white; border: none; border-radius: 8px; font-size: 1.25rem; font-weight: 800; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 12px; transition: background 0.3s; }
.btn-submit:hover { background: var(--accent-hover); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* Success Message */
.success-message { text-align: center; padding: 40px 20px; }
.success-message i { font-size: 4.5rem; color: var(--accent); margin-bottom: 24px; }
.success-message h3 { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }

/* FAQ */
.dq-faq { padding: 100px 0; background: var(--bg-alt); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
details { background: white; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); }
summary { padding: 24px; font-weight: 800; font-size: 1.15rem; color: var(--primary); 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); }
.details-content { padding: 0 24px 24px; color: var(--text-muted); line-height: 1.7; font-size: 1.05rem; }

/* Footer */
.dq-footer { background: #0f172a; color: #94a3b8; padding: 80px 0 40px; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 40px; }
.footer-info h3 { color: white; font-size: 1.4rem; font-weight: 800; margin-bottom: 20px; }
.footer-info p { margin-bottom: 10px; }
.footer-links { display: flex; flex-direction: column; gap: 16px; }
.footer-links a { font-weight: 600; transition: color 0.3s; }
.footer-links a:hover { color: white; }
.highlight-link { color: var(--secondary); }
.footer-bottom { text-align: center; }

/* Legal Pages General */
.legal-page { background: var(--bg-alt); padding: 80px 0; }
.legal-card { background: white; padding: 60px; border-radius: 12px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.legal-card h1 { font-size: 2.2rem; font-weight: 900; color: var(--primary); margin-bottom: 40px; border-bottom: 3px solid var(--secondary); padding-bottom: 20px; display: inline-block; }
.legal-card h2 { font-size: 1.3rem; font-weight: 800; margin: 32px 0 16px; color: var(--primary); }
.legal-card p { margin-bottom: 16px; color: var(--text-muted); font-size: 1.05rem; }
.legal-card ul { margin-left: 24px; margin-bottom: 16px; color: var(--text-muted); font-size: 1.05rem; }
.map-container { width: 100%; height: 450px; border-radius: 8px; overflow: hidden; margin-top: 40px; border: 1px solid var(--border); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: #1e293b; color: white; padding: 24px; z-index: 9999; transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1); border-top: 4px solid var(--secondary); box-shadow: 0 -10px 20px rgba(0,0,0,0.2); }
.cookie-banner.show { bottom: 0; }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.cookie-content p { font-size: 0.95rem; line-height: 1.5; color: #cbd5e1; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btns button { padding: 12px 24px; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; transition: background 0.3s; }
.btn-cookie-accept { background: var(--accent); color: white; }
.btn-cookie-accept:hover { background: var(--accent-hover); }
.btn-cookie-decline { background: transparent; color: #cbd5e1; border: 1px solid #475569 !important; }
.btn-cookie-decline:hover { background: #334155; color: white; }

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