/* ============================================
   NEW: CATEGORIZED SOLUTIONS SECTION
   ============================================ */

.solutions-categorized {
    padding: 100px 0;
    background: linear-gradient(155deg, #2a156f, #f37ab7);
    position: relative;

}

.solutions-categorized::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 118, 117, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.solutions-categorized-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header */
.solutions-categorized-header {
    text-align: center;
    margin-bottom: 80px;
    color: white;
}

.solutions-categorized-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.solutions-categorized-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Section */
.solutions-category {
    margin-bottom: 80px;
}

.solutions-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.solutions-category-icon {
    width: 60px;
    height: 60px;

    backdrop-filter: blur(10px);
    border-radius: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;


}

.solutions-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
  
    letter-spacing: 1px;
}

.solutions-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding-top: 25px; /* INCREASED - more space for badges */
}

.solutions-category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px;

    padding-bottom: 50px;

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;

    text-decoration: none;
    color: white;
    display: block;
}
/* ADD: Subtle arrow at bottom */
.solutions-category-card::after {
    content: '→';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.solutions-category-card:hover::after {
    color: #fd49a0;
    transform: translateX(5px);
}


.solutions-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

/* Card Badge */
.solutions-card-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    right: 20px;
    padding: 6px 16px;
 
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  
    z-index: 10;
}

.badge-popular {
    background: linear-gradient(135deg, #fd49a0, #ff6b9d);
}

.badge-new {
    background: linear-gradient(135deg, #2e52a6, #6b9aff);
}

.badge-future {
    background: linear-gradient(135deg, #166a7d, #00757b);
}

.badge-enterprise {
    background: linear-gradient(135deg, #fd49a0, #e84197);
}

.badge-smb {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}


.solutions-category-icon.icon-audits,
.solutions-category-icon.icon-engineering,
.solutions-category-icon.icon-growth {
    background: linear-gradient(
        135deg,
        rgba(253, 73, 160, 0.18),
        rgba(255, 107, 157, 0.18)
    );
    color: #ff6b9d;

    box-shadow: 0 6px 14px rgba(253, 73, 160, 0.18);
}



/* Card Content */
.solutions-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solutions-card-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.solutions-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solutions-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.solutions-card-features li i {
    color: #fd49a0;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.solutions-card-features li:last-child i {
    color: #06e286;
}

/* CTA Section */
.solutions-categorized-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.solutions-categorized-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.solutions-categorized-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.solutions-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fd49a0, #ff6b9d);
    color: white;
    padding: 18px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(253, 73, 160, 0.4);
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.solutions-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.solutions-cta-btn:hover::before {
    left: 100%;
}

.solutions-cta-btn:hover {
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(253, 73, 160, 0.6);
}

.solutions-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.solutions-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .solutions-categorized {
        padding: 60px 0;
    }

    .solutions-categorized-header {
        margin-bottom: 50px;
    }

    .solutions-category {
        margin-bottom: 60px;
    }

    .solutions-category-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .solutions-category-title {
        font-size: 1.5rem;
    }

    .solutions-category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solutions-category-card {
        padding: 25px;
    }

    .solutions-categorized-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .solutions-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .solutions-categorized-container {
        padding: 0 15px;
    }

    .solutions-category-card {
        padding: 20px;
    }

    .solutions-card-title {
        font-size: 1.2rem;
    }
}