/* Shared styles for certification pages */

        /* Hero */
        .cert-hero {
            padding: 10rem 0 5rem;
            background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cert-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.04) 0%, transparent 70%);
            pointer-events: none;
        }

        .cert-hero .container {
            position: relative;
            z-index: 1;
        }

        .cert-badge {
            width: 160px;
            height: auto;
            margin: 0 auto 2rem;
            display: block;
            filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
        }

        .cert-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3rem);
            color: white;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .cert-hero h1 span {
            color: white;
            font-style: italic;
        }

        .cert-hero .hero-subtitle {
            color: rgba(255,255,255,0.75);
            font-size: 1.1rem;
            max-width: 680px;
            margin: 0 auto 2rem;
            line-height: 1.7;
        }

        .cert-hero .hero-desc {
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Outcomes Banner */
        .outcomes-section {
            background: var(--off-white);
            padding: 3.5rem 0;
            border-bottom: 1px solid var(--gray-200);
        }

        .outcomes-section .section-header {
            margin-bottom: 2rem;
        }

        .outcomes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .outcome-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem;
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        .outcome-icon {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            background: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
        }

        .outcome-icon svg {
            width: 16px;
            height: 16px;
            color: white;
        }

        .outcome-item p {
            color: var(--gray-700);
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
        }

        /* Challenges */
        .challenges-section {
            padding: 4rem 0;
            background: var(--off-white);
        }

        .challenges-section .container {
            max-width: 820px;
        }

        .challenge {
            margin-bottom: 2.5rem;
            padding: 2.5rem;
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            background: white;
            box-shadow: var(--shadow-sm);
        }

        .challenge:last-child {
            margin-bottom: 0;
        }

        .challenge-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .challenge-number {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: var(--navy);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
        }

        .challenge-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--navy);
            margin: 0;
        }

        .challenge-intro {
            color: var(--gray-800);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .challenge-details {
            margin-bottom: 1.5rem;
        }

        .challenge-details h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--navy);
            margin-bottom: 0.75rem;
        }

        .challenge-details ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .challenge-details li {
            color: var(--gray-800);
            line-height: 1.6;
            font-size: 0.92rem;
            padding: 0.4rem 0 0.4rem 1.5rem;
            position: relative;
        }

        .challenge-details li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.75rem;
            width: 6px;
            height: 6px;
            background: var(--red);
            border-radius: 50%;
        }

        .challenge-details li strong {
            color: var(--gray-800);
        }

        .process-steps {
            counter-reset: step-counter;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .process-steps li {
            counter-increment: step-counter;
            padding: 0.5rem 0 0.5rem 2rem;
            position: relative;
            color: var(--gray-800);
            line-height: 1.6;
            font-size: 0.92rem;
        }

        .process-steps li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 20px;
            height: 20px;
            background: var(--gray-100);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--navy);
        }

        .challenge-template {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--navy);
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            margin-bottom: 1rem;
        }

        .challenge-template:hover {
            color: var(--red);
        }

        .challenge-template svg {
            width: 16px;
            height: 16px;
        }

        .btn-submit {
            display: inline-block;
            background: var(--red);
            color: white;
            padding: 0.75rem 2rem;
            border-radius: var(--radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            border: 2px solid var(--red);
        }

        .btn-submit:hover {
            background: var(--red-dark);
            border-color: var(--red-dark);
            transform: translateY(-1px);
            box-shadow: var(--shadow);
        }

        /* Invite Section */
        .invite-section {
            background: white;
            padding: 4rem 0;
            text-align: center;
            border-top: 2px solid var(--gray-200);
            border-bottom: 2px solid var(--gray-200);
        }

        .invite-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            color: var(--navy);
            margin-bottom: 0.75rem;
        }

        .invite-section p {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .invite-section .btn-primary {
            background: var(--red);
            border-color: var(--red);
        }

        .invite-section .btn-primary:hover {
            background: var(--red-dark);
            border-color: var(--red-dark);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cert-hero {
                padding: 8rem 0 3.5rem;
            }

            .cert-badge {
                width: 120px;
            }

            .outcomes-grid {
                grid-template-columns: 1fr;
            }

            .challenge-header {
                gap: 0.75rem;
            }

            .challenge-number {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }

            .challenge-header h2 {
                font-size: 1.25rem;
            }
        }
    