﻿@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;600;800&family=Zen+Kaku+Gothic+New:wght@400;700;900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

:root {
    --bg-base: #050505;
    --accent-mint: #00FFAA;
    --accent-teal: #00B8FF;
    --text-light: #F8FAFC;
    --text-muted: #94A3B8;
    --glass-bg: rgba(15, 20, 25, 0.4);
    --glass-border: rgba(0, 255, 170, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
    font-family: 'Zen Kaku Gothic New', sans-serif; 
    background-color: var(--bg-base); 
    color: var(--text-light); 
    line-height: 1.8; 
    overflow-x: hidden;
    position: relative;
}

/* Unique Graphic: Animated Fluid Auras */
body::before {
    content: ''; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(0, 255, 170, 0.05), transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(0, 184, 255, 0.05), transparent 40%);
    z-index: -3;
}
.fluid-aura {
    position: fixed; filter: blur(120px); z-index: -2; opacity: 0.35;
    animation: morph 20s ease-in-out infinite alternate;
}
.aura-1 { top: 20%; left: 10%; width: 40vw; height: 40vw; background: var(--accent-mint); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
.aura-2 { bottom: 10%; right: 5%; width: 45vw; height: 45vw; background: var(--accent-teal); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; animation-delay: -10s; }
@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transform: rotate(0deg) scale(1); }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(180deg) scale(1.1); }
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

