
    /* ============================================
        SCOPED STYLES - All within .ccl-professnegsingle--wrapper
        ============================================ */
    
    .ccl-professnegsingle--wrapper {
        /* CSS Variables */
        --ccl-primary-blue: #1d63ff;
        --ccl-cta-blue: #0b5cff;
        --ccl-cta-dark: #0846c1;
        --ccl-accent-green: #10b981;
        --ccl-accent-gold: #ffa826;
        --ccl-ink: #1e293b;
        --ccl-muted: #64748b;
        --ccl-soft-border: #e5e7eb;
        --ccl-white: #ffffff;
        --ccl-off-white: #f8fafc;
        
        /* Typography */
        --ccl-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        --ccl-font-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        
        /* Spacing */
        --ccl-section-padding: 100px;
        --ccl-card-padding: 36px;
        --ccl-gap-large: 32px;
        --ccl-gap-medium: 24px;
        --ccl-gap-small: 16px;
        
        /* Base Styles */
        font-family: var(--ccl-font-primary);
        font-size: 16px;
        line-height: 1.6;
        color: var(--ccl-ink);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .ccl-professnegsingle--wrapper main {
        overflow-x: hidden;
    }
    
    .ccl-professnegsingle--wrapper h1,
    .ccl-professnegsingle--wrapper h2,
    .ccl-professnegsingle--wrapper h3,
    .ccl-professnegsingle--wrapper h4,
    .ccl-professnegsingle--wrapper h5,
    .ccl-professnegsingle--wrapper h6,
    .ccl-professnegsingle--wrapper p,
    .ccl-professnegsingle--wrapper ul,
    .ccl-professnegsingle--wrapper ol {
        box-sizing: border-box;
    }
    
    .ccl-professnegsingle--wrapper h1,
    .ccl-professnegsingle--wrapper h2,
    .ccl-professnegsingle--wrapper h3,
    .ccl-professnegsingle--wrapper h4,
    .ccl-professnegsingle--wrapper h5,
    .ccl-professnegsingle--wrapper h6,
    .ccl-professnegsingle--wrapper p {
        margin: 0;
        padding: 0;
    }
    
    .ccl-professnegsingle--wrapper h1,
    .ccl-professnegsingle--wrapper h2,
    .ccl-professnegsingle--wrapper h3,
    .ccl-professnegsingle--wrapper h4,
    .ccl-professnegsingle--wrapper h5,
    .ccl-professnegsingle--wrapper h6 {
        font-family: var(--ccl-font-display);
        font-weight: 800;
        line-height: 1.2;
        color: var(--ccl-ink);
    }
    
    .ccl-professnegsingle--wrapper p {
        margin-bottom: 1em;
    }
    
    .ccl-professnegsingle--wrapper ul,
    .ccl-professnegsingle--wrapper ol {
        margin-bottom: 1em;
        padding-left: 1.5em;
    }
    
    .ccl-professnegsingle--wrapper a {
        color: var(--ccl-primary-blue);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .ccl-professnegsingle--wrapper a:hover {
        color: var(--ccl-cta-dark);
    }
    
    /* ============================================
        HERO SECTION
        ============================================ */
    
    .ccl-professnegsingle--hero {
        position: relative;
        background: linear-gradient(135deg, #0846c1 0%, #1d63ff 50%, #0b5cff 100%);
        padding: 100px 24px 100px;
        text-align: center;
        overflow: hidden;
    }
    
    .ccl-professnegsingle--hero * {
        text-align: center;
    }
    
    .ccl-professnegsingle--hero .ccl-professnegsingle--hero-ctas,
    .ccl-professnegsingle--hero .ccl-professnegsingle--hero-stats {
        display: flex;
        justify-content: center;
    }
    
    .ccl-professnegsingle--hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: ccl-professnegsingle-glow-pulse 8s ease-in-out infinite;
    }
    
    .ccl-professnegsingle--hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
        border-radius: 50%;
        animation: ccl-professnegsingle-glow-pulse 10s ease-in-out infinite 2s;
    }
    
    @keyframes ccl-professnegsingle-glow-pulse {
        0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
        50% { transform: translate(20px, 20px) scale(1.1); opacity: 0.8; }
    }
    
    .ccl-professnegsingle--hero-content {
        position: relative;
        z-index: 1;
        max-width: 950px;
        margin: 0 auto;
    }
    
    .ccl-professnegsingle--hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255,255,255,0.15);
        color: var(--ccl-white);
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        margin-bottom: 24px;
        backdrop-filter: blur(10px);
        animation: ccl-professnegsingle-fadeInDown 0.8s ease-out;
    }
    
    @keyframes ccl-professnegsingle-fadeInDown {
        from { opacity: 0; transform: translateY(-30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .ccl-professnegsingle--hero h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        color: var(--ccl-white);
        margin-bottom: 24px;
        text-align: center;
        animation: ccl-professnegsingle-fadeInUp 0.8s ease-out 0.2s backwards;
    }
    
    @keyframes ccl-professnegsingle-fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .ccl-professnegsingle--hero-lead {
        font-size: clamp(1.1rem, 2vw, 1.35rem);
        color: rgba(255,255,255,0.95);
        line-height: 1.6;
        margin-bottom: 40px;
        text-align: center;
        animation: ccl-professnegsingle-fadeInUp 0.8s ease-out 0.4s backwards;
    }
    
    .ccl-professnegsingle--hero-ctas {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
        margin-bottom: 60px;
        animation: ccl-professnegsingle-fadeInUp 0.8s ease-out 0.6s backwards;
    }
    
    .ccl-professnegsingle--hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
        animation: ccl-professnegsingle-fadeInUp 0.8s ease-out 0.8s backwards;
    }
    
    .ccl-professnegsingle--hero-stat {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--ccl-white);
    }
    
    .ccl-professnegsingle--hero-stat-icon {
        width: 48px;
        height: 48px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        backdrop-filter: blur(10px);
    }
    
    .ccl-professnegsingle--hero-stat-text {
        text-align: left;
    }
    
    .ccl-professnegsingle--hero-stat-label {
        display: block;
        font-size: 0.85rem;
        opacity: 0.9;
        font-weight: 500;
    }
    
    .ccl-professnegsingle--hero-stat-value {
        display: block;
        font-size: 1.05rem;
        font-weight: 700;
    }
    
    /* ============================================
        BUTTONS
        ============================================ */
    
    .ccl-professnegsingle--btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        border-radius: 8px;
        font-family: var(--ccl-font-primary);
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .ccl-professnegsingle--btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease;
    }
    
    .ccl-professnegsingle--btn:active::before {
        width: 300px;
        height: 300px;
    }
    
    .ccl-professnegsingle--btn--primary {
        background: var(--ccl-white);
        color: var(--ccl-cta-blue);
        box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    }
    
    .ccl-professnegsingle--btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }
    
    .ccl-professnegsingle--btn--secondary {
        background: var(--ccl-white);
        color: var(--ccl-cta-blue);
        border: 2px solid var(--ccl-white);
    }
    
    .ccl-professnegsingle--btn--secondary:hover {
        background: transparent;
        color: var(--ccl-white);
    }
    
    .ccl-professnegsingle--btn--cta {
        background: var(--ccl-cta-blue);
        color: var(--ccl-white);
        box-shadow: 0 4px 14px rgba(11, 92, 255, 0.3);
    }
    
    .ccl-professnegsingle--btn--cta:hover {
        background: var(--ccl-cta-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(11, 92, 255, 0.4);
    }
    
    .ccl-professnegsingle--btn i {
        position: relative;
        z-index: 1;
    }
    
    .ccl-professnegsingle--btn span {
        position: relative;
        z-index: 1;
    }
    
    /* ============================================
        SECTION COMMON STYLES
        ============================================ */
    
    .ccl-professnegsingle--section {
        padding: var(--ccl-section-padding) 24px;
    }
    
    .ccl-professnegsingle--section--alt {
        background: var(--ccl-off-white);
    }
    
    .ccl-professnegsingle--container {
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .ccl-professnegsingle--section-header {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .ccl-professnegsingle--section-header *:not(mark) {
        text-align: center;
    }
    
    .ccl-professnegsingle--section-kicker {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: var(--ccl-primary-blue);
        font-size: 0.95rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 16px;
    }
    
    .ccl-professnegsingle--section-kicker::before,
    .ccl-professnegsingle--section-kicker::after {
        content: '';
        width: 40px;
        height: 2px;
        background: var(--ccl-primary-blue);
    }
    
    .ccl-professnegsingle--section-title {
        font-size: clamp(2.25rem, 5vw, 3.5rem);
        margin-bottom: 20px;
        text-align: center;
    }
    
    .ccl-professnegsingle--section-title mark {
        background: linear-gradient(180deg, transparent 60%, rgba(29, 99, 255, 0.2) 60%);
        color: inherit;
    }
    
    .ccl-professnegsingle--section-lead {
        font-size: 1.2rem;
        color: var(--ccl-muted);
        line-height: 1.7;
        margin: 0 auto;
        text-align: center;
    }
    
    /* ============================================
        WHO CAN CLAIM SECTION
        ============================================ */
    
    .ccl-professnegsingle--claim-hero {
        background: linear-gradient(135deg, rgba(29, 99, 255, 0.05), rgba(16, 185, 129, 0.05));
        border-radius: 24px;
        padding: 48px;
        margin-top: 48px;
        border: 3px solid var(--ccl-primary-blue);
    }
    
    .ccl-professnegsingle--claim-hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }
    
    .ccl-professnegsingle--claim-text h3 {
        font-size: 2.5rem;
        color: var(--ccl-primary-blue);
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .ccl-professnegsingle--claim-text h3 i {
        font-size: 2.5rem;
    }
    
    .ccl-professnegsingle--claim-text p {
        font-size: 1.15rem;
        line-height: 1.8;
        color: var(--ccl-muted);
        margin-bottom: 24px;
    }
    
    .ccl-professnegsingle--claim-categories {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .ccl-professnegsingle--claim-category {
        background: var(--ccl-white);
        padding: 20px;
        border-radius: 12px;
        border: 2px solid var(--ccl-soft-border);
        transition: all 0.3s ease;
    }
    
    .ccl-professnegsingle--claim-category:hover {
        border-color: var(--ccl-primary-blue);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
    
    .ccl-professnegsingle--claim-category-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ccl-white);
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .ccl-professnegsingle--claim-category h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        color: var(--ccl-ink);
    }
    
    .ccl-professnegsingle--claim-category p {
        font-size: 0.9rem;
        color: var(--ccl-muted);
        margin: 0;
        line-height: 1.5;
    }
    
    .ccl-professnegsingle--ctp-breakdown {
        background: var(--ccl-white);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }
    
    .ccl-professnegsingle--ctp-breakdown h4 {
        font-size: 1.6rem;
        color: var(--ccl-ink);
        margin-bottom: 24px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    
    .ccl-professnegsingle--ctp-breakdown h4 i {
        color: var(--ccl-primary-blue);
        font-size: 1.8rem;
    }
    
    .ccl-professnegsingle--ctp-items {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .ccl-professnegsingle--ctp-item {
        display: flex;
        align-items: start;
        gap: 16px;
        padding: 20px;
        background: var(--ccl-off-white);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .ccl-professnegsingle--ctp-item:hover {
        background: linear-gradient(135deg, rgba(29, 99, 255, 0.05), rgba(16, 185, 129, 0.05));
        transform: translateX(5px);
    }
    
    .ccl-professnegsingle--ctp-item-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        background: var(--ccl-primary-blue);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ccl-white);
        font-size: 1.4rem;
    }
    
    .ccl-professnegsingle--ctp-item-text h5 {
        font-size: 1.15rem;
        color: var(--ccl-ink);
        margin-bottom: 6px;
    }
    
    .ccl-professnegsingle--ctp-item-text p {
        font-size: 0.95rem;
        color: var(--ccl-muted);
        margin: 0;
        line-height: 1.6;
    }
    
    /* ============================================
        IMMEDIATE ACTION SECTION
        ============================================ */

    .ccl-professnegsingle--action-banner {
        background: linear-gradient(135deg, #fef3c7, #fde68a);
        border: 3px solid var(--ccl-accent-gold);
        border-radius: 24px;
        padding: 40px;
        margin-top: 48px;
        box-shadow: 0 10px 40px rgba(255, 168, 38, 0.15);
    }

    .ccl-professnegsingle--action-header {
        text-align: center;
        margin-bottom: 32px;
    }

    .ccl-professnegsingle--action-header h4 {
        font-size: 2rem;
        color: #92400e;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .ccl-professnegsingle--action-header h4 i {
        font-size: 2.2rem;
        color: var(--ccl-accent-gold);
    }

    .ccl-professnegsingle--action-header p {
        font-size: 1.05rem;
        color: #78350f;
        margin: 0;
    }

    .ccl-professnegsingle--action-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ccl-professnegsingle--action-card {
        background: var(--ccl-white);
        padding: 24px;
        border-radius: 16px;
        display: flex;
        align-items: start;
        gap: 16px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .ccl-professnegsingle--action-card:hover {
        border-color: var(--ccl-accent-gold);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .ccl-professnegsingle--action-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        background: linear-gradient(135deg, var(--ccl-accent-gold), #f59e0b);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ccl-white);
        font-size: 1.5rem;
        font-weight: 900;
        font-family: var(--ccl-font-display);
        box-shadow: 0 4px 12px rgba(255, 168, 38, 0.3);
    }

    .ccl-professnegsingle--action-content h5 {
        font-size: 1.15rem;
        color: #92400e;
        margin-bottom: 6px;
        font-weight: 800;
    }

    .ccl-professnegsingle--action-content p {
        font-size: 0.95rem;
        color: #78350f;
        margin: 0;
        line-height: 1.6;
    }

    .ccl-professnegsingle--action-urgency {
        background: #dc2626;
        color: var(--ccl-white);
        text-align: center;
        padding: 16px 24px;
        border-radius: 12px;
        margin-top: 24px;
        font-weight: 700;
        font-size: 1.05rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    .ccl-professnegsingle--action-urgency i {
        font-size: 1.3rem;
    }
    
    /* ============================================
        ELIGIBILITY SECTION
        ============================================ */

    .ccl-professnegsingle--eligibility-layout {
        display: grid;
        grid-template-columns: 1fr 400px;
        gap: 48px;
        margin-top: 48px;
    }

    .ccl-professnegsingle--eligibility-main {
        background: transparent;
        padding: 0;
        border-radius: 0;
        border: none;
    }

    .ccl-professnegsingle--eligibility-main > h3 {
        font-size: 2rem;
        margin-bottom: 40px;
        color: var(--ccl-primary-blue);
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 3px solid var(--ccl-primary-blue);
    }

    .ccl-professnegsingle--eligibility-requirements {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .ccl-professnegsingle--requirement-card {
        background: var(--ccl-white);
        padding: 32px;
        border-radius: 20px;
        border: 2px solid var(--ccl-soft-border);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .ccl-professnegsingle--requirement-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 6px;
        background: linear-gradient(180deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
        transform: translateX(-6px);
        transition: transform 0.4s ease;
    }

    .ccl-professnegsingle--requirement-card:hover {
        transform: translateX(8px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        border-color: var(--ccl-primary-blue);
    }

    .ccl-professnegsingle--requirement-card:hover::before {
        transform: translateX(0);
    }

    .ccl-professnegsingle--requirement-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 16px;
    }

    .ccl-professnegsingle--requirement-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        background: linear-gradient(135deg, rgba(29, 99, 255, 0.1), rgba(11, 92, 255, 0.05));
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ccl-primary-blue);
        font-size: 1.8rem;
        transition: all 0.4s ease;
        border: 2px solid var(--ccl-soft-border);
    }

    .ccl-professnegsingle--requirement-card:hover .ccl-professnegsingle--requirement-icon {
        background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
        color: var(--ccl-white);
        transform: scale(1.1) rotate(-5deg);
        border-color: var(--ccl-primary-blue);
    }

    .ccl-professnegsingle--requirement-header h4 {
        font-size: 1.4rem;
        color: var(--ccl-ink);
        margin: 0;
    }

    .ccl-professnegsingle--requirement-card p {
        color: var(--ccl-muted);
        line-height: 1.8;
        margin: 0;
        font-size: 0.98rem;
    }

    .ccl-professnegsingle--eligibility-note {
        background: linear-gradient(135deg, #fffbeb, #fef3c7);
        border: 3px solid var(--ccl-accent-gold);
        border-radius: 20px;
        padding: 32px;
        margin-top: 0;
        position: relative;
        overflow: hidden;
    }

    .ccl-professnegsingle--eligibility-note::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--ccl-accent-gold), #f59e0b);
    }

    .ccl-professnegsingle--eligibility-note h4 {
        color: #92400e;
        font-size: 1.3rem;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .ccl-professnegsingle--eligibility-note h4 i {
        color: var(--ccl-accent-gold);
        font-size: 1.5rem;
    }

    .ccl-professnegsingle--eligibility-note p {
        color: #78350f;
        margin: 0;
        line-height: 1.8;
        font-size: 0.98rem;
    }

    .ccl-professnegsingle--eligibility-note strong {
        color: #92400e;
        font-weight: 700;
    }

    .ccl-professnegsingle--eligibility-note a {
        color: #0846c1;
        font-weight: 700;
        text-decoration: underline;
    }

    .ccl-professnegsingle--eligibility-note a:hover {
        color: var(--ccl-primary-blue);
    }

    .ccl-professnegsingle--eligibility-sidebar {
        display: flex;
        flex-direction: column;
        gap: 24px;
        position: sticky;
        top: 24px;
        align-self: start;
    }

    .ccl-professnegsingle--eligibility-widget {
        background: var(--ccl-white);
        padding: 32px;
        border-radius: 20px;
        border: 2px solid var(--ccl-soft-border);
        transition: all 0.3s ease;
        overflow: hidden;
    }

    .ccl-professnegsingle--eligibility-widget:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transform: translateY(-3px);
    }

    .ccl-professnegsingle--eligibility-widget.highlight {
        background: linear-gradient(135deg, rgba(29, 99, 255, 0.05), rgba(16, 185, 129, 0.05));
        border-color: var(--ccl-primary-blue);
        border-width: 3px;
        box-shadow: 0 8px 24px rgba(29, 99, 255, 0.15);
    }

    .ccl-professnegsingle--eligibility-widget h4 {
        font-size: 1.3rem;
        color: var(--ccl-primary-blue);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .ccl-professnegsingle--eligibility-widget h4 i {
        font-size: 1.4rem;
    }

    .ccl-professnegsingle--checklist {
        list-style: none;
        padding: 0;
        margin: 0 0 24px 0;
    }

    .ccl-professnegsingle--checklist li {
        padding: 14px 0;
        padding-left: 36px;
        position: relative;
        color: var(--ccl-ink);
        font-weight: 600;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--ccl-soft-border);
    }

    .ccl-professnegsingle--checklist li:last-child {
        border-bottom: none;
    }

    .ccl-professnegsingle--checklist li::before {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: var(--ccl-accent-green);
        font-size: 1.1rem;
    }

    .ccl-professnegsingle--eligibility-widget .ccl-professnegsingle--btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .ccl-professnegsingle--eligibility-widget .ccl-professnegsingle--btn--cta {
        background: var(--ccl-cta-blue);
        color: var(--ccl-white) !important;
        box-shadow: 0 4px 14px rgba(11, 92, 255, 0.3);
    }

    .ccl-professnegsingle--eligibility-widget .ccl-professnegsingle--btn--cta:hover {
        background: var(--ccl-cta-dark);
        color: var(--ccl-white) !important;
    }

    .ccl-professnegsingle--eligibility-widget .ccl-professnegsingle--btn--cta i,
    .ccl-professnegsingle--eligibility-widget .ccl-professnegsingle--btn--cta span {
        color: var(--ccl-white);
    }
    
    /* ============================================
        PROFESSIONAL NEGLIGENCE ADD-ON MODULE
        ============================================ */
    
    .ccl-professnegsingle--addon-module {
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(167, 139, 250, 0.05));
        border: 3px solid #7c3aed;
        border-radius: 24px;
        padding: 48px;
        margin-top: 48px;
    }
    
    .ccl-professnegsingle--addon-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .ccl-professnegsingle--addon-header h3 {
        font-size: 2.2rem;
        color: #7c3aed;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }
    
    .ccl-professnegsingle--addon-header h3 i {
        font-size: 2.5rem;
    }
    
    .ccl-professnegsingle--addon-header p {
        font-size: 1.1rem;
        color: var(--ccl-muted);
        margin: 0;
        line-height: 1.7;
    }
    
    .ccl-professnegsingle--addon-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .ccl-professnegsingle--addon-card {
        background: var(--ccl-white);
        border-radius: 20px;
        padding: 32px;
        border: 2px solid var(--ccl-soft-border);
        transition: all 0.3s ease;
    }
    
    .ccl-professnegsingle--addon-card:hover {
        border-color: #7c3aed;
        transform: translateY(-5px);
        box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
    }
    
    .ccl-professnegsingle--addon-card-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .ccl-professnegsingle--addon-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        background: linear-gradient(135deg, #7c3aed, #a78bfa);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ccl-white);
        font-size: 1.6rem;
        transition: all 0.3s ease;
    }
    
    .ccl-professnegsingle--addon-card:hover .ccl-professnegsingle--addon-icon {
        transform: scale(1.1) rotate(-5deg);
    }
    
    .ccl-professnegsingle--addon-card h4 {
        font-size: 1.4rem;
        color: #7c3aed;
        margin: 0;
    }
    
    .ccl-professnegsingle--addon-card p {
        color: var(--ccl-muted);
        line-height: 1.8;
        margin: 0;
        font-size: 0.98rem;
    }
    
    .ccl-professnegsingle--addon-highlight {
        background: var(--ccl-white);
        border-radius: 16px;
        padding: 32px;
        border: 2px solid #7c3aed;
    }
    
    .ccl-professnegsingle--addon-highlight h4 {
        font-size: 1.3rem;
        color: #7c3aed;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .ccl-professnegsingle--addon-highlight h4 i {
        font-size: 1.5rem;
    }
    
    .ccl-professnegsingle--addon-highlight p {
        color: var(--ccl-muted);
        line-height: 1.8;
        margin: 0 0 16px 0;
        font-size: 0.98rem;
    }
    
    .ccl-professnegsingle--addon-highlight p:last-child {
        margin-bottom: 0;
    }
    
    .ccl-professnegsingle--addon-highlight strong {
        color: #7c3aed;
        font-weight: 700;
    }
    
    /* ============================================
        SCENARIOS SECTION
        ============================================ */
    
    .ccl-professnegsingle--scenarios-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        margin-top: 48px;
    }
    
    .ccl-professnegsingle--scenario-card {
        background: var(--ccl-white);
        border-radius: 20px;
        overflow: hidden;
        border: 2px solid var(--ccl-soft-border);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
    }
    
    .ccl-professnegsingle--scenario-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
        transform: translateY(-5px);
        transition: transform 0.4s ease;
    }
    
    .ccl-professnegsingle--scenario-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
        border-color: var(--ccl-primary-blue);
    }
    
    .ccl-professnegsingle--scenario-card:hover::before {
        transform: translateY(0);
    }
    
    .ccl-professnegsingle--scenario-header {
        padding: 32px;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .ccl-professnegsingle--scenario-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        background: linear-gradient(135deg, rgba(29, 99, 255, 0.1), rgba(11, 92, 255, 0.15));
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--ccl-primary-blue);
        transition: all 0.4s ease;
    }
    
    .ccl-professnegsingle--scenario-card:hover .ccl-professnegsingle--scenario-icon {
        background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
        color: var(--ccl-white);
        transform: scale(1.1) rotate(5deg);
    }
    
    .ccl-professnegsingle--scenario-title h3 {
        font-size: 1.5rem;
        color: var(--ccl-ink);
        margin: 0;
    }
    
    .ccl-professnegsingle--scenario-body {
        padding: 0 32px 32px;
    }
    
    .ccl-professnegsingle--scenario-body p {
        color: var(--ccl-muted);
        line-height: 1.7;
        margin: 0;
    }
    
    /* ============================================
        INJURIES SECTION
        ============================================ */
    
    .ccl-professnegsingle--injuries-showcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 48px;
    }
    
    .ccl-professnegsingle--injuries-categories {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .ccl-professnegsingle--injury-category {
        background: var(--ccl-white);
        border-radius: 16px;
        padding: 24px;
        border: 2px solid var(--ccl-soft-border);
        transition: all 0.3s ease;
    }
    
    .ccl-professnegsingle--injury-category:hover {
        border-color: var(--ccl-primary-blue);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    
    .ccl-professnegsingle--injury-category-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .ccl-professnegsingle--injury-category-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ccl-white);
        font-size: 1.6rem;
    }
    
    .ccl-professnegsingle--injury-category h4 {
        font-size: 1.3rem;
        color: var(--ccl-ink);
        margin: 0;
    }
    
    .ccl-professnegsingle--injury-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding-left: 0;
        list-style: none;
        margin: 0;
    }
    
    .ccl-professnegsingle--injury-list li {
        padding: 8px 12px;
        padding-left: 32px;
        background: var(--ccl-off-white);
        border-radius: 8px;
        position: relative;
        color: var(--ccl-muted);
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    .ccl-professnegsingle--injury-list li::before {
        content: '\f0a4';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 10px;
        top: 10px;
        color: var(--ccl-primary-blue);
        font-size: 0.8rem;
    }
    
    .ccl-professnegsingle--injury-highlight {
        background: linear-gradient(135deg, rgba(29, 99, 255, 0.05), rgba(16, 185, 129, 0.05));
        border: 3px solid var(--ccl-primary-blue);
        border-radius: 24px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .ccl-professnegsingle--injury-highlight-content h3 {
        font-size: 2rem;
        color: var(--ccl-primary-blue);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .ccl-professnegsingle--injury-highlight-content h3 i {
        font-size: 2.2rem;
    }
    
    .ccl-professnegsingle--injury-highlight-content p {
        font-size: 1.1rem;
        color: var(--ccl-muted);
        line-height: 1.8;
        margin-bottom: 24px;
    }
    
    .ccl-professnegsingle--injury-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .ccl-professnegsingle--injury-stat {
        background: var(--ccl-white);
        padding: 24px;
        border-radius: 12px;
        text-align: center;
    }
    
    .ccl-professnegsingle--injury-stat-icon {
        width: 50px;
        height: 50px;
        background: var(--ccl-primary-blue);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ccl-white);
        font-size: 1.4rem;
        margin: 0 auto 12px;
    }
    
    .ccl-professnegsingle--injury-stat strong {
        display: block;
        font-size: 1.1rem;
        color: var(--ccl-ink);
        margin-bottom: 4px;
    }
    
    .ccl-professnegsingle--injury-stat span {
        font-size: 0.9rem;
        color: var(--ccl-muted);
    }
    
    /* ============================================
        WHAT YOU CAN CLAIM SECTION
        ============================================ */
    
    .ccl-professnegsingle--damages-showcase {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
        margin-top: 48px;
    }
    
    .ccl-professnegsingle--damages-main {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    
    .ccl-professnegsingle--damage-card {
        background: var(--ccl-white);
        border-radius: 20px;
        padding: 32px;
        border: 2px solid var(--ccl-soft-border);
        display: flex;
        gap: 24px;
        transition: all 0.3s ease;
    }
    
    .ccl-professnegsingle--damage-card:hover {
        border-color: var(--ccl-primary-blue);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }
    
    .ccl-professnegsingle--damage-icon-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .ccl-professnegsingle--damage-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--ccl-white);
        font-size: 1.8rem;
        transition: all 0.3s ease;
    }
    
    .ccl-professnegsingle--damage-card:hover .ccl-professnegsingle--damage-icon {
        transform: scale(1.1) rotate(5deg);
    }
    
    .ccl-professnegsingle--damage-content h4 {
        font-size: 1.5rem;
        color: var(--ccl-ink);
        margin-bottom: 12px;
    }
    
    .ccl-professnegsingle--damage-content p {
        color: var(--ccl-muted);
        line-height: 1.7;
        margin: 0;
    }
    
    .ccl-professnegsingle--damages-sidebar {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    
    .ccl-professnegsingle--damages-summary {
        background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
        border-radius: 24px;
        padding: 36px;
        color: var(--ccl-white);
    }
    
    .ccl-professnegsingle--damages-summary h4 {
        color: var(--ccl-white);
        font-size: 1.6rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .ccl-professnegsingle--damages-summary h4 i {
        font-size: 1.8rem;
    }
    
    .ccl-professnegsingle--damages-summary p {
        color: rgba(255,255,255,0.95);
        line-height: 1.7;
        margin-bottom: 24px;
    }
    
    .ccl-professnegsingle--damages-summary .ccl-professnegsingle--btn {
        width: 100%;
        justify-content: center;
    }
    
    .ccl-professnegsingle--property-highlight {
        background: var(--ccl-white);
        border: 3px solid var(--ccl-primary-blue);
        border-radius: 20px;
        padding: 32px;
    }
    
    .ccl-professnegsingle--property-highlight h4 {
        font-size: 1.3rem;
        color: var(--ccl-primary-blue);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .ccl-professnegsingle--property-highlight h4 i {
        font-size: 1.5rem;
    }
    
    .ccl-professnegsingle--property-highlight p {
        color: var(--ccl-muted);
        line-height: 1.7;
        margin: 0;
    }
    
    /* ============================================
        FOCUS STYLES
        ============================================ */
    
    .ccl-professnegsingle--wrapper a:focus,
    .ccl-professnegsingle--wrapper button:focus,
    .ccl-professnegsingle--wrapper input:focus,
    .ccl-professnegsingle--wrapper textarea:focus,
    .ccl-professnegsingle--wrapper select:focus {
        outline: 3px solid var(--ccl-primary-blue);
        outline-offset: 2px;
    }
    
    .ccl-professnegsingle--wrapper .ccl-professnegsingle--btn:focus {
        outline: 3px solid var(--ccl-ink);
        outline-offset: 3px;
    }
    
    /* ============================================
        SCROLL REVEAL ANIMATION
        ============================================ */
    
    .ccl-professnegsingle--scroll-reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .ccl-professnegsingle--scroll-reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* ============================================
        RESPONSIVE DESIGN
        ============================================ */
    
    @media (max-width: 1024px) {
        .ccl-professnegsingle--wrapper {
            --ccl-section-padding: 80px;
            --ccl-card-padding: 28px;
            --ccl-gap-large: 28px;
        }
        
        .ccl-professnegsingle--hero {
            padding: 80px 24px 80px;
        }
        
        .ccl-professnegsingle--eligibility-layout,
        .ccl-professnegsingle--damages-showcase {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        
        .ccl-professnegsingle--claim-hero-content,
        .ccl-professnegsingle--injuries-showcase,
        .ccl-professnegsingle--scenarios-grid,
        .ccl-professnegsingle--addon-grid {
            grid-template-columns: 1fr;
        }
        
        .ccl-professnegsingle--claim-categories {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 768px) {
        .ccl-professnegsingle--wrapper {
            --ccl-section-padding: 60px;
            --ccl-card-padding: 24px;
            --ccl-gap-large: 24px;
        }
        
        .ccl-professnegsingle--hero {
            padding: 80px 20px 60px;
        }
        
        .ccl-professnegsingle--hero-ctas {
            flex-direction: column;
            width: 100%;
        }
        
        .ccl-professnegsingle--hero-ctas .ccl-professnegsingle--btn {
            justify-content: center;
        }
        
        .ccl-professnegsingle--hero-stats {
            gap: 24px;
        }
        
        .ccl-professnegsingle--section-header {
            margin-bottom: 40px;
        }
        
        .ccl-professnegsingle--eligibility-main,
        .ccl-professnegsingle--claim-hero,
        .ccl-professnegsingle--addon-module {
            padding: 32px 24px;
        }
        
        .ccl-professnegsingle--injury-list {
            grid-template-columns: 1fr;
        }
        
        .ccl-professnegsingle--injury-stats {
            grid-template-columns: 1fr;
        }
        
        .ccl-professnegsingle--action-grid {
            grid-template-columns: 1fr;
        }
        
        .ccl-professnegsingle--action-banner {
            padding: 32px 24px;
        }
        
        .ccl-professnegsingle--action-header h4 {
            font-size: 1.6rem;
            flex-direction: column;
        }
        
        .ccl-professnegsingle--requirement-card {
            padding: 24px;
        }
        
        .ccl-professnegsingle--requirement-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
        
        .ccl-professnegsingle--eligibility-note {
            padding: 24px;
        }
        
        .ccl-professnegsingle--eligibility-main > h3 {
            font-size: 1.6rem;
        }
        
        .ccl-professnegsingle--hero-stat {
            flex-direction: column;
            text-align: center;
        }
    }
    
    @media (max-width: 480px) {
        .ccl-professnegsingle--wrapper {
            --ccl-section-padding: 50px;
            --ccl-card-padding: 20px;
            font-size: 15px;
        }
        
        .ccl-professnegsingle--section {
            padding: var(--ccl-section-padding) 16px;
        }
        
        .ccl-professnegsingle--hero {
            padding: 60px 16px 50px;
        }
        
        .ccl-professnegsingle--section-kicker::before,
        .ccl-professnegsingle--section-kicker::after {
            width: 30px;
        }
        
        .ccl-professnegsingle--btn {
            padding: 14px 24px;
            font-size: 0.95rem;
        }
    }
/* ============================================
SECTION 7: TIME LIMITS SECTION
============================================ */

.ccl-professnegsingle--timelimits-wrapper {
margin-top: 48px;
position: relative;
}

.ccl-professnegsingle--timeline-container {
position: relative;
max-width: 900px;
margin: 0 auto;
}

.ccl-professnegsingle--timeline-container::before {
content: '';
position: absolute;
left: 40px;
top: 60px;
bottom: 60px;
width: 4px;
background: linear-gradient(180deg, #dc2626, #ef4444, var(--ccl-primary-blue), var(--ccl-cta-blue));
border-radius: 2px;
}

.ccl-professnegsingle--timeline-item {
position: relative;
padding-left: 120px;
margin-bottom: 32px;
}

.ccl-professnegsingle--timeline-badge {
position: absolute;
left: 0;
top: 0;
width: 80px;
height: 80px;
background: var(--ccl-white);
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: var(--ccl-font-display);
font-weight: 900;
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
z-index: 2;
border: 4px solid var(--ccl-white);
}

.ccl-professnegsingle--timeline-badge.urgent {
background: linear-gradient(135deg, #dc2626, #ef4444);
color: var(--ccl-white);
animation: ccl-professnegsingle-pulse 2s ease-in-out infinite;
}

.ccl-professnegsingle--timeline-badge.important {
background: linear-gradient(135deg, #f59e0b, var(--ccl-accent-gold));
color: var(--ccl-white);
}

.ccl-professnegsingle--timeline-badge.standard {
background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
color: var(--ccl-white);
}

@keyframes ccl-professnegsingle-pulse {
0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3); }
50% { transform: scale(1.05); box-shadow: 0 12px 32px rgba(220, 38, 38, 0.5); }
}

.ccl-professnegsingle--timeline-time {
font-size: 1.6rem;
line-height: 1;
margin-bottom: 4px;
}

.ccl-professnegsingle--timeline-label {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.5px;
opacity: 0.9;
}

.ccl-professnegsingle--timeline-content {
background: var(--ccl-white);
padding: 28px 32px;
border-radius: 20px;
border: 2px solid var(--ccl-soft-border);
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ccl-professnegsingle--timeline-item:hover .ccl-professnegsingle--timeline-content {
transform: translateY(-5px);
box-shadow: 0 12px 32px rgba(0,0,0,0.12);
border-color: var(--ccl-primary-blue);
}

.ccl-professnegsingle--timeline-content h4 {
font-size: 1.4rem;
color: var(--ccl-ink);
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 10px;
}

.ccl-professnegsingle--timeline-content h4 i {
color: var(--ccl-primary-blue);
font-size: 1.2rem;
}

.ccl-professnegsingle--timeline-item.urgent .ccl-professnegsingle--timeline-content h4 i {
color: #dc2626;
}

.ccl-professnegsingle--timeline-content p {
color: var(--ccl-muted);
line-height: 1.7;
margin: 0;
font-size: 0.98rem;
}

.ccl-professnegsingle--timeline-urgency-tag {
display: inline-block;
padding: 6px 14px;
border-radius: 6px;
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 12px;
}

.ccl-professnegsingle--timeline-urgency-tag.critical {
background: #fee2e2;
color: #dc2626;
}

.ccl-professnegsingle--timeline-urgency-tag.high {
background: #fef3c7;
color: #92400e;
}

.ccl-professnegsingle--timeline-urgency-tag.medium {
background: #dbeafe;
color: #1e40af;
}

.ccl-professnegsingle--timelimits-cta {
background: linear-gradient(135deg, #dc2626, #ef4444);
padding: 40px;
border-radius: 24px;
text-align: center;
margin-top: 48px;
color: var(--ccl-white);
box-shadow: 0 12px 40px rgba(220, 38, 38, 0.3);
position: relative;
overflow: hidden;
}

.ccl-professnegsingle--timelimits-cta::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
border-radius: 50%;
}

.ccl-professnegsingle--timelimits-cta h4 {
font-size: 2rem;
color: var(--ccl-white);
margin-bottom: 16px;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
position: relative;
z-index: 1;
}

.ccl-professnegsingle--timelimits-cta h4 i {
font-size: 2.2rem;
animation: ccl-professnegsingle-hourglass-spin 3s ease-in-out infinite;
}

@keyframes ccl-professnegsingle-hourglass-spin {
0%, 100% { transform: rotate(0deg); }
50% { transform: rotate(180deg); }
}

.ccl-professnegsingle--timelimits-cta p {
font-size: 1.1rem;
color: rgba(255,255,255,0.95);
margin-bottom: 28px;
line-height: 1.7;
position: relative;
z-index: 1;
}

.ccl-professnegsingle--timelimits-cta strong {
color: var(--ccl-white);
font-weight: 800;
}

.ccl-professnegsingle--timelimits-cta .ccl-professnegsingle--btn {
position: relative;
z-index: 1;
}

/* ============================================
SECTION 8: PROCESS SECTION
============================================ */

.ccl-professnegsingle--process-steps {
margin-top: 48px;
position: relative;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}

.ccl-professnegsingle--process-step {
display: grid;
grid-template-columns: 100px 1fr;
gap: 32px;
margin-bottom: 40px;
position: relative;
}

.ccl-professnegsingle--process-step:not(:last-child)::after {
content: '';
position: absolute;
left: 50px;
top: 100px;
bottom: -40px;
width: 3px;
background: linear-gradient(180deg, var(--ccl-primary-blue), rgba(29, 99, 255, 0.3));
z-index: 0;
}

.ccl-professnegsingle--process-number {
width: 100px;
height: 100px;
background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
color: var(--ccl-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
font-weight: 900;
font-family: var(--ccl-font-display);
box-shadow: 0 12px 32px rgba(29, 99, 255, 0.35);
position: relative;
z-index: 1;
transition: all 0.4s ease;
}

.ccl-professnegsingle--process-step:hover .ccl-professnegsingle--process-number {
transform: scale(1.1) rotate(5deg);
box-shadow: 0 16px 40px rgba(29, 99, 255, 0.45);
}

.ccl-professnegsingle--process-content {
background: var(--ccl-white);
padding: 36px;
border-radius: 20px;
border: 2px solid var(--ccl-soft-border);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
}

.ccl-professnegsingle--process-content::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(29, 99, 255, 0.03), transparent);
transition: left 0.6s ease;
}

.ccl-professnegsingle--process-step:hover .ccl-professnegsingle--process-content {
transform: translateX(10px);
box-shadow: 0 12px 40px rgba(0,0,0,0.12);
border-color: var(--ccl-primary-blue);
}

.ccl-professnegsingle--process-step:hover .ccl-professnegsingle--process-content::before {
left: 100%;
}

.ccl-professnegsingle--process-content h3 {
font-size: 1.7rem;
margin-bottom: 16px;
color: var(--ccl-primary-blue);
display: flex;
align-items: center;
gap: 12px;
position: relative;
}

.ccl-professnegsingle--process-icon {
width: 48px;
height: 48px;
min-width: 48px;
background: linear-gradient(135deg, rgba(29, 99, 255, 0.1), rgba(11, 92, 255, 0.05));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--ccl-primary-blue);
font-size: 1.3rem;
transition: all 0.3s ease;
}

.ccl-professnegsingle--process-step:hover .ccl-professnegsingle--process-icon {
background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
color: var(--ccl-white);
transform: rotate(-5deg);
}

.ccl-professnegsingle--process-content p {
color: var(--ccl-muted);
line-height: 1.8;
margin: 0;
font-size: 1rem;
position: relative;
}

.ccl-professnegsingle--process-highlight {
display: inline-block;
background: rgba(29, 99, 255, 0.1);
color: var(--ccl-primary-blue);
padding: 3px 8px;
border-radius: 4px;
font-weight: 600;
font-size: 0.95rem;
}

.ccl-professnegsingle--process-completion {
background: linear-gradient(135deg, var(--ccl-accent-green), #059669);
color: var(--ccl-white);
padding: 32px;
border-radius: 20px;
text-align: center;
margin-top: 40px;
box-shadow: 0 12px 32px rgba(16, 185, 129, 0.25);
}

.ccl-professnegsingle--process-completion h4 {
font-size: 1.8rem;
color: var(--ccl-white);
margin-bottom: 12px;
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
}

.ccl-professnegsingle--process-completion h4 i {
font-size: 2rem;
}

.ccl-professnegsingle--process-completion p {
font-size: 1.05rem;
color: rgba(255,255,255,0.95);
margin: 0 0 24px 0;
line-height: 1.7;
}

/* ============================================
SECTION 9: EVIDENCE SECTION
============================================ */

.ccl-professnegsingle--evidence-masonry {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 48px;
}

.ccl-professnegsingle--evidence-card-new {
background: var(--ccl-white);
border-radius: 20px;
overflow: hidden;
border: 2px solid var(--ccl-soft-border);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}

.ccl-professnegsingle--evidence-card-new:hover {
border-color: var(--ccl-primary-blue);
transform: translateY(-5px);
box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.ccl-professnegsingle--evidence-card-header {
background: linear-gradient(135deg, rgba(29, 99, 255, 0.1), rgba(11, 92, 255, 0.05));
padding: 28px;
display: flex;
align-items: center;
gap: 16px;
border-bottom: 2px solid var(--ccl-soft-border);
}

.ccl-professnegsingle--evidence-icon-new {
width: 64px;
height: 64px;
min-width: 64px;
background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
color: var(--ccl-white);
font-size: 1.8rem;
transition: all 0.3s ease;
}

.ccl-professnegsingle--evidence-card-new:hover .ccl-professnegsingle--evidence-icon-new {
transform: scale(1.1) rotate(5deg);
}

.ccl-professnegsingle--evidence-card-header h4 {
font-size: 1.3rem;
color: var(--ccl-ink);
margin: 0;
}

.ccl-professnegsingle--evidence-card-body {
padding: 24px 28px;
flex-grow: 1;
}

.ccl-professnegsingle--evidence-list {
list-style: none;
padding: 0;
margin: 0;
}

.ccl-professnegsingle--evidence-list li {
padding: 12px 0;
padding-left: 32px;
position: relative;
color: var(--ccl-muted);
font-size: 0.95rem;
line-height: 1.5;
border-bottom: 1px solid var(--ccl-off-white);
}

.ccl-professnegsingle--evidence-list li:last-child {
border-bottom: none;
}

.ccl-professnegsingle--evidence-list li::before {
content: '\f00c';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
position: absolute;
left: 0;
color: var(--ccl-accent-green);
font-size: 0.9rem;
}

.ccl-professnegsingle--evidence-cta-box {
background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
border-radius: 24px;
padding: 48px;
text-align: center;
margin-top: 48px;
color: var(--ccl-white);
}

.ccl-professnegsingle--evidence-cta-box h4 {
font-size: 2rem;
color: var(--ccl-white);
margin-bottom: 16px;
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
}

.ccl-professnegsingle--evidence-cta-box h4 i {
font-size: 2.2rem;
}

.ccl-professnegsingle--evidence-cta-box p {
font-size: 1.15rem;
color: rgba(255,255,255,0.95);
line-height: 1.7;
margin-bottom: 32px;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

/* ============================================
SECTION 10: FEES SECTION
============================================ */

.ccl-professnegsingle--fees-content {
background: var(--ccl-white);
padding: 48px;
border-radius: 20px;
border: 2px solid var(--ccl-soft-border);
margin-top: 48px;
}

.ccl-professnegsingle--fees-highlight {
background: linear-gradient(135deg, rgba(29, 99, 255, 0.05), rgba(11, 92, 255, 0.1));
padding: 32px;
border-radius: 16px;
border-left: 5px solid var(--ccl-primary-blue);
margin-bottom: 32px;
}

.ccl-professnegsingle--fees-highlight h3 {
font-size: 1.8rem;
color: var(--ccl-primary-blue);
margin-bottom: 12px;
}

.ccl-professnegsingle--fees-highlight p {
font-size: 1.1rem;
color: var(--ccl-ink);
margin: 0;
}

.ccl-professnegsingle--fees-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 16px;
margin-top: 32px;
}

.ccl-professnegsingle--fees-item {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 16px;
background: var(--ccl-off-white);
border-radius: 12px;
}

.ccl-professnegsingle--fees-item i {
color: var(--ccl-accent-green);
font-size: 1.2rem;
margin-top: 4px;
}

.ccl-professnegsingle--fees-item span {
color: var(--ccl-muted);
font-size: 0.95rem;
}

.ccl-professnegsingle--footnote {
font-size: 0.85rem;
color: var(--ccl-muted);
margin-top: 12px;
}

.ccl-professnegsingle--asterisk {
color: var(--ccl-primary-blue);
font-weight: 700;
}

.ccl-professnegsingle--alert {
background: #fff8e1;
border-left: 4px solid var(--ccl-accent-gold);
padding: 20px;
border-radius: 8px;
margin-top: 32px;
border: 2px solid #ffd54f;
}

.ccl-professnegsingle--alert h4 {
font-size: 1.1rem;
color: #6d4c00;
margin-bottom: 8px;
display: flex;
align-items: center;
gap: 10px;
}

.ccl-professnegsingle--alert p {
color: #6d4c00;
margin: 0;
font-size: 0.95rem;
}

.ccl-professnegsingle--alert a {
color: #0846c1;
font-weight: 600;
}

/* ============================================
SECTION 11: WHY CHOOSE US SECTION
============================================ */

.ccl-professnegsingle--why-showcase {
margin-top: 48px;
}

.ccl-professnegsingle--why-hero-card {
background: linear-gradient(135deg, rgba(29, 99, 255, 0.05), rgba(16, 185, 129, 0.05));
border: 3px solid var(--ccl-primary-blue);
border-radius: 24px;
padding: 48px;
margin-bottom: 40px;
}

.ccl-professnegsingle--why-hero-content {
display: grid;
grid-template-columns: auto 1fr;
gap: 32px;
align-items: center;
}

.ccl-professnegsingle--why-hero-icon {
width: 120px;
height: 120px;
background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
border-radius: 24px;
display: flex;
align-items: center;
justify-content: center;
color: var(--ccl-white);
font-size: 4rem;
box-shadow: 0 12px 40px rgba(29, 99, 255, 0.3);
}

.ccl-professnegsingle--why-hero-text h3 {
font-size: 2.5rem;
color: var(--ccl-primary-blue);
margin-bottom: 16px;
}

.ccl-professnegsingle--why-hero-text p {
font-size: 1.15rem;
color: var(--ccl-muted);
line-height: 1.8;
margin: 0;
}

.ccl-professnegsingle--why-features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin-bottom: 40px;
}

.ccl-professnegsingle--why-feature-card {
background: var(--ccl-white);
border-radius: 20px;
padding: 32px;
border: 2px solid var(--ccl-soft-border);
transition: all 0.3s ease;
display: flex;
gap: 20px;
}

.ccl-professnegsingle--why-feature-card:hover {
border-color: var(--ccl-primary-blue);
transform: translateY(-5px);
box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.ccl-professnegsingle--why-feature-icon {
width: 70px;
height: 70px;
min-width: 70px;
background: linear-gradient(135deg, rgba(29, 99, 255, 0.1), rgba(11, 92, 255, 0.15));
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
color: var(--ccl-primary-blue);
font-size: 2rem;
transition: all 0.3s ease;
}

.ccl-professnegsingle--why-feature-card:hover .ccl-professnegsingle--why-feature-icon {
background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
color: var(--ccl-white);
transform: scale(1.1) rotate(5deg);
}

.ccl-professnegsingle--why-feature-content h4 {
font-size: 1.3rem;
color: var(--ccl-ink);
margin-bottom: 12px;
}

.ccl-professnegsingle--why-feature-content p {
color: var(--ccl-muted);
line-height: 1.7;
margin: 0;
font-size: 0.95rem;
}

/* ============================================
COMPARISON TABLES
============================================ */

.ccl-professnegsingle--comparison-table {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
margin-top: 48px;
}

.ccl-professnegsingle--comparison-column {
background: var(--ccl-white);
border: 2px solid var(--ccl-soft-border);
border-radius: 20px;
overflow: hidden;
transition: all 0.3s ease;
}

.ccl-professnegsingle--comparison-column:hover {
transform: translateY(-5px);
box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.ccl-professnegsingle--comparison-column.featured {
border-color: var(--ccl-primary-blue);
border-width: 3px;
transform: scale(1.05);
}

.ccl-professnegsingle--comparison-header {
background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
color: var(--ccl-white);
padding: 24px;
text-align: center;
}

.ccl-professnegsingle--comparison-header h4 {
font-size: 1.4rem;
margin-bottom: 8px;
color: var(--ccl-white);
}

.ccl-professnegsingle--comparison-header p {
font-size: 0.9rem;
opacity: 0.9;
margin: 0;
}

.ccl-professnegsingle--comparison-body {
padding: 28px;
}

.ccl-professnegsingle--comparison-body ul {
list-style: none;
padding: 0;
margin: 0;
}

.ccl-professnegsingle--comparison-body li {
padding: 12px 0;
border-bottom: 1px solid var(--ccl-soft-border);
display: flex;
align-items: center;
gap: 12px;
}

.ccl-professnegsingle--comparison-body li:last-child {
border-bottom: none;
}

.ccl-professnegsingle--comparison-body li i {
color: var(--ccl-accent-green);
font-size: 1.1rem;
}

/* ============================================
SECTION 12: FAQ SECTION
============================================ */

.ccl-professnegsingle--faq-list {
margin-top: 48px;
max-width: 900px;
margin-left: auto;
margin-right: auto;
}

.ccl-professnegsingle--faq-item {
background: var(--ccl-white);
border: 2px solid var(--ccl-soft-border);
border-radius: 16px;
margin-bottom: 20px;
overflow: hidden;
transition: all 0.3s ease;
}

.ccl-professnegsingle--faq-item:hover {
border-color: var(--ccl-primary-blue);
}

.ccl-professnegsingle--faq-question {
width: 100%;
background: transparent;
border: none;
padding: 24px 28px;
text-align: left;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-family: var(--ccl-font-display);
font-size: 1.15rem;
font-weight: 800;
color: var(--ccl-ink);
transition: all 0.3s ease;
}

.ccl-professnegsingle--faq-question:hover {
color: var(--ccl-primary-blue);
}

.ccl-professnegsingle--faq-icon {
width: 32px;
height: 32px;
min-width: 32px;
background: var(--ccl-off-white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--ccl-primary-blue);
transition: all 0.3s ease;
}

.ccl-professnegsingle--faq-item.active .ccl-professnegsingle--faq-icon {
background: var(--ccl-primary-blue);
color: var(--ccl-white);
transform: rotate(180deg);
}

.ccl-professnegsingle--faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.ccl-professnegsingle--faq-item.active .ccl-professnegsingle--faq-answer {
max-height: 1000px;
}

.ccl-professnegsingle--faq-answer-content {
padding: 0 28px 24px;
color: var(--ccl-muted);
line-height: 1.7;
}

.ccl-professnegsingle--faq-answer-content p {
margin-bottom: 12px;
}

.ccl-professnegsingle--faq-answer-content p:last-child {
margin-bottom: 0;
}

/* ============================================
SECTION 13: RESOURCES SECTION
============================================ */

.ccl-professnegsingle--resources-showcase {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
margin-top: 48px;
}

.ccl-professnegsingle--resource-card-new {
background: var(--ccl-white);
border-radius: 24px;
overflow: hidden;
border: 2px solid var(--ccl-soft-border);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
display: flex;
flex-direction: column;
position: relative;
}

.ccl-professnegsingle--resource-card-new::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: linear-gradient(90deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
transform: translateY(-5px);
transition: transform 0.4s ease;
}

.ccl-professnegsingle--resource-card-new:hover {
transform: translateY(-8px);
box-shadow: 0 20px 60px rgba(0,0,0,0.15);
border-color: var(--ccl-primary-blue);
}

.ccl-professnegsingle--resource-card-new:hover::before {
transform: translateY(0);
}

.ccl-professnegsingle--resource-visual {
height: 180px;
background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
display: flex;
align-items: center;
justify-content: center;
color: var(--ccl-white);
font-size: 4rem;
position: relative;
overflow: hidden;
}

.ccl-professnegsingle--resource-visual::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
animation: ccl-professnegsingle-glow-pulse 8s ease-in-out infinite;
}

.ccl-professnegsingle--resource-visual i {
position: relative;
z-index: 1;
transition: all 0.4s ease;
}

.ccl-professnegsingle--resource-card-new:hover .ccl-professnegsingle--resource-visual i {
transform: scale(1.15) rotate(-5deg);
}

.ccl-professnegsingle--resource-card-new:nth-child(1) .ccl-professnegsingle--resource-visual {
background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.ccl-professnegsingle--resource-card-new:nth-child(2) .ccl-professnegsingle--resource-visual {
background: linear-gradient(135deg, #059669, #10b981);
}

.ccl-professnegsingle--resource-card-new:nth-child(3) .ccl-professnegsingle--resource-visual {
background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.ccl-professnegsingle--resource-card-new:nth-child(4) .ccl-professnegsingle--resource-visual {
background: linear-gradient(135deg, #dc2626, #f87171);
}

.ccl-professnegsingle--resource-content-new {
padding: 32px;
flex-grow: 1;
display: flex;
flex-direction: column;
}

.ccl-professnegsingle--resource-badge {
display: inline-block;
background: linear-gradient(135deg, rgba(29, 99, 255, 0.1), rgba(11, 92, 255, 0.05));
color: var(--ccl-primary-blue);
padding: 8px 16px;
border-radius: 8px;
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 16px;
align-self: flex-start;
border: 1px solid rgba(29, 99, 255, 0.2);
}

.ccl-professnegsingle--resource-card-new:nth-child(1) .ccl-professnegsingle--resource-badge {
background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(6, 182, 212, 0.05));
color: #0891b2;
border-color: rgba(8, 145, 178, 0.2);
}

.ccl-professnegsingle--resource-card-new:nth-child(2) .ccl-professnegsingle--resource-badge {
background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.05));
color: #059669;
border-color: rgba(5, 150, 105, 0.2);
}

.ccl-professnegsingle--resource-card-new:nth-child(3) .ccl-professnegsingle--resource-badge {
background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(167, 139, 250, 0.05));
color: #7c3aed;
border-color: rgba(124, 58, 237, 0.2);
}

.ccl-professnegsingle--resource-card-new:nth-child(4) .ccl-professnegsingle--resource-badge {
background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(248, 113, 113, 0.05));
color: #dc2626;
border-color: rgba(220, 38, 38, 0.2);
}

.ccl-professnegsingle--resource-content-new h4 {
font-size: 1.5rem;
color: var(--ccl-ink);
margin-bottom: 12px;
line-height: 1.3;
}

.ccl-professnegsingle--resource-content-new p {
color: var(--ccl-muted);
line-height: 1.7;
margin-bottom: 24px;
flex-grow: 1;
font-size: 0.98rem;
}

.ccl-professnegsingle--resource-link-new {
display: inline-flex;
align-items: center;
gap: 10px;
color: var(--ccl-primary-blue);
font-weight: 700;
font-size: 1.05rem;
text-decoration: none;
transition: all 0.3s ease;
align-self: flex-start;
padding: 10px 20px 10px 0;
}

.ccl-professnegsingle--resource-link-new:hover {
gap: 16px;
color: var(--ccl-cta-dark);
}

.ccl-professnegsingle--resource-link-new i {
width: 32px;
height: 32px;
background: linear-gradient(135deg, rgba(29, 99, 255, 0.1), rgba(11, 92, 255, 0.05));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
transition: all 0.3s ease;
}

.ccl-professnegsingle--resource-link-new:hover i {
background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
color: var(--ccl-white);
transform: translateX(4px);
}

.ccl-professnegsingle--resource-card-new:first-child {
grid-column: 1 / -1;
display: grid;
grid-template-columns: 300px 1fr;
}

.ccl-professnegsingle--resource-card-new:first-child .ccl-professnegsingle--resource-visual {
height: 100%;
min-height: 300px;
}

.ccl-professnegsingle--resource-card-new:first-child .ccl-professnegsingle--resource-content-new {
padding: 40px;
}

.ccl-professnegsingle--resource-card-new:first-child h4 {
font-size: 2rem;
}

.ccl-professnegsingle--resource-card-new:first-child p {
font-size: 1.1rem;
}

.ccl-professnegsingle--resources-cta {
background: linear-gradient(135deg, var(--ccl-primary-blue), var(--ccl-cta-blue));
border-radius: 24px;
padding: 48px;
text-align: center;
margin-top: 48px;
color: var(--ccl-white);
position: relative;
overflow: hidden;
}

.ccl-professnegsingle--resources-cta::before {
content: '';
position: absolute;
top: -50%;
left: -10%;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
border-radius: 50%;
}

.ccl-professnegsingle--resources-cta h3 {
font-size: 2.2rem;
color: var(--ccl-white);
margin-bottom: 16px;
position: relative;
z-index: 1;
}

.ccl-professnegsingle--resources-cta p {
font-size: 1.15rem;
color: rgba(255,255,255,0.95);
margin-bottom: 28px;
position: relative;
z-index: 1;
line-height: 1.7;
}

.ccl-professnegsingle--resources-cta .ccl-professnegsingle--btn {
position: relative;
z-index: 1;
}

/* ============================================
RESPONSIVE ADDITIONS FOR SECTIONS 7-13
============================================ */

@media (max-width: 1024px) {
.ccl-professnegsingle--evidence-masonry {
    grid-template-columns: repeat(2, 1fr);
}

.ccl-professnegsingle--why-features-grid {
    grid-template-columns: 1fr;
}

.ccl-professnegsingle--resources-showcase {
    grid-template-columns: 1fr;
}

.ccl-professnegsingle--resource-card-new:first-child {
    grid-template-columns: 1fr;
}

.ccl-professnegsingle--resource-card-new:first-child .ccl-professnegsingle--resource-visual {
    min-height: 200px;
}
}

@media (max-width: 768px) {
.ccl-professnegsingle--process-step {
    grid-template-columns: 70px 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.ccl-professnegsingle--process-number {
    width: 70px;
    height: 70px;
    font-size: 2rem;
}

.ccl-professnegsingle--process-step:not(:last-child)::after {
    left: 35px;
    top: 70px;
    bottom: -32px;
}

.ccl-professnegsingle--process-content {
    padding: 24px;
}

.ccl-professnegsingle--process-content h3 {
    font-size: 1.3rem;
    flex-direction: column;
    align-items: flex-start;
}

.ccl-professnegsingle--process-step:hover .ccl-professnegsingle--process-content {
    transform: translateX(5px);
}

.ccl-professnegsingle--evidence-masonry {
    grid-template-columns: 1fr;
}

.ccl-professnegsingle--why-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
}

.ccl-professnegsingle--why-hero-icon {
    margin: 0 auto;
}

.ccl-professnegsingle--timeline-container::before {
    left: 30px;
}

.ccl-professnegsingle--timeline-item {
    padding-left: 90px;
}

.ccl-professnegsingle--timeline-badge {
    width: 60px;
    height: 60px;
}

.ccl-professnegsingle--timeline-time {
    font-size: 1.2rem;
}

.ccl-professnegsingle--timeline-label {
    font-size: 0.6rem;
}

.ccl-professnegsingle--timeline-content {
    padding: 20px 24px;
}

.ccl-professnegsingle--timeline-content h4 {
    font-size: 1.2rem;
}

.ccl-professnegsingle--timelimits-cta {
    padding: 32px 24px;
}

.ccl-professnegsingle--timelimits-cta h4 {
    font-size: 1.6rem;
    flex-direction: column;
}

.ccl-professnegsingle--resource-visual {
    height: 160px;
    font-size: 3rem;
}

.ccl-professnegsingle--resource-content-new {
    padding: 24px;
}

.ccl-professnegsingle--resource-card-new:first-child .ccl-professnegsingle--resource-content-new {
    padding: 28px;
}

.ccl-professnegsingle--resource-content-new h4 {
    font-size: 1.3rem;
}

.ccl-professnegsingle--resource-card-new:first-child h4 {
    font-size: 1.6rem;
}

.ccl-professnegsingle--resources-cta {
    padding: 36px 24px;
}

.ccl-professnegsingle--resources-cta h3 {
    font-size: 1.8rem;
}
}

@media (max-width: 480px) {
.ccl-professnegsingle--process-step {
    grid-template-columns: 1fr;
    gap: 16px;
}

.ccl-professnegsingle--process-number {
    margin: 0 auto;
}

.ccl-professnegsingle--process-step:not(:last-child)::after {
    left: 50%;
    transform: translateX(-50%);
}
}