/* Feature Pages specific styling */

.page-header {
    background: radial-gradient(circle at center, rgba(73, 195, 179, 0.08), transparent 70%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-header p {
    color: #64748b;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-detail {
    padding: 80px 0;
    position: relative;
}

.feature-row {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

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

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.feature-text p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-list li {
    margin-bottom: 12px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--accent, #49c3b3);
    border-radius: 50%;
}

.feature-list li strong {
    color: #334155;
    font-weight: 600;
}

.feature-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    /* Border ring */
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    background: white;
}

.feature-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 60px -15px rgba(73, 195, 179, 0.15),
        0 0 0 1px rgba(73, 195, 179, 0.2);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Glassmorphism Card for Feature Row (Optional Variant) */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    color: var(--accent, #49c3b3);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(73, 195, 179, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 32px;
}

/* Mobile Responsive */
@media (max-width: 900px) {

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: left;
        /* Or center if preferred */
    }

    .feature-image:hover {
        transform: none;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }
}