﻿@import url('https://fonts.googleapis.css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;700;900&display=swap');

:root {
    --primary: #0A192F;
    --secondary: #10B981;
    --secondary-hover: #059669;
    --accent: #FBBF24;
    --text-main: #334155;
    --text-light: #94A3B8;
    --bg-main: #F8FAFC;
    --bg-white: #FFFFFF;
    --transition: all 0.3s ease;
}

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

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

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

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

.logo { display: flex; align-items: center; gap: 10px; font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--primary); }
.logo img { width: 40px; height: 40px; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-weight: 500; }
.nav-links a:hover { color: var(--secondary); }

.btn {
    background: var(--secondary);
    color: var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn:hover { background: var(--secondary-hover); transform: translateY(-2px); color: #fff;}

/* Hero */
.hero {
    padding-top: 150px;
    padding-bottom: 100px;
    background: var(--primary);
    color: var(--bg-white);
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--bg-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span { color: var(--secondary); }
.hero p { font-size: 1.25rem; color: var(--text-light); max-width: 700px; margin: 0 auto 2.5rem; }

/* Asymmetric Features */
.features { padding: 100px 0; }
.feature-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.feature-img { position: relative; }
.feature-img img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0 var(--accent); }
.feature-text h2 { font-size: 3rem; margin-bottom: 1.5rem; }
.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.feature-list i { color: var(--secondary); font-size: 1.5rem; }

/* Random Section */
.random-section {
    background: var(--bg-white);
    padding: 100px 0;
    text-align: center;
}
.random-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.random-card {
    padding: 2.5rem;
    background: var(--bg-main);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}
.random-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1.5rem; }

/* Lead Form Section */
.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
    color: white;
}
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    color: var(--text-main);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.form-container h2 { font-size: 2.5rem; margin-bottom: 1rem; text-align: center; }
.form-container p { text-align: center; color: var(--text-light); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; }
.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}
.form-control:focus { outline: none; border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1); }
.checkbox-group { display: flex; gap: 0.5rem; align-items: flex-start; margin-bottom: 1.5rem; font-size: 0.875rem; color: var(--text-light); }
.checkbox-group input { margin-top: 0.25rem; }
.submit-btn { width: 100%; justify-content: center; font-size: 1.1rem; padding: 1rem; }

.success-message { text-align: center; padding: 2rem 0; }
.success-message i { font-size: 4rem; color: var(--secondary); margin-bottom: 1rem; }

/* FAQ */
.faq { padding: 100px 0; background: var(--bg-main); }
.faq h2 { font-size: 3rem; text-align: center; margin-bottom: 3rem; }
.faq-wrapper { max-width: 800px; margin: 0 auto; }
details {
    background: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
summary {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f107'; font-family: 'FontAwesome'; transition: var(--transition); }
details[open] summary::after { transform: rotate(180deg); }
.details-content { padding: 0 1.5rem 1.5rem; color: var(--text-light); }

/* Legal Pages */
.legal-page { padding: 150px 0 100px; }
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.legal-container h1 { font-size: 2.5rem; margin-bottom: 2rem; border-bottom: 2px solid var(--secondary); padding-bottom: 1rem; }
.legal-container h2 { font-size: 1.5rem; margin: 2rem 0 1rem; }
.legal-container p { margin-bottom: 1rem; text-align: justify; }
.legal-container ul { margin-left: 2rem; margin-bottom: 1.5rem; list-style: disc; }

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

/* Footer */
footer { background: var(--primary); color: white; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { color: white; margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: #94A3B8; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: #94A3B8; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    z-index: 9999;
    display: none;
    justify-content: space-between;
    align-items: center;
}
.cookie-content p { font-size: 0.9rem; color: var(--text-main); }
.cookie-buttons { display: flex; gap: 1rem; }
.btn-outline { background: transparent; border: 1px solid var(--primary); color: var(--primary); }

/* Responsive */
@media(max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .feature-wrapper, .contact-grid { grid-template-columns: 1fr; }
    .random-grid { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; gap: 1rem; text-align: center; }
    .nav-links { display: none; } /* Simple mobile hidden nav for lead-gen focus */
}
