﻿:root {
    --bg-dark: #050505; /* Deep black */
    --bg-glass: rgba(15, 23, 42, 0.6);
    --border-glass: rgba(16, 185, 129, 0.2);
    --neon-green: #10b981;
    --electric-blue: #3b82f6;
    --text-main: #f8fafc;
    --text-mut: #94a3b8;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Unique Graphic: Energy Flow Grid Background */
.energy-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; background: var(--bg-dark); overflow: hidden; }
.power-grid { position: absolute; width: 200%; height: 200%; top: -50%; left: -50%; background-image: linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px); background-size: 60px 60px; transform: perspective(800px) rotateX(70deg); animation: moveGrid 15s linear infinite; }
.energy-pulse { position: absolute; filter: blur(120px); border-radius: 50%; opacity: 0.25; }
.pulse-1 { width: 40vw; height: 40vw; background: var(--neon-green); top: 10%; left: -10%; animation: floatPulse 12s infinite alternate; }
.pulse-2 { width: 35vw; height: 35vw; background: var(--electric-blue); bottom: 10%; right: -10%; animation: floatPulse 15s infinite alternate-reverse; }

@keyframes moveGrid { 0% { background-position: 0 0; } 100% { background-position: 0 60px; } }
@keyframes floatPulse { 0% { transform: scale(0.9) translate(0, 0); opacity: 0.15; } 100% { transform: scale(1.1) translate(5%, 10%); opacity: 0.3; } }

/* Typography */
h1, h2, h3, .brand-name { font-family: var(--font-heading); font-weight: 800; letter-spacing: -0.04em; }
a { color: var(--text-main); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--neon-green); }
.text-center { text-align: center; }
.text-gradient { background: linear-gradient(135deg, var(--neon-green), var(--electric-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Structural */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.glass-panel { background: var(--bg-glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--border-glass); border-radius: 24px; box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8); }

/* Buttons & Tags */
.badge-tag { display: inline-block; padding: 0.5rem 1.2rem; background: rgba(16, 185, 129, 0.1); border: 1px solid var(--neon-green); color: var(--neon-green); border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2rem; box-shadow: 0 0 15px rgba(16, 185, 129, 0.2) inset; }
.btn-solid { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: var(--text-main); color: var(--bg-dark) !important; padding: 1.2rem 2.5rem; border-radius: 12px; font-weight: 600; font-family: var(--font-body); border: none; cursor: pointer; transition: 0.4s; font-size: 1.05rem; box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1); }
.btn-solid:hover { background: var(--neon-green); color: var(--bg-dark) !important; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4); }
.btn-outline { padding: 0.8rem 1.8rem; border: 1px solid var(--neon-green); color: var(--text-main); border-radius: 10px; font-weight: 500; transition: 0.3s; }
.btn-outline:hover { background: var(--neon-green); color: var(--bg-dark); }
.btn-full { width: 100%; }

/* Header */
.glass-header { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(5, 5, 5, 0.8); border-bottom: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(12px); }
.nav-bar { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.brand-logo { display: flex; align-items: center; gap: 12px; font-size: 2.2rem; }
.accent-dot { color: var(--neon-green); }
.desktop-nav { display: flex; gap: 3rem; align-items: center; }
.desktop-nav a { font-size: 1rem; font-weight: 500; }

/* Sections Global */
section { padding: 9rem 0; }
.section-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; line-height: 1.05; }
.section-subtitle { color: var(--text-mut); font-size: 1.2rem; margin-bottom: 4rem; max-width: 750px; margin-inline: auto; }

/* Hero Section */
.hero { display: flex; align-items: center; min-height: 100vh; padding-top: 130px; }
.hero-content { padding: 5rem 4rem; max-width: 900px; border-left: 4px solid var(--neon-green); }
.hero-h1 { font-size: clamp(3.8rem, 7vw, 6.5rem); line-height: 1; margin-bottom: 1.5rem; }
.hero-p { font-size: 1.25rem; color: var(--text-mut); margin-bottom: 3.5rem; line-height: 1.8; max-width: 750px; }

/* Process */
.process-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; }
.step-card { padding: 3.5rem 3rem; position: relative; transition: 0.4s; overflow: hidden; }
.step-card:hover { transform: translateY(-10px); border-color: var(--neon-green); }
.step-number { position: absolute; top: -10px; right: 10px; font-family: var(--font-heading); font-size: 8rem; font-weight: 900; color: rgba(255,255,255,0.03); line-height: 1; z-index: 0; }
.step-card h3 { font-size: 1.5rem; color: var(--text-main); margin-bottom: 1rem; position: relative; z-index: 1; }
.step-card p { color: var(--text-mut); position: relative; z-index: 1; font-size: 1.05rem; }

