/**
 * Certifications Pixfeed - Styles CSS
 * Version: 1.8 - Version finale avec toutes les corrections
 * Préfixe: .pixfeed-certifications-wrapper et .pf- pour éviter les conflits
 */

/* =============================================
   RESET & VARIABLES
   ============================================== */
.pixfeed-certifications-wrapper {
    --pf-purple: #8e44ad;
    --pf-purple-light: #9b59b6;
    --pf-purple-dark: #7d3c98;
    --pf-purple-soft: rgba(142, 68, 173, 0.08);
    --pf-dark: #2c2c2c;
    --pf-gray: #6c6c6c;
    --pf-light: #f9f9f9;
    --pf-white: #ffffff;
    --pf-success: #2e7d32;
    --pf-success-light: #e8f5e8;
    --pf-border: rgba(0,0,0,0.08);
    --pf-border-light: #e3f2fd;
    
    /* Isolation anti-conflit Uncode */
    isolation: isolate !important;
    position: relative !important;
    z-index: 10 !important;
}

.pixfeed-certifications-wrapper * {
    box-sizing: border-box;
}

/* =============================================
   LAYOUT
   ============================================== */
.pixfeed-certifications-wrapper .certifications-container {
    position: relative;
    padding: 80px 0;
    background: var(--pf-white);
}

.pixfeed-certifications-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   HERO SECTION
   ============================================== */
.pixfeed-certifications-wrapper .hero-section {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.pixfeed-certifications-wrapper .hero-section h1 {
    font-size: 3.5rem !important;
    font-weight: 200 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 20px !important;
    background: linear-gradient(135deg, var(--pf-dark) 0%, var(--pf-purple) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.2 !important;
}

.pixfeed-certifications-wrapper .hero-section p {
    font-size: 1.25rem !important;
    color: var(--pf-gray) !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

/* =============================================
   NAVIGATION
   ============================================== */
.pixfeed-certifications-wrapper .cert-navigation {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-bottom: 60px !important;
    padding: 8px !important;
    background: var(--pf-light) !important;
    border-radius: 100px !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.pixfeed-certifications-wrapper .nav-btn {
    padding: 12px 28px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 100px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: var(--pf-gray) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    font-family: inherit !important;
}

.pixfeed-certifications-wrapper .nav-btn:hover {
    color: var(--pf-purple) !important;
}

.pixfeed-certifications-wrapper .nav-btn.active {
    background: var(--pf-purple) !important;
    color: var(--pf-white) !important;
    transform: scale(1.05) !important;
}

/* =============================================
   SECTIONS
   ============================================== */
.pixfeed-certifications-wrapper .cert-section {
    display: none;
    animation: pf-fadeInSection 0.5s ease-out forwards;
}

.pixfeed-certifications-wrapper .cert-section.active {
    display: block !important;
}

@keyframes pf-fadeInSection {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   OVERVIEW GRID
   ============================================== */
.pixfeed-certifications-wrapper .overview-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 24px !important;
    margin-bottom: 60px !important;
}

.pixfeed-certifications-wrapper .overview-card {
    background: var(--pf-white) !important;
    border: 1px solid var(--pf-border) !important;
    border-radius: 16px !important;
    padding: 32px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
}

.pixfeed-certifications-wrapper .overview-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--pf-purple), var(--pf-purple-light)) !important;
    transform: translateX(-100%) !important;
    transition: transform 0.3s ease !important;
}

.pixfeed-certifications-wrapper .overview-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08) !important;
    border-color: var(--pf-purple-soft) !important;
}

.pixfeed-certifications-wrapper .overview-card:hover::before {
    transform: translateX(0) !important;
}

.pixfeed-certifications-wrapper .overview-icon {
    width: 48px !important;
    height: 48px !important;
    background: var(--pf-purple-soft) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    font-size: 1.5rem !important;
    color: var(--pf-purple) !important;
    font-weight: bold !important;
}

