/* Taskip CTA Section */
.ib-taskip-cta-section {
    padding: 80px 20px;
    background: #f8faff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    width: 100%;
}

/* Full width support */
.ib-taskip-cta-section.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.ib-taskip-cta-section.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ib-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Full width container adjustments */
.ib-taskip-cta-section.alignfull .ib-container {
    max-width: 1200px;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .ib-taskip-cta-section.alignfull .ib-container {
        padding: 0 20px;
    }
}

.ib-taskip-content {
    text-align: center;
}

/* Header Styles */
.ib-taskip-header {
    margin-bottom: 60px;
}

.ib-taskip-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.2;
}

.ib-taskip-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 20px;
    margin-top: 0;
}

.ib-taskip-description {
    font-size: 18px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Features Grid */
.ib-taskip-features {
    margin-bottom: 60px;
}

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

.ib-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.ib-feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1;
}

.ib-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    margin-top: 0;
}

.ib-feature-description {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 0;
}

/* Testimonial */
.ib-taskip-testimonial {
    margin-bottom: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.ib-testimonial-quote {
    margin-bottom: 30px;
    position: relative;
}

.ib-quote-mark {
    font-size: 80px;
    color: #667eea;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -20px;
    line-height: 1;
}

.ib-testimonial-quote p {
    font-size: 20px;
    font-style: italic;
    color: #4a5568;
    margin: 0;
    padding-left: 40px;
    line-height: 1.6;
}

.ib-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.ib-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ib-author-info strong {
    font-size: 16px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 5px;
}

.ib-author-info span {
    font-size: 14px;
    color: #4a5568;
}

/* CTA Actions */
.ib-taskip-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.ib-cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    min-width: 180px;
}

.ib-cta-primary {
    background-color: #667eea;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

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

.ib-cta-secondary {
    background-color: transparent;
    color: #667eea;
    border-color: #667eea;
}

.ib-cta-secondary:hover {
    background-color: #667eea;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ib-taskip-cta-section {
        padding: 60px 20px;
    }
    
    .ib-taskip-title {
        font-size: 36px;
    }
    
    .ib-taskip-subtitle {
        font-size: 20px;
    }
    
    .ib-taskip-description {
        font-size: 16px;
    }
    
    .ib-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ib-feature-card {
        padding: 25px;
    }
    
    .ib-taskip-testimonial {
        padding: 30px 25px;
        margin-bottom: 40px;
    }
    
    .ib-testimonial-quote p {
        font-size: 18px;
        padding-left: 30px;
    }
    
    .ib-taskip-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .ib-cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .ib-taskip-title {
        font-size: 28px;
    }
    
    .ib-taskip-subtitle {
        font-size: 18px;
    }
    
    .ib-feature-icon {
        font-size: 32px;
    }
    
    .ib-feature-title {
        font-size: 18px;
    }
    
    .ib-feature-description {
        font-size: 14px;
    }
    
    .ib-quote-mark {
        font-size: 60px;
        top: -15px;
        left: -15px;
    }
    
    .ib-testimonial-quote p {
        font-size: 16px;
        padding-left: 25px;
    }
}

/* Animation for feature cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ib-feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

.ib-feature-card:nth-child(1) { animation-delay: 0.1s; }
.ib-feature-card:nth-child(2) { animation-delay: 0.2s; }
.ib-feature-card:nth-child(3) { animation-delay: 0.3s; }
.ib-feature-card:nth-child(4) { animation-delay: 0.4s; }
.ib-feature-card:nth-child(5) { animation-delay: 0.5s; }
.ib-feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Print Styles */
@media print {
    .ib-taskip-cta-section {
        padding: 20px 0;
        background: #fff !important;
    }
    
    .ib-feature-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .ib-cta-button {
        display: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .ib-feature-card {
        border: 2px solid #000;
    }
    
    .ib-taskip-testimonial {
        border: 2px solid #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .ib-feature-card,
    .ib-cta-button {
        transition: none;
        animation: none;
    }
}

/* Focus Styles */
.ib-cta-button:focus,
.ib-cta-button:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}