﻿@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Syne:wght@600;800&display=swap');

:root {
    --bg-dark: #0b0c10;
    --bg-card: #1f2833;
    --accent-neon: #66fcf1;
    --accent-dark: #45a29e;
    --text-main: #c5c6c7;
    --text-light: #ffffff;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, .brand {
    font-family: 'Syne', sans-serif;
    color: var(--text-light);
}

.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--accent-neon);
    color: var(--bg-dark);
    padding: 10px 15px;
    z-index: 9999;
    font-weight: bold;
    text-decoration: none;
}
.skip-link:focus { top: 0; }

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(11, 12, 16, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--bg-card);
}

.brand {
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.brand img { width: 40px; height: 40px; }

.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--accent-neon); }

.burger-menu {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        background: var(--bg-card);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: var(--transition);
    }
    .nav-links.active { right: 0; }
    .burger-menu { display: block; }
}

.hero {
    padding: 100px 5%;
    display: flex;
    align-items: center;
    gap: 50px;
    min-height: 80vh;
}
.hero-content { flex: 1; }
.hero-image { flex: 1; border-radius: var(--border-radius); overflow: hidden; position: relative; }
.hero-image img { width: 100%; height: auto; display: block; }
.hero-image::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, var(--accent-neon), transparent); opacity: 0.2;
}

.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; }

.btn {
    display: inline-block;
    background: var(--accent-neon);
    color: var(--bg-dark);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn:hover { background: var(--text-light); box-shadow: 0 0 20px var(--accent-neon); }

section { padding: 80px 5%; }

.random-section { text-align: center; }
.random-section h2 { font-size: 2.5rem; margin-bottom: 20px; }
.random-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.card { background: var(--bg-card); padding: 30px; border-radius: var(--border-radius); border-top: 4px solid var(--accent-dark); }
.card img { width: 100%; border-radius: 8px; margin-bottom: 20px; }

.features { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; background: var(--bg-card); padding: 80px 5%; border-radius: 40px; margin: 0 5%; }
.features-img { flex: 1; min-width: 300px; border-radius: var(--border-radius); }
.features-text { flex: 1; min-width: 300px; }
.features-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.features-text ul { list-style: none; margin-top: 20px; }
.features-text li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; font-size: 1.1rem; }
.features-text li::before { content: '✔'; color: var(--accent-neon); font-weight: bold; }

.form-section { background: var(--bg-card); padding: 60px; border-radius: var(--border-radius); max-width: 800px; margin: 80px auto; border: 1px solid var(--accent-dark); }
.form-section h2 { font-size: 2.5rem; margin-bottom: 10px; text-align: center; }
.form-section p { text-align: center; margin-bottom: 30px; }
form { display: flex; flex-direction: column; gap: 20px; }
.input-group { display: flex; gap: 20px; flex-wrap: wrap; }
.input-group input { flex: 1; min-width: 250px; }
input, textarea {
    width: 100%; padding: 15px; background: var(--bg-dark); border: 1px solid #333;
    color: var(--text-light); font-size: 1rem; border-radius: 8px; font-family: 'Space Grotesk', sans-serif;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent-neon); }
.checkbox-group { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.checkbox-group input { width: auto; margin-top: 5px; }

.trust-layer { background: #050608; padding: 40px 5%; font-size: 0.85rem; color: #888; border-top: 1px solid #222; }
.trust-layer h4 { color: #aaa; margin-bottom: 10px; font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
.trust-layer p { margin-bottom: 10px; }
.trust-layer a { color: var(--accent-neon); text-decoration: none; }

footer { background: var(--bg-dark); padding: 40px 5%; text-align: center; border-top: 1px solid var(--bg-card); font-size: 0.9rem; }
footer .footer-links { margin: 20px 0; }
footer .footer-links a { color: var(--text-main); margin: 0 10px; text-decoration: none; }
footer .footer-links a:hover { color: var(--accent-neon); }

.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-card);
    padding: 20px 5%; display: flex; justify-content: space-between; align-items: center;
    z-index: 10000; border-top: 2px solid var(--accent-neon); transform: translateY(100%); transition: var(--transition);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-btns { display: flex; gap: 10px; }
.btn-outline { background: transparent; border: 1px solid var(--accent-neon); color: var(--accent-neon); padding: 10px 20px; border-radius: 50px; cursor: pointer; }

/* Accordion */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { background: var(--bg-card); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
.accordion-header { padding: 20px; background: var(--bg-card); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: bold; }
.accordion-content { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.active .accordion-content { padding: 20px; max-height: 500px; border-top: 1px solid var(--bg-dark); }

@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero h1 { font-size: 2.5rem; }
    .features { padding: 40px 5%; margin: 0; border-radius: 0; }
    .cookie-banner { flex-direction: column; gap: 15px; text-align: center; }
}

.legal-content { max-width: 900px; margin: 0 auto; background: var(--bg-card); padding: 50px; border-radius: var(--border-radius); }
.legal-content h1 { margin-bottom: 30px; color: var(--accent-neon); }
.legal-content h2 { margin-top: 30px; margin-bottom: 15px; }
.legal-content p, .legal-content ul { margin-bottom: 15px; }
.legal-content ul { margin-left: 20px; }
