.basic-landing {
    width: 100%;
    min-height: 100vh;
}

.basic-landing .hero-area {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.basic-landing .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.basic-landing .hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.basic-landing .hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.basic-landing .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.basic-landing .btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.basic-landing .btn-primary {
    background: white;
    color: #667eea;
}

.basic-landing .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.basic-landing .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.basic-landing .btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.basic-landing .features-area {
    padding: 80px 0;
    background: #f8fafc;
}

.basic-landing .section-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #667eea;
}

.basic-landing .features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.basic-landing .feature-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.basic-landing .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.basic-landing .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: bold;
}

.basic-landing .feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.basic-landing .feature-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.basic-landing .cta-area {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.basic-landing .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.basic-landing .cta-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.basic-landing .cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.basic-landing .btn-light {
    background: white;
    color: #667eea;
    font-size: 1.125rem;
    padding: 1.125rem 2.5rem;
}

.basic-landing .btn-light:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .basic-landing .hero-headline {
        font-size: 2.5rem;
    }
    
    .basic-landing .hero-subtext {
        font-size: 1.125rem;
    }
    
    .basic-landing .section-heading {
        font-size: 2rem;
    }
    
    .basic-landing .cta-content h2 {
        font-size: 2rem;
    }
    
    .basic-landing .features-list {
        grid-template-columns: 1fr;
    }
}