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

:root {
    --tb-primary: #7C3AED;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(to bottom left, #3e1e8c, #673ab7) !important;
    color: white;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff !important
}

.hero-text .highlight {
    color: #fff !important;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.download-form {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.download-form h3 {
    color: #1F2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #8B5CF6;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(to bottom left, #3e1e8c, #673ab7) !important;
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background: #7C3AED;
}

.btn-outline-primary {
    --tb-btn-color: var(--tb-primary);
    --tb-btn-bg: transparent;
    --tb-btn-border-color: var(--tb-primary);
    --tb-btn-hover-bg: var(--tb-primary);
    --tb-btn-hover-border-color: var(--tb-primary);
    --tb-btn-focus-shadow-rgb: var(--tb-primary-rgb);
    --tb-btn-active-bg: var(--tb-primary);
    --tb-btn-active-border-color: var(--tb-primary);
    }

    .btn-subtle-primary {
    --tb-btn-color: var(--tb-primary);
    --tb-btn-bg: var(--tb-primary-bg-subtle);
    --tb-btn-border-color: transparent;
    --tb-btn-hover-bg: var(--tb-primary);
    --tb-btn-hover-border-color: transparent;
    --tb-btn-focus-shadow-rgb: var(--tb-primary-rgb);
    --tb-btn-active-bg: var(--tb-primary);
    --tb-btn-active-border-color: transparent;
    }

    .btn-ghost-primary {
    --tb-btn-color: var(--tb-primary);
    --tb-btn-bg: transparent;
    --tb-btn-border-color: transparent;
    --tb-btn-hover-color: var(--tb-primary);
    --tb-btn-hover-bg: var(--tb-primary-bg-subtle);
    --tb-btn-hover-border-color: transparent;
    --tb-btn-focus-shadow-rgb: var(--tb-primary-rgb);
    --tb-btn-active-color: var(--tb-primary);
    --tb-btn-active-bg: var(--tb-primary-bg-subtle);
    --tb-btn-active-border-color: transparent;
    }

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 2rem;
}

.download-form, .final-form {
    text-align: center;
}

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

.hero-image img {
    max-width: 70%;
    height: auto;
    border-radius: 12px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #F9FAFB;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.features-header p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #8B5CF6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background: linear-gradient(to bottom right, #3e1e8c, #673ab7) !important;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stats h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.stats p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: white;
}

.cta-header {
    text-align: center;
    margin-bottom: 60px;
}

.cta-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.cta-header p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-list h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.benefit-item i {
    color: #10B981;
    margin-right: 12px;
    font-size: 1.2rem;
}

.benefit-item span {
    color: #374151;
    font-weight: 500;
}

.final-form {
    background: #F9FAFB;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
}

.final-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: center;
}

.final-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 4px;
}

.final-stat-label {
    font-size: 0.875rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .final-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 0 16px;
    }
}