.ib-benefits-section {
    padding: 80px 20px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
}

.wp-block-sig-benefits-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.ib-benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: pulse 10s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
    100% { transform: scale(1); opacity: 0.5; }
}

.ib-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ib-benefits-section .ib-section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    margin-bottom: 80px;
}

.ib-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.ib-section-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.ib-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.ib-benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ib-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ib-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.ib-benefit-card:hover::before {
    transform: scaleX(1);
}

.ib-benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ib-benefit-emoji {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.ib-benefit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.ib-benefit-card:hover .ib-benefit-icon {
    transform: rotate(5deg) scale(1.05);
}

.ib-benefit-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.ib-benefit-description {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.ib-highlight-box {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
    margin-top: 60px;
}

.ib-highlight-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.ib-highlight-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.ib-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.ib-stat-item {
    text-align: center;
}

.ib-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.ib-stat-label {
    font-size: 16px;
    color: #666;
}

.ib-benefits-section .ib-cta-button-wrapper {
    margin-top: 30px;
}

.ib-benefits-section .ib-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.ib-benefits-section .ib-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    background-color: var(--cta-button-hover-color, #5a67d8) !important;
}

@media (max-width: 768px) {
    .ib-section-title {
        font-size: 32px;
    }
    
    .ib-benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ib-highlight-box {
        padding: 30px;
    }
    
    .ib-stat-number {
        font-size: 36px;
    }

    .ib-benefits-section {
        padding: 60px 20px;
    }
}