:root {
    --primary-purple: #8425D6;  /* Main background purple */
    --darker-purple: #6B21A8;   /* Darker sections */
    --lighter-purple: #9333EA;  /* Lighter sections */
    --text-color: #ffffff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--primary-purple);
    color: var(--text-color);
    line-height: 1.5;
}

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

/* Header */
header {
    padding-top: 24px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 600;
}

.book-call {
    background: white;
    color: var(--primary-purple);
    padding: 8px 16px;
    border-radius: 100px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 16px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    text-align: center;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    max-width: 720px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.apply-now, .learn-more {
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
}

.apply-now {
    background: white;
    color: var(--primary-purple);
}

.learn-more {
    border: 1px solid white;
    color: white;
}

/* Features Section */
.features-section {
    background: var(--lighter-purple);
    width: 100%;
    margin-top: 80px;
    padding: 80px 0;
    position: relative;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 120px;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
    fill: none;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 280px;
    margin: 0 auto;
}

/* Custom SVG icons for the features */
.feature-icon.target-icon svg {
    stroke-width: 1.5;
}

.feature-icon.chart-icon svg {
    stroke-width: 2;
}

.feature-icon.community-icon svg {
    stroke-width: 1.5;
}

/* Network Section */
.network {
    background: var(--darker-purple);
    width: 100%;
    margin-top: 0;
    padding: 80px 0;
}

.network-container {
    width: var(--container-width);
    margin: 0 auto;
}

.network h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(2rem, 5vh, 3rem);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.benefit-card.full-width {
    grid-column: 1 / -1;
}

.benefit-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    display: inline-block;
}

/* Final CTA Section */
.final-cta {
    background: var(--primary-purple);
    width: 100%;
    padding: 80px 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--darker-purple);
    width: 100%;
    padding: 24px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 16px;
        padding: 0 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .apply-now, .learn-more {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .feature-card p {
        max-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .benefit-card.full-width {
        grid-column: auto;
    }
}
