/**
 * Recruiter Carousel Styles
 * Auto-sliding carousel for membership conversion page
 */

/* ============================================
   Benefit hero + grid (replaces carousel)
   ============================================ */
.sffc-recruiter-carousel-wrapper .sffc-benefit-hero {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 32px;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(13, 53, 62, 0.07);
    color: #0d353e;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-title {
    font-size: 34px;
    margin: 0 0 12px;
    color: #0d353e;
    line-height: 1.15;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-subtitle {
    font-size: 18px;
    margin: 0;
    color: #4b6b74;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
    grid-auto-rows: 1fr;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    display: flex;
    gap: 18px;
    border: 1px solid rgba(13, 53, 62, 0.08);
    box-shadow: 0 12px 30px rgba(13, 53, 62, 0.06);
    height: 100%;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-card--highlight {
    background: linear-gradient(135deg, #0d353e 0%, #0f5663 100%);
    border-color: rgba(199, 255, 230, 0.4);
    color: #f0fdfa;
    box-shadow: 0 18px 45px rgba(13, 53, 62, 0.25);
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-card--highlight .sffc-benefit-icon {
    background: rgba(199, 255, 230, 0.15);
    color: #c7ffe6;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-card--highlight h3,
.sffc-recruiter-carousel-wrapper .sffc-benefit-card--highlight p,
.sffc-recruiter-carousel-wrapper .sffc-benefit-card--highlight .sffc-benefit-content h3,
.sffc-recruiter-carousel-wrapper .sffc-benefit-card--highlight .sffc-benefit-content p {
    color: #ffffff;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(13, 53, 62, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d353e;
    flex-shrink: 0;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-icon svg {
    width: 22px;
    height: 22px;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-content h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #0d353e;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-content p {
    margin: 0;
    color: #4b6b74;
    font-size: 15px;
    line-height: 1.45;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-cta {
    text-align: center;
    margin-bottom: 50px;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-cta .sffc-carousel-cta-btn {
    font-size: 16px;
    padding: 14px 28px;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-contact {
    margin: 0 auto 48px;
    padding: 28px 32px;
    border-radius: 20px;
    background: #f0f7f8;
    border: 1px solid rgba(13, 53, 62, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-contact-copy {
    flex: 1 1 280px;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-contact-copy h4 {
    margin: 0 0 6px;
    font-size: 20px;
    color: #0d353e;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-contact-copy p {
    margin: 0;
    color: #4b6b74;
    font-size: 15px;
    line-height: 1.45;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-contact-links {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(13, 53, 62, 0.12);
    text-decoration: none;
    color: #0d353e;
    background: #fff;
    font-weight: 600;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-contact-link svg {
    width: 20px;
    height: 20px;
    color: #0d353e;
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-contact-link:hover {
    border-color: #0d353e;
    transform: translateY(-1px);
}

.sffc-recruiter-carousel-wrapper .sffc-benefit-contact-note {
    margin: 4px 0 0;
    font-size: 13px;
    color: #4b6b74;
}

/* ============================================
   Recruiter card grid (legacy selectors no longer used)
   ============================================ */
.sffc-recruiter-carousel-wrapper .sffc-carousel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-recruiter-card {
    position: relative;
    display: block;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-recruiter-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-card-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(13, 53, 62, 0.12);
    border-radius: 14px;
    background: linear-gradient(135deg, #fbfdff 0%, #f3f7fb 100%);
    transition: all 0.2s ease;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-recruiter-card:hover .sffc-carousel-card-inner {
    border-color: var(--senna-dark, #0D353E);
    box-shadow: 0 10px 24px rgba(13, 53, 62, 0.12);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-recruiter-card input:checked + .sffc-carousel-card-inner {
    border-color: var(--senna-dark, #0D353E);
    background: #fff;
    box-shadow: 0 12px 30px rgba(13, 53, 62, 0.18);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-check-icon {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(13, 53, 62, 0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #fff;
    transition: all 0.2s ease;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-check-icon::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid transparent;
    border-bottom: 2px solid transparent;
    transform: rotate(-45deg);
    transition: border-color 0.2s ease;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-recruiter-card:hover .sffc-carousel-check-icon {
    border-color: rgba(13, 53, 62, 0.6);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-recruiter-card input:checked + .sffc-carousel-card-inner .sffc-carousel-check-icon {
    background: var(--senna-dark, #0D353E);
    border-color: var(--senna-dark, #0D353E);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-recruiter-card input:checked + .sffc-carousel-card-inner .sffc-carousel-check-icon::after {
    border-color: #fff;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--senna-dark, #0D353E);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-name {
    font-weight: 600;
    color: var(--senna-dark, #0D353E);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-firm,
.sffc-recruiter-carousel-wrapper .sffc-carousel-role {
    font-size: 13px;
    color: var(--senna-text-muted, #5B7C85);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-role-company {
    font-weight: 500;
    margin-left: 4px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--senna-text-muted, #5B7C85);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-meta-item svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-meta-salary {
    color: var(--senna-dark, #0D353E);
    font-weight: 600;
}

/* ============================================
   Carousel Wrapper
   ============================================ */
.sffc-recruiter-carousel-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* ============================================
   Pricing Plans Section
   ============================================ */
.sffc-recruiter-carousel-wrapper .sffc-carousel-plans {
    margin-top: 60px;
    background: #f6fbfd;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(13, 53, 62, 0.08);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plans-header {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plans-header h3 {
    font-size: 30px;
    color: #0d353e;
    margin-bottom: 10px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plans-header p {
    margin: 0;
    color: #4a6870;
    font-size: 16px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid rgba(13, 53, 62, 0.08);
    box-shadow: 0 12px 30px rgba(13, 53, 62, 0.08);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-name {
    font-size: 18px;
    font-weight: 600;
    color: #0d353e;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-audience {
    font-size: 13px;
    color: #4a6870;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-amount {
    font-size: 28px;
    font-weight: 700;
    color: #0d353e;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-cycle {
    font-size: 13px;
    color: #4a6870;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-tagline {
    margin: 0;
    font-size: 14px;
    color: #486066;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #324b51;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-features svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #10b981;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    background: #0d353e;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(13, 53, 62, 0.15);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-btn svg {
    width: 16px;
    height: 16px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan--premium {
    background: #0d353e;
    color: #ffffff;
    border-color: rgba(199, 255, 230, 0.4);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan--premium .sffc-carousel-plan-name,
.sffc-recruiter-carousel-wrapper .sffc-carousel-plan--premium .sffc-carousel-plan-amount,
.sffc-recruiter-carousel-wrapper .sffc-carousel-plan--premium .sffc-carousel-plan-cycle,
.sffc-recruiter-carousel-wrapper .sffc-carousel-plan--premium .sffc-carousel-plan-tagline,
.sffc-recruiter-carousel-wrapper .sffc-carousel-plan--premium .sffc-carousel-plan-audience,
.sffc-recruiter-carousel-wrapper .sffc-carousel-plan--premium .sffc-carousel-plan-features li {
    color: #f0fdfa;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan--premium .sffc-carousel-plan-features svg {
    color: #c7ffe6;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-btn--premium {
    background: #c7ffe6;
    color: #0d353e;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-btn--premium:hover {
    box-shadow: 0 12px 22px rgba(199, 255, 230, 0.4);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-plan-form {
    display: none;
}

.sffc-carousel-plan-modal .sffc-carousel-modal-content {
    max-width: 720px;
    text-align: left;
}

.sffc-carousel-plan-modal-summary h2 {
    margin: 0 0 10px;
    font-size: 26px;
    color: #0d353e;
}

.sffc-carousel-plan-modal-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: #0d353e;
}

.sffc-carousel-plan-modal-price .amount {
    font-size: 30px;
    font-weight: 700;
}

.sffc-carousel-plan-modal-price .cycle {
    font-size: 14px;
    color: #4a6870;
}

.sffc-carousel-plan-modal-summary p {
    margin: 8px 0 0;
    color: #486066;
}

.sffc-carousel-plan-modal-features {
    margin: 20px 0;
}

.sffc-carousel-plan-modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sffc-carousel-plan-modal-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #324b51;
}

.sffc-carousel-plan-modal-features svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
}

.sffc-carousel-plan-modal-form {
    margin-top: 10px;
}

.sffc-carousel-plan-modal-form form {
    background: #f8fbfc;
    padding: 20px;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(13, 53, 62, 0.05);
}

.sffc-carousel-plan-modal-form .mepr-price-box-button,
.sffc-carousel-plan-modal-form button,
.sffc-carousel-plan-modal-form input[type="submit"] {
    border-radius: 999px !important;
}

@media (max-width: 640px) {
    .sffc-recruiter-carousel-wrapper .sffc-carousel-plans {
        padding: 30px 20px;
    }

    .sffc-recruiter-carousel-wrapper .sffc-carousel-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .sffc-recruiter-carousel-wrapper .sffc-carousel-plan-card {
        padding: 20px;
    }

    .sffc-recruiter-carousel-wrapper .sffc-carousel-card {
        padding: 24px 16px;
    }
}

@media (max-width: 1024px) {
    .sffc-recruiter-carousel-wrapper .sffc-carousel-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* ============================================
   Carousel Header
   ============================================ */
.sffc-recruiter-carousel-wrapper .sffc-carousel-header {
    text-align: center;
    margin-bottom: 40px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* ============================================
   Carousel Container
   ============================================ */
.sffc-recruiter-carousel-wrapper .sffc-recruiter-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-card {
    min-width: 100%;
    flex-shrink: 0;
    padding: 40px;
}

/* ============================================
   Navigation Arrows
   ============================================ */
.sffc-recruiter-carousel-wrapper .sffc-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-nav:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-nav--prev {
    left: 20px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-nav--next {
    right: 20px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-nav svg {
    width: 20px;
    height: 20px;
    color: #374151;
}

/* ============================================
   Carousel Indicators
   ============================================ */
.sffc-recruiter-carousel-wrapper .sffc-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-indicator:hover {
    background: #9ca3af;
    transform: scale(1.2);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-indicator.active {
    width: 24px;
    border-radius: 4px;
    background: #0d353e;
}

/* ============================================
   Bulk Action Bar
   ============================================ */
.sffc-recruiter-carousel-wrapper .sffc-carousel-bulk-bar {
    margin-bottom: 30px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #fff;
    color: #0d353e;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #0d353e;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-cta-btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Membership Modal
   ============================================ */
.sffc-recruiter-carousel-wrapper .sffc-carousel-membership-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-membership-modal.show {
    opacity: 1;
    visibility: visible;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-membership-modal.show .sffc-carousel-modal-content {
    transform: scale(1);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-close svg {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #0d353e 0%, #1a4d5c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 12px 0;
    color: #1a1a1a;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 32px 0;
}

/* ============================================
   Modal Benefits
   ============================================ */
.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-benefits {
    margin: 0 0 32px 0;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-benefit {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    background: #f9fafb;
    margin-bottom: 12px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-benefit svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #10b981;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-benefit h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1a1a1a;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-benefit p {
    font-size: 14px;
    margin: 0;
    color: #6b7280;
}

/* ============================================
   Modal Stats
   ============================================ */
.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 0 32px 0;
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-stat {
    text-align: center;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #0d353e;
    margin-bottom: 4px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-stat-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Modal Actions
   ============================================ */
.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-btn {
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-btn--primary {
    background: linear-gradient(135deg, #0d353e 0%, #1a4d5c 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 53, 62, 0.3);
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 53, 62, 0.4);
    color: #fff;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-btn--secondary {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-btn--secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.sffc-recruiter-carousel-wrapper .sffc-carousel-modal-btn svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .sffc-carousel-title {
        font-size: 28px;
    }

    .sffc-carousel-subtitle {
        font-size: 16px;
    }

    .sffc-carousel-card {
        padding: 24px;
    }

    .sffc-carousel-nav {
        width: 40px;
        height: 40px;
    }

    .sffc-carousel-nav--prev {
        left: 10px;
    }

    .sffc-carousel-nav--next {
        right: 10px;
    }

    .sffc-benefit-contact {
        padding: 20px;
    }

    .sffc-carousel-modal-content {
        padding: 32px 24px;
    }

    .sffc-carousel-modal-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sffc-carousel-modal-content h2 {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .sffc-recruiter-carousel-wrapper .sffc-benefit-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
