/* Hero Soluzioni */
.soluzioni-hero {
    background: #5c6a8b;
    padding: 20px 0 5px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumbs {
    color: #FFF;
    font-family: "Open Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.breadcrumbs a {
    color: #FFF;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumbs a:hover {
    opacity: 1;
}

.breadcrumbs span {
    color: #F77F29;
    font-weight: 700;
}

.soluzioni-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.soluzioni-hero-text {
    flex: 1;
}

.soluzioni-hero-text h1 {
    color: #FFF;
    font-family: "Abhaya Libre";
    font-size: 80px;
    font-weight: 400;
    line-height: 100%;
    margin: 0;
}

.soluzioni-hero-image {
    flex: 0 0 400px;
    position: relative;
    z-index: 20;
}

.soluzioni-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    z-index: 20;
}

/* Intro Soluzioni */
.soluzioni-intro {
    padding: 0;
    background: white;
}

.soluzioni-intro-box {
    background: #FFF;
    border-radius: 100px 100px 30px 30px;
    padding: 50px 30px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.soluzioni-intro-box h2 {
    color: #2E2E2E;
    font-family: "Abhaya Libre";
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 32px;
    text-align: start;
}

.soluzioni-intro-box h3 {
    color: #2E2E2E;
    font-family: "Abhaya Libre";
    font-size: 40px;
    font-style: normal;
    font-weight: 550;
    line-height: 100%;
    margin-bottom: 20px;
    text-align: start;
}

.soluzioni-intro-box p {
    color: #636363;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
    margin-bottom: 30px;
    text-align: left;
}

.soluzioni-intro-box li {
    color: #636363;
    font-family: "Open Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin-left: 30px;
    line-height: 160%;
}

/* Offerte */
.soluzioni-offerte {
    padding: 100px 0;
    background: white;
}

.offerte-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.offerta-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.offerta-card.featured {
    background: linear-gradient(135deg, #E8DFF5 0%, #D4C5E8 100%);
    transform: scale(1.02);
}

.offerta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.offerta-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.offerta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
}

.offerta-icon img {
    width: 100%;
    height: auto;
}

.offerta-card h3 {
    color: #2E2E2E;
    font-family: "Abhaya Libre";
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.offerta-card > p {
    color: #666;
    font-family: "Open Sans";
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid #E8E3F0;
}

/* Features list */
.offerta-features h4 {
    color: #362450;
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.offerta-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offerta-features li {
    color: #666;
    font-family: "Open Sans";
    font-size: 15px;
    line-height: 160%;
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
}

.offerta-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

.offerta-features li strong {
    color: #2E2E2E;
    font-weight: 600;
}

/* CTA Button */
.offerte-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-contattaci {
    display: inline-flex;
    padding: 16px 48px;
    background: #EF3E3E;
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 62, 62, 0.3);
}

.btn-contattaci:hover {
    background: #D63535;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 62, 62, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .offerte-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .offerta-card.featured {
        transform: scale(1);
    }
    
    .offerta-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .offerta-card {
        padding: 40px 30px;
    }
    
    .offerta-card h3 {
        font-size: 28px;
    }
    
    .offerta-features li {
        font-size: 14px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .soluzioni-hero-content {
        padding: 30px;
    }
    
    .soluzioni-hero-image {
        flex: 1;
        max-width: 300px;
    }
    
    .soluzioni-intro-box {
        padding: 60px 40px;
    }
    
    .offerte-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .soluzioni-hero-content {
        padding: 40px 50px;
    }

    .soluzioni-hero-text h1 {
        font-size: 70px;
    }

    .soluzioni-intro-box h2 {
        font-size: 54px;
    }
}

@media (max-width: 540px) {
    .soluzioni-hero-content {
        padding: 80px 30px;
    }
    
    .soluzioni-hero-text h1 {
        font-size: 60px;
    }

    .soluzioni-hero-image{
        display: none;
    }

    .soluzioni-hero-content {
        gap: none;
    }

    .soluzioni-intro-box h2{
        font-size: 34px;
    }
}

@media (max-width: 375px) {
    .soluzioni-hero-text h1 {
        font-size: 60px;
    }

    .soluzioni-intro-box h2 {
        font-size: 50px;
    }
}

@media (max-width: 320px) {
    .soluzioni-hero-text h1 {
        font-size: 50px;
    }

    .soluzioni-intro-box h2 {
        font-size: 45px;
    }
}