﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Syne:wght@600;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --primary: #0A192F; /* Deep Industrial Navy */
    --secondary: #64FFDA; /* Eco Neon Lime */
    --accent: #FF6B6B; /* Terracotta / Italian Clay */
    --bg-dark: #020C1B;
    --bg-light: #F8F9FA;
    --text-dark: #ccd6f6;
    --text-light: #112240;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3 { font-family: 'Syne', sans-serif; color: var(--primary); }

/* Typography */
h1 { font-size: clamp(3.5rem, 8vw, 6.5rem); line-height: 0.95; letter-spacing: -0.04em; margin-bottom: 1.5rem; text-transform: uppercase; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 2rem; line-height: 1.1; letter-spacing: -0.02em; }

/* Unique Graphical Element: Floating Abstract Gear */
.unique-graphic {
    position: fixed;
    top: -10%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(100,255,218,0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 10s infinite alternate;
}
@keyframes pulse {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.2) rotate(45deg); }
}

/* Header */
header {
    background: rgba(248, 249, 250, 0.85);
    backdrop-filter: blur(15px);
    position: sticky; top: 0; z-index: 100;
    padding: 1.5rem 5%;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(10, 25, 47, 0.1);
}
.logo { display: flex; align-items: center; gap: 15px; font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.8rem; color: var(--primary); text-decoration: none; letter-spacing: -1px; }
.logo img { width: 45px; }

/* Buttons */
.btn-primary {
    background: var(--primary); color: var(--secondary); padding: 1.2rem 3rem;
    font-size: 1.1rem; font-weight: 500; text-decoration: none; border-radius: 0;
    display: inline-block; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--secondary); text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer;
}
.btn-primary:hover { background: var(--secondary); color: var(--primary); transform: translateX(5px); box-shadow: -5px 5px 0px var(--primary); }

/* Layout Sections */
section { padding: 7rem 5%; }

/* Hero */
.hero {
    min-height: 80vh;
    display: flex; flex-direction: column; justify-content: center;
    position: relative;
    border-bottom: 2px solid var(--primary);
}
.hero p { font-size: 1.4rem; max-width: 600px; margin-bottom: 3rem; color: #333; font-weight: 300; border-left: 4px solid var(--accent); padding-left: 1.5rem; }

/* Mixed Section Structure: Form Upfront */
.form-section { background: var(--primary); color: var(--text-dark); position: relative; }
.form-section h2 { color: var(--secondary); }
.form-wrapper {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.form-img { width: 100%; border-radius: 0; filter: grayscale(100%) contrast(1.2); transition: filter 0.5s; }
.form-img:hover { filter: grayscale(0%); }
.form-container { background: rgba(255,255,255,0.03); padding: 3rem; border: 1px solid rgba(100,255,218,0.2); backdrop-filter: blur(10px); }
.form-group { margin-bottom: 1.8rem; }
.form-group input {
    width: 100%; padding: 1.2rem; background: transparent; border: none; border-bottom: 1px solid #444;
    color: #fff; font-size: 1.1rem; font-family: inherit; transition: border-color 0.3s;
}
.form-group input:focus { border-color: var(--secondary); outline: none; }
.checkbox-group { display: flex; gap: 15px; align-items: flex-start; font-size: 0.9rem; color: #8892b0; margin-top: 1rem; }
.checkbox-group input { width: auto; margin-top: 5px; accent-color: var(--secondary); }
.success-msg { display: none; padding: 3rem; text-align: center; border: 1px solid var(--secondary); background: rgba(100,255,218,0.05); }
.success-msg h3 { color: var(--secondary); font-family: 'Syne'; font-size: 2rem; margin-bottom: 10px; }

/* Features Asymmetric */
.features { background: var(--bg-light); }
.feature-card { display: grid; grid-template-columns: 5fr 7fr; gap: 4rem; align-items: center; margin-bottom: 6rem; }
.feature-card:nth-child(even) { grid-template-columns: 7fr 5fr; direction: rtl; }
.feature-card:nth-child(even) > div { direction: ltr; }
.feature-card img { width: 100%; box-shadow: 20px 20px 0px var(--primary); border: 1px solid #ddd; }
.feature-list { list-style: none; margin-top: 2rem; }
.feature-list li { margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 20px; font-size: 1.1rem; }
.feature-list i { color: var(--accent); font-size: 1.5rem; margin-top: 5px; }

/* Random Section */
.random-statement { background: var(--accent); color: #fff; text-align: center; padding: 6rem 5%; }
.random-statement h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; }
.random-statement p { font-size: 1.3rem; max-width: 800px; margin: 0 auto; font-weight: 500; }

/* About & FAQ */
.about-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; background: var(--bg-light); border-top: 1px solid #ddd; }
details { background: #fff; padding: 1.5rem; border-left: 4px solid var(--primary); margin-bottom: 1rem; cursor: pointer; box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: all 0.3s; }
details:hover { transform: translateX(5px); }
summary { font-size: 1.2rem; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--primary); }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f067'; font-family: 'FontAwesome'; color: var(--accent); transition: transform 0.3s; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin-top: 1.5rem; color: #555; line-height: 1.8; }

/* Legal Pages */
.legal-main { padding: 5rem 5%; background: var(--bg-light); min-height: 80vh; }
.legal-container {
    max-width: 900px; margin: 0 auto; background: #fff;
    padding: 5rem; border: 1px solid #eee; box-shadow: 0 25px 50px rgba(0,0,0,0.05);
}
.legal-container h1 { font-size: 3rem; margin-bottom: 2rem; border-bottom: 4px solid var(--primary); padding-bottom: 1rem; }
.legal-container h2 { font-size: 1.8rem; margin-top: 3rem; margin-bottom: 1rem; color: var(--primary); }
.legal-container p, .legal-container ul { margin-bottom: 1.2rem; color: #444; font-size: 1.1rem; }
.legal-container ul { padding-left: 2rem; }
.map-container { width: 100%; height: 350px; margin-top: 3rem; border: 2px solid var(--primary); }

/* Footer */
footer { background: var(--bg-dark); color: #8892b0; padding: 4rem 5%; text-align: center; border-top: 5px solid var(--secondary); }
.footer-logo { font-family: 'Syne'; font-size: 2rem; color: #fff; margin-bottom: 1rem; }
.footer-links { display: flex; justify-content: center; gap: 3rem; margin-top: 2rem; flex-wrap: wrap; }
.footer-links a { color: var(--secondary); text-decoration: none; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: 20px; left: 20px; right: 20px; background: var(--primary); color: #fff;
    padding: 2rem; display: flex; justify-content: space-between; align-items: center;
    z-index: 1000; transform: translateY(150%); transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-left: 5px solid var(--secondary);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-btns { display: flex; gap: 1rem; }
.btn-cookie { padding: 1rem 2rem; border: none; cursor: pointer; font-family: 'Inter'; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.btn-accept { background: var(--secondary); color: var(--primary); }
.btn-decline { background: transparent; color: #8892b0; border: 1px solid #8892b0; }

/* Mobile Adaptability */
@media (max-width: 992px) {
    .form-wrapper, .about-faq, .feature-card, .feature-card:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
    .hero { min-height: 60vh; margin-top: 2rem; }
    .cookie-banner { flex-direction: column; gap: 1.5rem; text-align: center; left: 0; right: 0; bottom: 0; }
    .legal-container { padding: 2rem; }
}
