.seven-solutions-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #111113;
}

.seven-solutions .section-header {
text-align: center;
margin-bottom: 64px;
}

.seven-solutions .section-title {
font-size: 48px;
font-weight: 700;
line-height: 1.1;
letter-spacing: .03em;
color: #ffffff;
margin-bottom: 16px;
}

.seven-solutions .section-subtitle {
font-size: 18px;
line-height: 1.6;
color: #dadada;
max-width: 600px;
margin: 0 auto;
}

.seven-solutions-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 24px;
}

.seven-solutions-card {
background: #1a1c1e;
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 32px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
animation: fade-in-up 0.6s ease-out both;
display: flex;
flex-direction: column;
}

.seven-solutions-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: #daff01;
opacity: 0;
transition: opacity 0.3s ease;
}

.seven-solutions-card:hover {
transform: translateY(-8px);
border-color: #daff01;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.seven-solutions-card:hover::before {
opacity: 1;
}

.seven-solutions-icon {
width: 64px;
height: 64px;
background: rgba(218, 255, 1, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
color: #daff01;
transition: all 0.3s ease;
}

.seven-solutions-card:hover .seven-solutions-icon {
transform: scale(1.1);
background: #daff01;
color: #111113;
}


.seven-solutions-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.seven-solutions-description {
font-size: 16px;
line-height: 1.6;
color: #dadada;
margin-bottom: 24px;
flex: 1;
}

.seven-solutions-features {
list-style: none;
margin-bottom: 24px;
}

.seven-solutions-features li {
font-size: 14px;
color: #a1a1aa;
padding: 8px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seven-solutions-features li:last-child {
border-bottom: none;
}

.seven-solutions-features li::before {
content: '✓';
color: #daff01;
font-weight: 700;
margin-right: 8px;
}

.seven-solutions-cta {
background: transparent;
color: #daff01;
border: none;
font-size: 16px;
font-weight: 600;
cursor: pointer;
padding: 0;
transition: all 0.2s ease;
text-align: left;
text-decoration: none;
}

.seven-solutions-cta:hover {
transform: translateX(4px);
}

@media only screen and (max-width: 1024px) {
    .seven-solutions-title {
        font-size: 30px;
    }
}



    @media (max-width: 767px) {
        .seven-solutions-section {
            padding: 40px 0;
        }

        .seven-solutions-title {
            font-size: 24px;
            line-height: 1.2;
        }

        .seven-solutions-grid {
            grid-template-columns: 1fr;
        }
    }