.pixfeed-certifications-wrapper .overview-card h3 {
    font-size: 1.25rem !important;
    margin-bottom: 12px !important;
    font-weight: 600 !important;
    color: var(--pf-dark) !important;
}

.pixfeed-certifications-wrapper .overview-card p {
    color: var(--pf-gray) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* =============================================
   CERTIFICATION SHOWCASE
   ============================================== */
.pixfeed-certifications-wrapper .cert-showcase {
    background: linear-gradient(135deg, var(--pf-purple-soft) 0%, transparent 100%) !important;
    border-radius: 24px !important;
    padding: 48px !important;
    margin-bottom: 48px !important;
    position: relative !important;
    overflow: hidden !important;
}

.pixfeed-certifications-wrapper .cert-showcase::after {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    right: -10% !important;
    width: 400px !important;
    height: 400px !important;
    background: radial-gradient(circle, var(--pf-purple-soft) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    opacity: 0.3 !important;
}

.pixfeed-certifications-wrapper .showcase-content {
    position: relative !important;
    z-index: 1 !important;
}

.pixfeed-certifications-wrapper .showcase-badge {
    width: 64px !important;
    height: 64px !important;
    background: var(--pf-white) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 24px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

.pixfeed-certifications-wrapper .showcase-badge img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
}

.pixfeed-certifications-wrapper .cert-showcase h3 {
    font-size: 1.75rem !important;
    margin-bottom: 16px !important;
    color: var(--pf-dark) !important;
    font-weight: 600 !important;
}

.pixfeed-certifications-wrapper .cert-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 20px 0 !important;
}

.pixfeed-certifications-wrapper .cert-tag {
    padding: 6px 16px !important;
    background: var(--pf-white) !important;
    border-radius: 100px !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: var(--pf-purple) !important;
    border: 1px solid var(--pf-purple-soft) !important;
}

/* =============================================
   TECH CARDS - AVEC PRÉFIXE PF ANTI-CONFLIT
   ============================================== */
.pixfeed-certifications-wrapper .tech-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: 20px !important;
    margin-top: 40px !important;
}

.pixfeed-certifications-wrapper .pf-tech-card {
    background: var(--pf-white) !important;
    border: 1px solid var(--pf-border) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    z-index: 1 !important;
    isolation: isolate !important;
}

.pixfeed-certifications-wrapper .pf-tech-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06) !important;
    transform: translateY(-2px) !important;
}

.pixfeed-certifications-wrapper .pf-tech-header {
    padding: 20px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer !important;
    background: var(--pf-white) !important;
    transition: background 0.2s ease !important;
    pointer-events: auto !important;
}

.pixfeed-certifications-wrapper .pf-tech-header:hover {
    background: var(--pf-light) !important;
}

.pixfeed-certifications-wrapper .pf-tech-info {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    pointer-events: none !important;
}

.pixfeed-certifications-wrapper .pf-tech-logo {
    width: 40px !important;
    height: 40px !important;
    background: var(--pf-purple-soft) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pixfeed-certifications-wrapper .pf-tech-logo img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
}

.pixfeed-certifications-wrapper .pf-tech-name {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: var(--pf-dark) !important;
}

.pixfeed-certifications-wrapper .pf-expand-icon {
    width: 24px !important;
    height: 24px !important;
    color: var(--pf-gray) !important;
    transition: transform 0.3s ease !important;
    pointer-events: none !important;
}

.pixfeed-certifications-wrapper .pf-tech-card.expanded .pf-expand-icon {
    transform: rotate(180deg) !important;
}

