/* ============================================
   SERVIZI - STILI GENERALI
============================================ */

/* HERO */
.service-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.service-hero .breadcrumb {
    background: transparent;
    padding: 0;
}
.service-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}
.service-hero .breadcrumb-item.active {
    color: #ffd700;
}
.service-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}
.service-hero .lead {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}
.feature-badge {
    background: rgba(255,255,255,0.1);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
}
.feature-badge i {
    margin-right: 8px;
}

.live-demo {
    background: rgba(0,0,0,0.3);
    padding: 15px 20px;
    border-radius: 12px;
    display: inline-block;
}
.live-demo .pulse {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* IMPORTANCE */
.importance-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}
.importance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}
.importance-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}
.importance-card p {
    color: #6c757d;
    font-size: 14px;
}

/* STEP */
.step-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #667eea;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}
.step-icon {
    font-size: 40px;
    color: #667eea;
    margin-bottom: 15px;
}
.step-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}
.step-card p {
    color: #6c757d;
    font-size: 14px;
}

/* FEATURES */
.feature-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-icon {
    font-size: 40px;
    color: #667eea;
    margin-bottom: 15px;
}
.feature-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    padding: 6px 0;
    color: #6c757d;
    font-size: 14px;
}
.feature-list li i {
    margin-right: 10px;
}

/* BENEFITS */
.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    display: flex;
    gap: 20px;
    height: 100%;
}
.benefit-card.success {
    border: 2px solid #28a745;
}
.benefit-icon {
    font-size: 40px;
    flex-shrink: 0;
}
.benefit-content h5 {
    font-weight: 700;
    margin-bottom: 15px;
}
.benefit-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.benefit-content ul li {
    padding: 5px 0;
    font-size: 14px;
}
.benefit-content ul li i {
    margin-right: 10px;
}

/* PRICING */
.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.pricing-card.featured {
    border: 2px solid #667eea;
    position: relative;
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #2c3e50;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}
.pricing-header h5 {
    font-weight: 700;
}
.pricing-header .price {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
}
.pricing-header .price span {
    font-size: 16px;
    font-weight: 400;
    color: #6c757d;
}
.pricing-header p {
    color: #6c757d;
    font-size: 14px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
}
.pricing-features li i {
    margin-right: 10px;
}

/* FAQ */
.accordion-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
}
.accordion-item:last-child {
    margin-bottom: 0;
}
.accordion-button {
    font-weight: 600;
    padding: 15px 20px;
}
.accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #667eea;
}
.accordion-body {
    padding: 20px;
    color: #6c757d;
}

/* CTA */
.service-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}
.service-cta h3 {
    font-weight: 700;
}
.service-cta p {
    opacity: 0.9;
}
.service-cta .btn-light {
    padding: 12px 35px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 32px;
    }
    .service-hero .lead {
        font-size: 18px;
    }
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    .pricing-card {
        margin-bottom: 20px;
    }
}

/* ============================================
   SERVIZI - STILI SPECIFICI
============================================ */

/* HERO */
.services-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(102,126,234,0.05);
    border-radius: 50%;
}
.services-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(102,126,234,0.05);
    border-radius: 50%;
}
.services-hero .breadcrumb {
    background: transparent;
    padding: 0;
}
.services-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}
.services-hero .breadcrumb-item.active {
    color: #ffd700;
}
.services-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}
.services-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}
.services-hero h1 span {
    color: #ffd700;
}
.services-hero .lead {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 25px;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}
.hero-stats .stat-item {
    text-align: center;
}
.hero-stats .stat-item .number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
}
.hero-stats .stat-item .label {
    font-size: 14px;
    opacity: 0.8;
}
.hero-image {
    position: relative;
    font-size: 120px;
    color: rgba(255,255,255,0.1);
}
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.floating-icons .float-icon {
    position: absolute;
    font-size: 30px;
    color: rgba(102,126,234,0.6);
    animation: float 6s ease-in-out infinite;
}
.floating-icons .float-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}
.floating-icons .float-icon:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
}
.floating-icons .float-icon:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 3s;
}
.floating-icons .float-icon:nth-child(4) {
    bottom: 15%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* WHY CARDS */
.why-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.why-icon {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 15px;
}
.why-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}
.why-card p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
}

/* SERVICE ITEMS */
.service-item {
    padding: 60px 0;
    border-bottom: 1px solid #f0f0f0;
}
.service-item:last-child {
    border-bottom: none;
}
.service-item.alternate {
    background: #f8f9fa;
    border-radius: 15px;
    margin: 20px 0;
    padding: 60px 40px;
}
.service-image {
    font-size: 100px;
    color: #667eea;
    opacity: 0.3;
}
.service-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 800;
    color: #e9ecef;
    line-height: 1;
    margin-bottom: 10px;
}
.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
.service-content