/* =========================================
   CONNECTED SOLUTIONS SECTION
   ========================================= */

.connected-solutions-section {
    padding: 120px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.connected-solutions-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT COLUMN - IMAGE COMPOSITION */
.composition-wrapper {
    position: relative;
    padding: 40px;
}

.main-image-box {
    position: relative;
    width: 85%;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.main-image-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.secondary-image-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    z-index: 3;
    border: 8px solid #ffffff;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.secondary-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Background Decoration */
.composition-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20px;
    width: 150px;
    height: 150px;
    background: #0f172a;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.03;
}

/* RIGHT COLUMN - CONTENT */
.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #f1f5f9;
    padding: 6px 16px;
    border-radius: 40px;
    width: fit-content;
}

.about-badge .icon {
    width: 8px;
    height: 8px;
    background: #0f172a;
    border-radius: 50%;
}

.solutions-content h2 {
    font-size: 3rem;
    color: #0f172a;
    line-height: 1.1;
    margin: 0;
    font-weight: 900;
}

.solutions-content .desc {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Features List Grid */
.features-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item .check-icon {
    width: 24px;
    height: 24px;
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
    flex-shrink: 0;
}

.feature-item p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

/* Action Area */
.action-profile-row {
    display: flex;
    align-items: center;
    gap: 40px;
    border-top: 1px solid #f1f5f9;
    padding-top: 40px;
}

.btn-explore {
    background: #0f172a;
    color: white;
    padding: 18px 40px;
    /* Slight adjust to match pill proportions */
    border-radius: 50px;
    /* Pill Shape like Hero */
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    /* Match Hero */
    letter-spacing: 0.05em;
    /* Match Hero */
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-explore:hover {
    background: #334155;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
}

.founder-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.founder-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.generic-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0f172a;
    border: 1px solid #e2e8f0;
}

.founder-profile .info h5 {
    margin: 0;
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 800;
}

.founder-profile .info p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .connected-solutions-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .solutions-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .features-list-grid {
        grid-template-columns: 1fr;
    }

    .action-profile-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}