﻿:root {
    --color-bg: #F4F7F6;
    --color-dark: #0B132B;
    --color-blue: #3A506B;
    --color-accent: #48CAE4;
    --color-white: #FFFFFF;
    --color-text: #2C3E50;
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(11, 19, 43, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Background Blobs for Glassmorphism effect */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
}
.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    top: -100px;
    right: -100px;
    animation: float 10s ease-in-out infinite;
}
.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--color-blue);
    top: 50%;
    left: -150px;
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(20px) scale(1.05); }
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--color-dark);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
p { margin-bottom: 1rem; font-size: 1.1rem; }

a { text-decoration: none; color: inherit; transition: color 0.3s; }
a:hover { color: var(--color-accent); }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-accent { color: var(--color-accent); }
.text-center { text-align: center; }
.mt-5 { margin-top: 5rem; }
.d-none { display: none !important; }

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--color-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: transparent;
    color: var(--color-dark);
}
.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 3rem;
}

/* Header */
header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background: rgba(244, 247, 246, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(11, 19, 43, 0.05);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-dark);
}
nav { display: flex; gap: 2rem; }
nav a { font-weight: 600; }

/* Hero */
.hero {
    padding: 8rem 0 5rem;
    text-align: center;
}
.hero-content {
    max-width: 800px;
}

/* Form Section */
.form-section { padding: 4rem 0; }
.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.form-benefits { list-style: none; margin-top: 2rem; }
.form-benefits li { margin-bottom: 1rem; font-size: 1.1rem; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.input-group { margin-bottom: 1.5rem; }
.input-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; }
.input-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.input-group input:focus { outline: none; border-color: var(--color-accent); }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 2rem; }
.checkbox-group input { margin-top: 5px; }
.checkbox-group label { font-size: 0.85rem; color: #555; }
.btn-submit { width: 100%; }

.success-message {
    text-align: center;
    padding: 2rem;
    background: #e8f5e9;
    border-radius: var(--radius);
    color: #2e7d32;
}
.success-message i { font-size: 3rem; margin-bottom: 1rem; }

/* Features */
.features { padding: 5rem 0; }
.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.feature-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.custom-bullets { list-style: none; margin-top: 2rem; }
.custom-bullets li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.custom-bullets i {
    font-size: 2rem;
    color: var(--color-accent);
}
.custom-bullets strong { display: block; font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--color-dark); }

/* Process (Random Section) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.process-step { text-align: center; }
.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* About */
.about { padding: 5rem 0; }
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* FAQ */
.faq-section { padding: 5rem 0; max-width: 800px; }
.faq-accordion details {
    background: var(--color-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.faq-accordion summary {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 1.1rem;
}
.faq-accordion p { padding: 0 1.5rem 1.5rem; margin: 0; color: #555; }

/* Footer */
footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand img { margin-bottom: 1rem; }
.footer-brand span { font-family: var(--font-head); font-size: 1.5rem; font-weight: bold; display: block; margin-bottom: 0.5rem; }
.footer-links h4, .footer-contact h4 { font-family: var(--font-head); margin-bottom: 1.5rem; color: var(--color-accent); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-contact p { margin-bottom: 0.8rem; display: flex; gap: 10px; align-items: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.9rem; color: #aaa; }

/* Legal Pages Container */
.legal-container {
    padding: 5rem 0;
    max-width: 900px;
    margin: 0 auto;
}
.legal-card {
    background: var(--color-white);
    padding: 4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.legal-card h1 { font-size: 2.5rem; border-bottom: 2px solid var(--color-bg); padding-bottom: 1rem; margin-bottom: 2rem; }
.legal-card h2 { font-size: 1.8rem; margin-top: 2.5rem; }
.legal-card h3 { font-size: 1.3rem; margin-top: 1.5rem; }
.legal-card ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-card li { margin-bottom: 0.5rem; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.cookie-content p { margin: 0; font-size: 0.9rem; color: #ddd; }
.cookie-content a { color: var(--color-accent); text-decoration: underline; }

/* Responsive */
@media (max-width: 992px) {
    .form-container, .features-container, .about-container { grid-template-columns: 1fr; gap: 3rem; }
    .features-container .feature-image { grid-row: 2; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-contact p { justify-content: center; }
    nav { display: none; } /* Simplified for mobile focus on CTA */
    .cookie-content { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .legal-card { padding: 2rem; }
}
