/* Features Page Styles */

.features-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 0 var(--spacing-md);
}

.features-content {
    text-align: center;
    max-width: 800px;
}

.features-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--black);
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--black), transparent);
}

.features-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray-light);
}

/* Responsive */
@media (max-width: 768px) {
    .features-title {
        font-size: 3rem;
    }

    .features-title::after {
        height: 2px;
    }

    .features-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .features-title {
        font-size: 2.5rem;
    }

    .features-subtitle {
        font-size: 1.125rem;
    }
}