h1, h2, h3, h4 { font-weight: 900; letter-spacing: -0.02em; color: #FFF; }
.en-font { font-family: 'Outfit', sans-serif; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; border-radius: 12px; }

/* Giant Typography */
h1 { font-size: clamp(2.5rem, 8vw, 5.5rem); line-height: 1.1; margin-bottom: 24px; }
h1 span { background: linear-gradient(135deg, var(--accent-mint), var(--accent-teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.3; margin-bottom: 30px; }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 15px; color: var(--accent-mint); }
p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; font-weight: 400; }

/* Layout Wrappers */
section { padding: 120px 5%; position: relative; z-index: 1; }
.container { max-width: 1250px; margin: 0 auto; }

/* Header */
header { position: fixed; top: 0; width: 100%; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(5, 5, 5, 0.7); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); z-index: 1000; }
.logo { display: flex; align-items: center; gap: 12px; font-size: 1.6rem; font-weight: 800; color: #FFF; letter-spacing: 1px; }
.logo img { width: 32px; height: 32px; }
.nav-links { display: none; }
.btn-primary { background: linear-gradient(135deg, var(--accent-mint), var(--accent-teal)); color: #000; padding: 15px 35px; border-radius: 50px; font-weight: 700; border: none; cursor: pointer; transition: 0.4s; display: inline-block; box-shadow: 0 10px 20px rgba(0, 255, 170, 0.2); font-family: 'Zen Kaku Gothic New', sans-serif; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(0, 255, 170, 0.4); }

/* Hero */
.hero { min-height: 90vh; display: flex; align-items: center; padding-top: 150px; }
.hero-content { max-width: 850px; }
.hero p { font-size: clamp(1.1rem, 2vw, 1.4rem); max-width: 700px; margin-bottom: 40px; color: #E2E8F0; }

/* Form Section (High Priority for Lead Gen) */
.form-section { background: rgba(0,0,0,0.4); }
.form-wrapper { max-width: 750px; margin: 0 auto; padding: 60px 40px; position: relative; }
.form-wrapper::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(to right, var(--accent-mint), var(--accent-teal)); border-radius: 16px 16px 0 0; }
.form-wrapper h2 { text-align: center; margin-bottom: 15px; font-size: 2.2rem; }
.form-group { margin-bottom: 25px; }
.form-group input { width: 100%; padding: 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #FFF; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 1rem; transition: 0.3s; }
.form-group input:focus { outline: none; border-color: var(--accent-mint); background: rgba(0, 255, 170, 0.05); }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 30px; }
.checkbox-group input { margin-top: 6px; width: 20px; height: 20px; accent-color: var(--accent-mint); }
.checkbox-group label { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.submit-btn { width: 100%; font-size: 1.1rem; padding: 20px; }
.success-msg { display: none; text-align: center; padding: 40px 20px; }
.success-msg i { font-size: 4rem; color: var(--accent-mint); margin-bottom: 20px; }
.success-msg h3 { font-size: 2rem; color: #FFF; margin-bottom: 15px; }

/* Stats / Random */
.stats { padding: 80px 5%; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.stat-card { padding: 40px; text-align: center; border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; background: rgba(255,255,255,0.02); transition: 0.4s; }
.stat-card:hover { transform: translateY(-5px); border-color: var(--accent-mint); }
.stat-card h3 { font-size: 3.5rem; font-family: 'Outfit', sans-serif; background: linear-gradient(135deg, var(--accent-mint), var(--accent-teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 10px; line-height: 1; }

/* Features (Asymmetric) */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
.features-img { position: relative; padding: 15px; }
.features-img img { box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
.features-list { list-style: none; margin-top: 30px; }
.features-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; font-size: 1.1rem; color: #FFF; }
.features-list i { color: var(--accent-mint); font-size: 1.3rem; margin-top: 4px; }

/* About (Umbrella Brand) */
.about-content { max-width: 900px; margin: 0 auto; text-align: center; }
.brand-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 50px; }
.brand-item { padding: 25px; text-align: left; display: flex; flex-direction: column; gap: 10px; transition: 0.3s; border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; background: rgba(0,0,0,0.3); }
.brand-item:hover { border-color: var(--accent-mint); transform: translateY(-5px); }
.brand-item i { color: var(--accent-teal); font-size: 2rem; margin-bottom: 10px; }
.brand-item strong { color: #FFF; font-size: 1.2rem; }

/* FAQ */
.faq-container { max-width: 850px; margin: 0 auto; }
details { border-bottom: 1px solid var(--glass-border); padding: 25px 0; }
summary { font-size: 1.25rem; font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; color: #FFF; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--accent-mint); transition: 0.4s; }
details[open] summary::after { transform: rotate(135deg); color: var(--accent-teal); }
.faq-content { padding-top: 20px; color: var(--text-muted); font-size: 1.05rem; }

/* Footer */
footer { background: #020202; padding: 80px 5% 40px; border-top: 1px solid var(--glass-border); position: relative; z-index: 10; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 25px; color: #FFF; letter-spacing: 1px; }
.footer-col p, .footer-col a { display: block; margin-bottom: 12px; color: var(--text-muted); transition: 0.3s; font-size: 0.95rem; }
.footer-col a:hover { color: var(--accent-mint); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: #555; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -150px; left: 0; width: 100%; background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(20px); padding: 25px 5%; display: flex; flex-direction: column; gap: 15px; z-index: 9999; border-top: 2px solid var(--accent-mint); transition: bottom 0.5s ease; box-shadow: 0 -10px 40px rgba(0,0,0,0.9); }
.cookie-banner.show { bottom: 0; }
.cookie-text { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }
.cookie-btns { display: flex; gap: 10px; }
.btn-cookie { padding: 12px 24px; border-radius: 50px; cursor: pointer; font-weight: 700; border: none; transition: 0.3s; font-family: 'Zen Kaku Gothic New', sans-serif; }
.btn-accept { background: var(--accent-mint); color: #000; }
.btn-decline { background: transparent; color: #FFF; border: 1px solid #555; }

/* Legal Pages (White Card Concept) */
.legal-main { padding: 160px 5% 100px; }
.legal-card { max-width: 1000px; margin: 0 auto; background: #FFFFFF; color: #111; padding: 60px 50px; border-radius: 16px; box-shadow: 0 20px 60px rgba(0, 255, 170, 0.1); position: relative; z-index: 10; }
.legal-card h1 { color: #050505; font-size: clamp(2rem, 4vw, 3.5rem); border-bottom: 4px solid var(--accent-teal); padding-bottom: 20px; margin-bottom: 40px; text-shadow: none; }
.legal-card h2 { color: #1E293B; margin: 40px 0 20px; font-size: 1.8rem; }
.legal-card p, .legal-card li { color: #334155; margin-bottom: 15px; font-size: 1.05rem; line-height: 1.8; }
.legal-card ul { padding-left: 20px; margin-bottom: 25px; }
.map-iframe { width: 100%; height: 400px; border: 0; margin-top: 30px; border-radius: 12px; filter: grayscale(100%); }

/* Desktop Media Queries */
@media(min-width: 992px) {
    .nav-links { display: flex; gap: 40px; }
    .nav-links a { font-weight: 700; font-size: 0.95rem; letter-spacing: 1px; }
    .nav-links a:hover { color: var(--accent-mint); }
    
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .features-grid.reverse { direction: rtl; }
    .features-grid.reverse > * { direction: ltr; }
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    
    .form-wrapper { padding: 60px 80px; }
    .form-row { display: flex; gap: 20px; }
    .form-row .form-group { flex: 1; }
    
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
    .cookie-banner { flex-direction: row; justify-content: space-between; align-items: center; }
    .cookie-text { max-width: 65%; }
    .legal-card { padding: 80px 100px; }
}
