/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-align: center;
    padding: 120px 24px 80px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero .subheadline {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2563eb;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.trust-badges {
    margin-top: 32px;
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badges span {
    font-size: 14px;
    opacity: 0.9;
}

/* How It Works */
.how-it-works {
    padding: 96px 24px;
    background: #f3f4f6;
}

.how-it-works h2,
.benefits h2,
.why-us h2,
.faq h2,
.form-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 64px;
    color: #111827;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.step p {
    color: #6b7280;
    font-size: 16px;
}

/* Benefits */
.benefits {
    padding: 96px 24px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: transform 0.2s, box-shadow 0.2s;
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.1);
    border-color: #2563eb;
}

.benefit h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2563eb;
}

.benefit p {
    color: #6b7280;
    font-size: 15px;
}

/* Why Us */
.why-us {
    padding: 96px 24px;
    background: #f3f4f6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stat .number {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat .label {
    font-size: 16px;
    color: #6b7280;
}

/* FAQ */
.faq {
    padding: 96px 24px;
}

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 24px;
    color: #2563eb;
    transition: transform 0.3s;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #6b7280;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* Form Section */
.form-section {
    padding: 96px 24px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
}

.form-section h2 {
    color: white;
}

#leadForm {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

#leadForm input,
#leadForm select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

#leadForm input:focus,
#leadForm select:focus {
    outline: none;
    border-color: #2563eb;
}

#leadForm select {
    margin-bottom: 16px;
}

#leadForm button {
    width: 100%;
    margin-top: 8px;
}

.disclaimer {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin-top: 16px;
}

.disclaimer a {
    color: #2563eb;
    text-decoration: none;
}

/* Footer */
footer {
    background: #111827;
    color: white;
    padding: 48px 24px;
    text-align: center;
}

footer p {
    margin: 8px 0;
    opacity: 0.8;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .subheadline {
        font-size: 18px;
    }
    
    .how-it-works h2,
    .benefits h2,
    .why-us h2,
    .faq h2,
    .form-section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    #leadForm {
        padding: 24px;
    }
}

/* Accessibility */
.cta-button:focus,
#leadForm input:focus,
#leadForm select:focus,
.faq-question:focus {
    outline: 3px solid #93c5fd;
    outline-offset: 2px;
}

/* Loading State */
.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
