@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

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

html, body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    color: #333333;
    background-color: #FAFAFA;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #007BFF;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: #333;
    font-size: 28px;
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #E6F2FF 0%, #FAFAFA 100%);
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px auto;
    animation: fadeInUp 1s ease forwards;
}

.text-blue { color: #007BFF; }
.text-green { color: #28A745; }

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1.1s ease forwards;
}

.badge {
    background: #FFF;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #28A745;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Clean Card */
.clean-card {
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 40px;
    animation: fadeInUp 1.2s ease forwards;
}

/* Quiz UI */
.quiz-container {
    max-width: 650px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #E9ECEF;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #007BFF, #28A745);
    transition: width 0.4s ease;
}

.quiz-question {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-btn {
    background: #F8F9FA;
    border: 2px solid #E9ECEF;
    color: #333;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.quiz-btn:hover {
    background: #E6F2FF;
    border-color: #007BFF;
    color: #007BFF;
}

/* Spinner */
.spinner-container {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #E9ECEF;
    border-top: 4px solid #28A745;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    animation: spin 1s linear infinite;
}

/* Lead Form */
.lead-form {
    display: none;
    flex-direction: column;
    gap: 15px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    background: #F8F9FA;
    border: 1px solid #CED4DA;
    border-radius: 8px;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.submit-btn {
    background: #28A745;
    border: none;
    color: #FFF;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover { background: #218838; }

/* Footer */
footer {
    margin-top: auto;
    padding: 60px 0 30px;
    background: #FFFFFF;
    border-top: 1px solid #E9ECEF;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #6C757D;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-nav a:hover { color: #007BFF; }

.legal-info {
    text-align: center;
    color: #6C757D;
    font-size: 0.85rem;
    line-height: 1.8;
}

/* CCPA Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    padding: 20px 0;
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-banner.show { bottom: 0; }

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    font-size: 0.85rem;
    color: #555;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
}

.btn-accept { background: #007BFF; color: #FFF; }
.btn-accept:hover { background: #0056b3; }
.btn-decline { background: #E9ECEF; color: #333; }
.btn-decline:hover { background: #CED4DA; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #FFFFFF;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }
    .nav-links.active { left: 0; }
    .hero-title { font-size: 2.2rem; }
    .cookie-content { flex-direction: column; text-align: center; }
}