/* Features (Asymmetrical) */
.asym-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: center; }
.image-card { position: relative; padding: 1.5rem; transform: rotate(-2deg); transition: 0.5s; }
.image-card:hover { transform: rotate(0); }
.image-card img { width: 100%; border-radius: 16px; display: block; filter: contrast(1.1) brightness(0.9); }
.stat-badge { position: absolute; bottom: -30px; right: -30px; background: var(--bg-dark); border: 1px solid var(--electric-blue); padding: 1.5rem 2.5rem; border-radius: 16px; display: flex; align-items: center; gap: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.8); }
.stat-badge i { font-size: 2.2rem; color: var(--electric-blue); }
.stat-num { display: block; font-size: 2.2rem; font-weight: 900; font-family: var(--font-heading); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--text-mut); text-transform: uppercase; letter-spacing: 1px; }
.feature-bullets { list-style: none; margin-top: 3rem; }
.feature-bullets li { display: flex; gap: 25px; margin-bottom: 3rem; }
.icon-box { background: rgba(16, 185, 129, 0.1); border: 1px solid var(--neon-green); width: 65px; height: 65px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box i { font-size: 1.6rem; color: var(--neon-green); }
.feature-text h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.feature-text p { color: var(--text-mut); font-size: 1.05rem; }

/* Form Section */
.form-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; padding: 5rem; }
.trust-indicators { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 3rem; color: var(--neon-green); font-size: 1rem; font-weight: 500; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.input-group { margin-bottom: 1.8rem; }
label { display: block; margin-bottom: 0.6rem; font-size: 0.85rem; color: var(--text-mut); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
input { width: 100%; padding: 1.2rem 1.5rem; background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: white; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
input:focus { outline: none; border-color: var(--neon-green); background: rgba(0,0,0,0.8); box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
.checkbox-group { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 2.5rem; font-size: 0.9rem; color: var(--text-mut); }
.checkbox-group input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--electric-blue); cursor: pointer; }
.checkbox-group a { color: var(--neon-green); text-decoration: underline; }
.success-alert { text-align: center; padding: 3rem; border: 1px solid var(--neon-green); border-radius: 12px; background: rgba(16, 185, 129, 0.1); color: var(--neon-green); margin-top: 1rem; }

/* FAQ Section */
.accordion-wrap { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.faq-item { padding: 2rem 2.5rem; cursor: pointer; border-left: 4px solid transparent; }
.faq-item:hover { border-left-color: var(--neon-green); }
.faq-item summary { font-weight: 600; font-size: 1.2rem; list-style: none; display: flex; justify-content: space-between; align-items: center; outline: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\f067'; font-family: 'FontAwesome'; color: var(--electric-blue); transition: 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--neon-green); }
.faq-content { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-mut); font-size: 1.05rem; }

/* About Section */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-content { padding: 4rem; border-left: 4px solid var(--electric-blue); }
.about-content p { margin-bottom: 1.8rem; color: var(--text-mut); font-size: 1.1rem; }
.rounded-media { width: 100%; border-radius: 24px; border: 1px solid var(--border-glass); opacity: 0.85; filter: grayscale(10%); }

/* Footer */
.site-footer { border-radius: 0; border-bottom: none; border-left: none; border-right: none; padding: 6rem 0 2rem; margin-top: 6rem; background: rgba(0, 0, 0, 0.7); }
.footer-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 6rem; margin-bottom: 4rem; }
.company-address { margin: 1.5rem 0; color: var(--text-mut); line-height: 1.8; }
.contact-info p { margin-bottom: 0.8rem; color: var(--text-mut); }
.contact-info i { color: var(--neon-green); margin-right: 12px; width: 20px; text-align: center; }
.links-column h3 { margin-bottom: 1.8rem; font-size: 1.3rem; color: #fff; }
.footer-nav { display: flex; flex-direction: column; gap: 1.2rem; }
.footer-nav a { color: var(--text-mut); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2.5rem; color: #52525b; font-size: 0.9rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 850px; padding: 1.8rem 2.5rem; z-index: 9999; display: none; align-items: center; justify-content: space-between; gap: 2rem; border-radius: 16px; border: 1px solid var(--electric-blue); }
.cookie-msg { font-size: 0.95rem; color: var(--text-main); }
.cookie-msg a { color: var(--neon-green); }

/* Legal Pages (White Professional Look) */
.legal-wrapper { padding-top: 160px; padding-bottom: 100px; }
.legal-card { max-width: 950px; margin: 0 auto; padding: 6rem; background: #ffffff; color: #18181b; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.legal-card h1 { font-size: 2.8rem; border-bottom: 2px solid #e4e4e7; padding-bottom: 1.5rem; margin-bottom: 3rem; color: #050505; }
.legal-card h2 { font-size: 1.6rem; margin-top: 3.5rem; margin-bottom: 1.2rem; color: #3b82f6; font-family: var(--font-body); font-weight: 700; }
.legal-card p, .legal-card li { color: #3f3f46; margin-bottom: 1.2rem; line-height: 1.8; font-size: 1.1rem; }
.legal-card ul { margin-left: 2.5rem; margin-bottom: 2rem; }
.legal-card a { color: #10b981; font-weight: 700; text-decoration: none; border-bottom: 2px solid #10b981; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .asym-grid, .form-grid, .about-layout, .footer-layout { grid-template-columns: 1fr; gap: 4rem; }
    .input-row { grid-template-columns: 1fr; }
    .desktop-nav { display: none; }
    .hero-content, .form-grid { padding: 3rem; }
    .stat-badge { position: relative; bottom: auto; right: auto; margin-top: -20px; display: inline-flex; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .legal-card { padding: 3rem; }
}
