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

:root {
    --primary-blue: #1a73e8;
    --primary-blue-dark: #1557b0;
    --dark-bg: #1a1f33;
    --darker-bg: #141824;
    --accent-blue: #4a9eff;
    --text-light: #e8eaed;
    --text-gray: #9aa0a6;
    --success-green: #28a745;
    --error-red: #dc3545;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    background: var(--dark-bg);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    color: white;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent-blue);
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-gray);
}

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

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

.nav a:hover {
    color: var(--accent-blue);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--success-green);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.phone-btn:hover {
    background: #20933a;
    transform: scale(1.05);
}

.cta-button {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-button:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 3rem 2rem 2rem;
    min-height: auto;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-left {
    color: white;
}

.special-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.dot {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.highlight {
    color: var(--accent-blue);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-emphasis {
    color: #ffc107;
}

.features-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.feature-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-icon-small {
    background: var(--success-green);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 0.75rem;
}

/* Form Card */
.hero-right {
    position: relative;
}

.form-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #202124;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #5f6368;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #202124;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e8eaed;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-button {
    background: linear-gradient(135deg, var(--success-green) 0%, #20933a 100%);
    color: white;
    border: none;
    padding: 1.15rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.25);
    letter-spacing: 0.3px;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.35);
}

.submit-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    box-shadow: none;
}

.form-consent {
    font-size: 0.75rem;
    color: #5f6368;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

.hidden {
    display: none !important;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 1rem;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

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

.success-screen h3 {
    font-size: 1.75rem;
    color: #202124;
    margin-bottom: 1rem;
}

.success-screen p {
    color: #5f6368;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.reset-button {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.reset-button:hover {
    background: var(--primary-blue-dark);
}

.call-sooner {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(74, 158, 255, 0.1);
    border-radius: 12px;
}

.call-sooner p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 0;
}

.call-sooner a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.call-sooner a:hover {
    color: white;
    text-decoration: underline;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Footer - Minimal & Clean */
footer.footer {
    background: linear-gradient(180deg, #1a1f33 0%, #141824 100%) !important;
    padding: 1.5rem 2rem !important;
    border-top: 2px solid rgba(74, 158, 255, 0.3) !important;
    width: 100%;
}

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

footer.footer .footer-content p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #9aa0a6 !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .header-cta {
        flex-direction: column;
        width: 100%;
    }

    .phone-btn,
    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .features-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    footer.footer {
        padding: 1rem !important;
    }

    footer.footer .footer-content p {
        font-size: 0.75rem;
    }
}

