﻿:root {
    --bg-dark: #0f172a;
    --text-light: #f8fafc;
    --accent-blue: #3b82f6;
    --accent-hover: #2563eb;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --spacing-lg: 5rem;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Animation */
.bg-mesh {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite alternate;
}
.orb-1 {
    width: 40vw; height: 40vw;
    background: #3b82f6;
    top: -10%; left: -10%;
}
.orb-2 {
    width: 35vw; height: 35vw;
    background: #8b5cf6;
    bottom: -10%; right: -10%;
    animation-delay: -5s;
}
@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 15vh) scale(1.2); }
}

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

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.text-accent { color: var(--accent-blue); }

h1, h2, h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

/* Header */
.glass-header {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 100;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}
nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
nav a:hover { color: var(--accent-blue); }

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.btn-primary {
    background: var(--accent-blue);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}
.btn-outline {
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-light);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
.btn-small { padding: 0.5rem 1rem; font-size: 0.9rem; }

/* Sections */
section {
    padding: var(--spacing-lg) 0;
}

/* Hero */
.hero {
    margin-top: 120px;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.hero .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border-radius: 2rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}
.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

/* Grid & Features */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.card i {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}
.features-flex {
    display: flex;
    gap: 4rem;
    align-items: center;
}
.feature-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.feature-text { flex: 1; }
.bullet-list { list-style: none; margin-top: 1.5rem; }
.bullet-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Form */
.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
form { margin-top: 2rem; }
.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
input[type="text"], input[type="email"], input[type="tel"] {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    color: #fff;
    font-family: var(--font-body);
}
input:focus {
    outline: none;
    border-color: var(--accent-blue);
}
.checkbox-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}
.checkbox-group a { color: var(--accent-blue); }
.form-btn { width: 100%; font-size: 1.1rem; }

.hidden { display: none !important; }
.success-msg {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    color: #4ade80;
    border-radius: 0.5rem;
    text-align: center;
}

/* FAQ */
.accordion details {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    padding: 1rem;
}
.accordion summary {
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-heading);
    list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion p {
    margin-top: 1rem;
    color: #94a3b8;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    margin-top: 4rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-logo small { display: block; color: #64748b; margin-top: 0.5rem; }
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 0.9rem;
}
.footer-links a:hover { color: #fff; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 1rem; left: 50%;
    transform: translateX(-50%);
    width: 90%; max-width: 600px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}
.cookie-text { font-size: 0.85rem; color: #cbd5e1; }
.cookie-text a { color: var(--accent-blue); }
.cookie-buttons { display: flex; gap: 1rem; justify-content: flex-end; }

/* Legal Pages Overrides */
.legal-main {
    padding-top: 120px;
    padding-bottom: 60px;
}
.legal-card {
    background: #ffffff;
    color: #1e293b;
    padding: 4rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.legal-card h1 { color: #0f172a; margin-bottom: 2rem; font-size: 2.5rem; }
.legal-card h2 { color: #334155; margin-top: 2rem; font-size: 1.5rem; }
.legal-card p, .legal-card ul { color: #475569; margin-bottom: 1rem; }
.legal-card ul { margin-left: 2rem; }

/* Responsive */
@media (max-width: 768px) {
    .header-container nav { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .features-flex { flex-direction: column; }
    .input-group { flex-direction: column; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links a { margin: 0 0.5rem; display: inline-block; }
    .legal-card { padding: 2rem; }
}