.pixfeed-certifications-wrapper .pf-tech-content {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: var(--pf-light) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.pixfeed-certifications-wrapper .pf-tech-card:not(.expanded) .pf-tech-content {
    max-height: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.pixfeed-certifications-wrapper .pf-tech-card.expanded .pf-tech-content {
    max-height: 500px !important;
    overflow: visible !important;
}

.pixfeed-certifications-wrapper .pf-tech-details {
    padding: 24px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.pixfeed-certifications-wrapper .pf-tech-details h4 {
    font-size: 1rem !important;
    color: var(--pf-purple) !important;
    margin-bottom: 12px !important;
    font-weight: 600 !important;
}

.pixfeed-certifications-wrapper .pf-tech-details p {
    color: var(--pf-gray) !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
}

.pixfeed-certifications-wrapper .pf-tech-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
}

.pixfeed-certifications-wrapper .pf-tech-badge {
    padding: 4px 12px !important;
    background: var(--pf-success-light) !important;
    color: var(--pf-success) !important;
    border-radius: 15px !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
}

.pixfeed-certifications-wrapper .pf-tech-links {
    display: flex !important;
    gap: 20px !important;
}

.pixfeed-certifications-wrapper .pf-tech-link {
    color: var(--pf-purple) !important;
    text-decoration: none !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    transition: gap 0.2s ease !important;
}

.pixfeed-certifications-wrapper .pf-tech-link:hover {
    gap: 8px !important;
    color: var(--pf-purple-dark) !important;
}

/* =============================================
   CTA SECTION
   ============================================== */
.pixfeed-certifications-wrapper .cta-section {
    text-align: center !important;
    padding: 60px 40px !important;
    background: #f8f9fa !important;
    border: 2px solid #e3f2fd !important;
    border-radius: 15px !important;
    margin-top: 80px !important;
    position: relative !important;
}

.pixfeed-certifications-wrapper .cta-badge {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    margin: 0 auto 24px auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: linear-gradient(145deg, #ffffff, #e6e6e6) !important;
    box-shadow: 8px 8px 16px #d1d1d1, -8px -8px 16px #ffffff !important;
}

.pixfeed-certifications-wrapper .cta-badge img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
}

.pixfeed-certifications-wrapper .cta-content {
    position: relative !important;
    z-index: 1 !important;
}

.pixfeed-certifications-wrapper .cta-section h2 {
    font-size: 1.5rem !important;
    color: var(--pf-dark) !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
}

.pixfeed-certifications-wrapper .cta-section p {
    font-size: 1rem !important;
    color: var(--pf-gray) !important;
    max-width: 600px !important;
    margin: 0 auto 16px !important;
    line-height: 1.7 !important;
}

.pixfeed-certifications-wrapper .cta-button {
    display: inline-block !important;
    padding: 16px 40px !important;
    background: var(--pf-purple) !important;
    color: var(--pf-white) !important;
    border: none !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.pixfeed-certifications-wrapper .cta-button:hover {
    background: var(--pf-purple-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3) !important;
    color: var(--pf-white) !important;
    text-decoration: none !important;
}

/* =============================================
   POPUP FORMULAIRE PROJET - VERSION FINALE CORRIGÉE
   ============================================== */
.pf-popup-overlay {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 999999 !important;
    justify-content: center !important;
    align-items: center !important;
    backdrop-filter: blur(5px) !important;
}

.pf-popup-overlay.active {
    display: flex !important;
}

.pf-popup-content {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 40px !important;
    padding-top: 44px !important; /* Espace pour la barre en haut */
    width: 90% !important;
    max-width: 600px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    position: relative !important;
    animation: slideUp 0.3s ease-out !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2) !important;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pf-close-popup {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    font-size: 28px !important;
    color: #6c6c6c !important;
    cursor: pointer !important;
    transition: color 0.3s !important;
    background: none !important;
    border: none !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
    z-index: 100 !important;
}

.pf-close-popup:hover {
    color: #8e44ad !important;
}

.pf-popup-content h2 {
    font-size: 28px !important;
    color: #2c2c2c !important;
    margin-bottom: 10px !important;
    text-align: center !important;
    font-weight: 600 !important;
}

.pf-gradient-text {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.pf-popup-subtitle {
    text-align: center !important;
    color: #6c6c6c !important;
    margin-bottom: 30px !important;
    font-size: 16px !important;
}

/* =============================================
   FORMULAIRE MULTI-ÉTAPES - VERSION FINALE
   ============================================== */
.pf-project-form {
    position: static !important;
    background: #ffffff !important;
    margin-top: 10px !important;
}

.pf-form-step {
    display: none !important;
    animation: fadeIn 0.3s ease-out !important;
    background: #ffffff !important;
    position: relative !important;
    z-index: 10 !important;
}

.pf-form-step.active {
    display: block !important;
}

.pf-form-step,
.pf-form-step * {
    position: relative !important;
    z-index: 10 !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.pf-form-group {
    margin-bottom: 25px !important;
    position: relative !important;
    z-index: 100 !important;
    background: #ffffff !important;
}

.pf-form-group label {
    display: block !important;
    margin-bottom: 12px !important;
    color: #2c2c2c !important;
    font-weight: 500 !important;
    font-size: 15px !important;
}

/* Grille de checkboxes */
.pf-checkbox-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 12px !important;
    position: relative !important;
    z-index: 100 !important;
    background: #ffffff !important;
}

.pf-checkbox-item {
    display: flex !important;
    align-items: center !important;
    padding: 14px 16px !important;
    border: 2px solid rgba(0,0,0,0.08) !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    background: #ffffff !important;
    position: relative !important;
    z-index: 100 !important;
}

.pf-checkbox-item:hover {
    border-color: #9b59b6 !important;
    background: rgba(142, 68, 173, 0.08) !important;
}

.pf-checkbox-item input[type="checkbox"] {
    margin-right: 10px !important;
    width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
    accent-color: #8e44ad !important;
}

.pf-checkbox-item input[type="checkbox"]:checked + .pf-checkbox-label {
    color: #8e44ad !important;
    font-weight: 600 !important;
}

.pf-checkbox-item:has(input:checked) {
    border-color: #8e44ad !important;
    background: rgba(142, 68, 173, 0.08) !important;
}

.pf-checkbox-label {
    cursor: pointer !important;
    user-select: none !important;
    font-size: 14px !important;
    color: #2c2c2c !important;
}

/* Grille de radio buttons */
.pf-radio-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
    gap: 12px !important;
    position: relative !important;
    z-index: 100 !important;
    background: #ffffff !important;
}

.pf-radio-item {
    display: flex !important;
    align-items: center !important;
    padding: 14px 16px !important;
    border: 2px solid rgba(0,0,0,0.08) !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    background: #ffffff !important;
    position: relative !important;
    z-index: 100 !important;
}

.pf-radio-item:hover {
    border-color: #9b59b6 !important;
    background: rgba(142, 68, 173, 0.08) !important;
}

.pf-radio-item input[type="radio"] {
    margin-right: 10px !important;
    width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
    accent-color: #8e44ad !important;
}

.pf-radio-item input[type="radio"]:checked + .pf-radio-label {
    color: #8e44ad !important;
    font-weight: 600 !important;
}

.pf-radio-item:has(input:checked) {
    border-color: #8e44ad !important;
    background: rgba(142, 68, 173, 0.08) !important;
}

.pf-radio-label {
    cursor: pointer !important;
    user-select: none !important;
    font-size: 14px !important;
    color: #2c2c2c !important;
}

/* Champ "Autre" */
.pf-other-input {
    margin-top: 12px !important;
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid #8e44ad !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    transition: all 0.3s !important;
    background: rgba(142, 68, 173, 0.08) !important;
    display: none !important;
    color: #2c2c2c !important;
    position: relative !important;
    z-index: 20 !important;
}

/* Textarea et inputs */
.pf-form-group textarea,
.pf-form-group input[type="text"],
.pf-form-group input[type="email"],
.pf-form-group input[type="tel"] {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid rgba(0,0,0,0.08) !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    transition: all 0.3s !important;
    background: #ffffff !important;
    resize: vertical !important;
    color: #2c2c2c !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    position: relative !important;
    z-index: 20 !important;
    opacity: 1 !important;
}

.pf-form-group textarea:focus,
.pf-form-group input:focus {
    outline: none !important;
    border-color: #8e44ad !important;
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1) !important;
}

/* Navigation du formulaire */
.pf-form-nav {
    display: flex !important;
    justify-content: space-between !important;
    margin-top: 30px !important;
    gap: 12px !important;
    position: relative !important;
    z-index: 15 !important;
}

.pf-form-next,
.pf-form-prev,
.pf-form-submit {
    padding: 14px 28px !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    position: relative !important;
    z-index: 10 !important;
}

.pf-form-next,
.pf-form-submit {
    background: linear-gradient(135deg, #8e44ad 0%, #7d3c98 100%) !important;
    color: #ffffff !important;
    flex: 1 !important;
}

.pf-form-next:hover,
.pf-form-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3) !important;
}

.pf-form-prev {
    background: #f9f9f9 !important;
    color: #6c6c6c !important;
    flex: 0.5 !important;
}

.pf-form-prev:hover {
    background: rgba(0,0,0,0.08) !important;
}

/* Barre de progression - En haut et fonctionnelle */
.pf-progress-bar {
    position: absolute !important;
    top: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: #f9f9f9 !important;
    border-radius: 20px 20px 0 0 !important;
    overflow: hidden !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.pf-progress-fill {
    height: 100% !important;
    background: linear-gradient(90deg, #8e44ad 0%, #9b59b6 100%) !important;
    transition: width 0.3s ease !important;
    width: 33.33%; /* PAS de !important pour que le JS puisse modifier */
}

/* Message de succès */
.pf-success-message {
    text-align: center !important;
    padding: 40px 20px !important;
    animation: fadeIn 0.5s ease-out !important;
    display: none !important;
    background: #ffffff !important;
    position: relative !important;
    z-index: 10 !important;
}

.pf-success-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #2e7d32 0%, #27ae60 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 30px !important;
    margin: 0 auto 20px !important;
    line-height: 1 !important;
}

.pf-success-message h3 {
    color: #2c2c2c !important;
    margin-bottom: 10px !important;
    font-size: 24px !important;
    font-weight: 600 !important;
}

.pf-success-message p {
    color: #6c6c6c !important;
    font-size: 16px !important;
}

/* =============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 768px) {
    .pixfeed-certifications-wrapper .hero-section h1 {
        font-size: 2.5rem !important;
    }

    .pixfeed-certifications-wrapper .cert-navigation {
        flex-wrap: wrap !important;
        padding: 4px !important;
    }

    .pixfeed-certifications-wrapper .nav-btn {
        padding: 10px 20px !important;
        font-size: 0.875rem !important;
    }

    .pixfeed-certifications-wrapper .overview-grid {
        grid-template-columns: 1fr !important;
    }

    .pixfeed-certifications-wrapper .tech-grid {
        grid-template-columns: 1fr !important;
    }

    .pixfeed-certifications-wrapper .cert-showcase {
        padding: 32px 24px !important;
    }

    .pixfeed-certifications-wrapper .cta-section {
        padding: 40px 24px !important;
    }

    .pixfeed-certifications-wrapper .cta-section h2 {
        font-size: 1.3rem !important;
    }

    .pf-popup-content {
        padding: 30px 20px !important;
        padding-top: 34px !important;
        width: 95% !important;
    }

    .pf-checkbox-grid,
    .pf-radio-grid {
        grid-template-columns: 1fr !important;
    }

    .pf-form-nav {
        flex-direction: column !important;
    }

    .pf-form-prev {
        flex: 1 !important;
    }
}

@media (max-width: 480px) {
    .pixfeed-certifications-wrapper .hero-section h1 {
        font-size: 2rem !important;
    }
    
    .pixfeed-certifications-wrapper .hero-section p {
        font-size: 1rem !important;
    }
    
    .pixfeed-certifications-wrapper .cert-showcase {
        padding: 24px 16px !important;
    }

    .pf-popup-content h2 {
        font-size: 22px !important;
    }
}