/* Features page styles */

.features-body {
    background-color: #0A0A0A;
    color: #FFFFFF;
    font-size: 16px;
}

/* Header */
.features-header {
    padding: 1.5rem 0;
    /* Border is now controlled by important.css */
}

.features-header .social-icons {
    display: flex;
    gap: 1rem;
}

/* Main content */
.features-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero section */
.features-hero {
    text-align: center;
    padding: 5rem 0 3rem;
}

.features-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 4rem 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background-color: #111;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card h2 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-align: center;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* Why Scaleify section */
.why-scaleify {
    padding: 4rem 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    background-color: #111;
    border: 1px solid #222;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.why-scaleify h2 {
    text-align: center;
    font-size: 2.7rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 90%;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* CTA section */
.cta-section {
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    font-size: 2.7rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    background-color: #3B82F6;
    color: #FFFFFF;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2563EB;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        height: auto;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-hero h1 {
        font-size: 2.7rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
} 