﻿:root {
    --primary: #0A2540;
    --secondary: #00D4FF;
    --accent: #E1F0FF;
    --text-main: #1E293B;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border: #E2E8F0;
    --error: #EF4444;
    --success: #10B981;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.1;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.large-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-body);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: #06182a;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-large {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span { color: var(--secondary); }
.logo i { color: var(--secondary); }

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
}

.desktop-nav a:hover { color: var(--secondary); }

/* Hero */
.hero-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

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

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

/* Stats */
.random-section {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card h3 {
    color: var(--secondary);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

/* About */
.about-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Features */
.features-section {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    min-height: 500px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
}

.feature-list i {
    font-size: 2rem;
    color: var(--secondary);
    background: var(--accent);
    padding: 1rem;
    border-radius: 12px;
    height: max-content;
}

.feature-list h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Form Section */
.form-section {
    padding: 6rem 0;
    background-color: var(--primary);
    color: var(--bg-white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: var(--text-main);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.form-header p { color: var(--text-light); }

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--secondary);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkbox-group input { margin-top: 0.3rem; }
.checkbox-group a { color: var(--primary); text-decoration: underline; }

.btn-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1rem;
}

.success-message h3 { margin-bottom: 1rem; font-size: 2rem; }
.hidden { display: none !important; }

/* Methodology */
.methodology-section { padding: 6rem 0; background: var(--bg-white); }

.method-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    position: relative;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-weight: 800;
    opacity: 0.5;
}

.step h4 { font-size: 1.5rem; margin-bottom: 1rem; z-index: 2; position: relative; }

/* FAQ */
.faq-section { padding: 6rem 0; background: var(--bg-light); }

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

summary {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.5rem; color: var(--secondary); }
details[open] summary::after { content: '-'; }

details p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* Footer */
.main-footer {
    background: #051221;
    color: var(--bg-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p { margin-top: 1rem; color: #94A3B8; }

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a, .footer-contact a { color: #94A3B8; text-decoration: none; transition: color 0.3s;}
.footer-links a:hover, .footer-contact a:hover { color: var(--secondary); }
.footer-contact p { color: #94A3B8; margin-bottom: 0.5rem; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1E293B;
    color: #64748B;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    border: 1px solid var(--border);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p { font-size: 0.9rem; color: var(--text-light); }
.cookie-content a { color: var(--primary); }
.cookie-buttons { display: flex; gap: 1rem; flex-shrink: 0; }

/* Legal Pages Shared */
.legal-page { padding: 4rem 0; background: var(--bg-light); }
.legal-container {
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 0 auto;
}
.legal-container h1 { margin-bottom: 2rem; font-size: 2.5rem; }
.legal-container h2 { margin: 2rem 0 1rem; font-size: 1.5rem; }
.legal-container p, .legal-container ul { margin-bottom: 1rem; color: var(--text-light); }
.legal-container ul { margin-left: 1.5rem; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info { background: var(--bg-white); padding: 3rem; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { margin-bottom: 1rem; font-size: 1.1rem; }
.contact-info i { color: var(--secondary); margin-right: 10px; width: 20px; }
.map-container { border-radius: 24px; overflow: hidden; height: 100%; min-height: 400px; }

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .features-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-text h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
    .features-image { order: -1; }
    .desktop-nav { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
}

@media (max-width: 768px) {
    .stats-grid, .method-steps { grid-template-columns: 1fr; }
    .cookie-content { flex-direction: column; text-align: center; }
    .legal-container { padding: 2rem; }
    .form-container { padding: 2rem 1.5rem; }
}
