/**
 * Enhanced Service CTA Styles
 * リモートワークページのデザインを適用
 */

/* Override default service-cta styles to match remote-cta */
.service-cta.service-cta-enhanced {
    background: linear-gradient(135deg, var(--color-primary), #0284c7);
    color: white;
    padding: 120px 0;
}

.service-cta.service-cta-enhanced .cta-title {
    color: white;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-cta.service-cta-enhanced .cta-text {
    color: white;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Enhanced CTA specific styles */
.service-cta.service-cta-enhanced .cta-benefits {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin: 40px auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.service-cta.service-cta-enhanced .benefits-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.service-cta.service-cta-enhanced .benefits-icon {
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.service-cta.service-cta-enhanced .benefits-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: white;
}

.service-cta.service-cta-enhanced .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-cta.service-cta-enhanced .benefits-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.service-cta.service-cta-enhanced .benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 18px;
}

.service-cta.service-cta-enhanced .benefits-list li:last-child {
    margin-bottom: 0;
}

/* Button styles to match remote-cta */
.service-cta.service-cta-enhanced .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.service-cta.service-cta-enhanced .btn-primary-arrow {
    background-color: white;
    color: var(--color-primary);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-cta.service-cta-enhanced .btn-primary-arrow:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-cta.service-cta-enhanced .button-arrow {
    display: inline-flex;
    align-items: center;
}

.service-cta.service-cta-enhanced .button-arrow svg {
    width: 20px;
    height: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .service-cta.service-cta-enhanced {
        padding: 80px 0;
    }
    
    .service-cta.service-cta-enhanced .cta-title {
        font-size: 24px;
        line-height: 1.4;
    }
    
    .service-cta.service-cta-enhanced .cta-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 32px;
    }
    
    .service-cta.service-cta-enhanced .cta-benefits {
        padding: 20px;
        margin: 24px 0;
    }
    
    .service-cta.service-cta-enhanced .benefits-header {
        margin-bottom: 16px;
        gap: 8px;
    }
    
    .service-cta.service-cta-enhanced .benefits-icon {
        width: 20px;
        height: 20px;
    }
    
    .service-cta.service-cta-enhanced .benefits-title {
        font-size: 18px;
    }
    
    .service-cta.service-cta-enhanced .benefits-list li {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 10px;
        padding-left: 20px;
    }
    
    .service-cta.service-cta-enhanced .benefits-list li::before {
        font-size: 16px;
    }
    
    .service-cta.service-cta-enhanced .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 32px;
    }
    
    .service-cta.service-cta-enhanced .btn-primary-arrow {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 15px;
        padding: 14px 24px;
    }
}

@media (max-width: 375px) {
    .service-cta.service-cta-enhanced .cta-title {
        font-size: 22px;
    }
}