/* Features Page Specific Styles */

/* Hero Adjustment */
.features-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.15) 0%, transparent 70%);
}

.features-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Feature Block Layout */
.feature-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-block:last-child {
    border-bottom: none;
}

.feature-block.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: rgba(255,255,255,0.2);
}

/* Typography & Icons */
.feature-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Demo Button */
.btn-demo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background: transparent;
}

.btn-demo:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

/* Efficiency Table specific overrides if needed */
.efficiency-table-container {
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

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

    .feature-block, .feature-block.reverse {
        flex-direction: column;
        padding: 4rem 0;
        text-align: center; /* Center text on mobile for better flow */
        gap: 3rem;
    }

    .feature-text, .feature-visual {
        width: 100%;
    }

    .visual-placeholder {
        height: 250px;
    }

    .btn-demo {
        margin-top: 1rem;
    }
}
