/* PAGE CONFIGURATION - Featured Clients Page */
    :root {
        --header-height: 80px;
        --header-height-mobile: 60px;
        --hero-padding-top: 160px;
        --hero-min-height: 60vh;
        --page-padding-top: 80px;
    }

    /* =================================================================
       FEATURED CLIENTS PAGE STYLES - Scoped to #custom-container-featured-clients
       ================================================================= */

    #custom-container-featured-clients {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Container */
    #custom-container-featured-clients .cms-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* Hero Section */
    #custom-container-featured-clients .featured-hero {
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-top: calc(var(--header-height) * -1);
        padding-top: calc(var(--hero-padding-top) + 40px);
        min-height: var(--hero-min-height);
        display: flex;
        align-items: center;
    }

    @media (max-width: 768px) {
        #custom-container-featured-clients .featured-hero {
            margin-top: 0;
            padding-top: calc(var(--header-height-mobile) + 60px);
            min-height: 50vh;
        }
    }

    #custom-container-featured-clients .hero-content {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    #custom-container-featured-clients .hero-badge {
        display: inline-block;
        background: rgba(255, 210, 31, 0.2);
        border: 1px solid var(--brand-accent);
        color: var(--brand-accent);
        padding: 0.5rem 1.5rem;
        border-radius: 2rem;
        font-size: var(--text-sm);
        font-weight: var(--font-weight-semibold);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1.5rem;
    }

    #custom-container-featured-clients .hero-title {
        font-size: var(--text-5xl);
        font-weight: var(--font-weight-bold);
        color: white;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    #custom-container-featured-clients .hero-subtitle {
        font-size: var(--text-lg);
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    #custom-container-featured-clients .hero-subtitle strong {
        color: var(--brand-accent);
        font-weight: var(--font-weight-semibold);
    }

    /* Intro Section */
    #custom-container-featured-clients .intro-section {
        padding: 5rem 0;
        background: var(--brand-light);
    }

    #custom-container-featured-clients .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    #custom-container-featured-clients .section-title {
        font-size: var(--text-4xl);
        font-weight: var(--font-weight-bold);
        color: var(--brand-dark);
        margin-bottom: 1rem;
    }

    #custom-container-featured-clients .section-subtitle {
        font-size: var(--text-lg);
        color: var(--brand-neutral);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Clients Grid */
    #custom-container-featured-clients .clients-section {
        padding: 5rem 0;
        background: white;
    }

    #custom-container-featured-clients .clients-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    @media (min-width: 1024px) {
        #custom-container-featured-clients .clients-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    #custom-container-featured-clients .client-card {
        background: white;
        border-radius: 1.5rem;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(44, 10, 113, 0.1);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 2px solid var(--brand-light);
        cursor: default;
    }

    #custom-container-featured-clients .client-card.linkable {
        cursor: pointer;
    }

    #custom-container-featured-clients .client-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(44, 10, 113, 0.15);
        border-color: var(--brand-accent);
    }

    #custom-container-featured-clients .client-logo {
        width: 100%;
        height: 120px;
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        font-size: var(--text-xl);
        font-weight: var(--font-weight-bold);
        color: white;
        text-align: center;
        padding: 1rem;
        border: 2px solid var(--brand-light);
        overflow: hidden;
    }

    #custom-container-featured-clients .client-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0.9rem;
    }

    #custom-container-featured-clients .client-card:hover .client-logo {
        border-color: var(--brand-accent);
    }

    #custom-container-featured-clients .client-card .client-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    #custom-container-featured-clients .client-website-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
        padding: 0.75rem 1.25rem;
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
        color: white;
        text-decoration: none;
        border-radius: 0.5rem;
        font-weight: var(--font-weight-semibold);
        font-size: var(--text-sm);
        transition: all 0.3s ease;
    }

    #custom-container-featured-clients .client-website-link:hover {
        background: var(--brand-accent);
        color: var(--brand-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(255, 210, 31, 0.3);
    }

    #custom-container-featured-clients .client-name {
        font-size: var(--text-2xl);
        font-weight: var(--font-weight-bold);
        color: var(--brand-dark);
        margin-bottom: 0.75rem;
    }

    #custom-container-featured-clients .client-industry {
        font-size: var(--text-sm);
        color: var(--brand-primary);
        font-weight: var(--font-weight-semibold);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 1.5rem;
    }

    #custom-container-featured-clients .client-description {
        font-size: var(--text-base);
        line-height: 1.7;
        color: var(--brand-neutral);
        margin-bottom: 1.5rem;
        flex-grow: 1;
    }

    #custom-container-featured-clients .client-achievements {
        margin-top: auto;
    }

    #custom-container-featured-clients .achievements-label {
        font-size: var(--text-sm);
        font-weight: var(--font-weight-semibold);
        color: var(--brand-dark);
        margin-bottom: 0.75rem;
    }

    #custom-container-featured-clients .achievements-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #custom-container-featured-clients .achievements-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
        font-size: var(--text-sm);
        color: var(--brand-neutral);
    }

    #custom-container-featured-clients .achievements-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--brand-accent);
        font-weight: var(--font-weight-bold);
    }

    /* Key Achievements Section */
    #custom-container-featured-clients .testimonials-section {
        padding: 5rem 0;
        background: white;
    }

    #custom-container-featured-clients .achievements-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    @media (min-width: 768px) {
        #custom-container-featured-clients .achievements-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (min-width: 1024px) {
        #custom-container-featured-clients .achievements-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    #custom-container-featured-clients .achievement-card {
        background: var(--brand-light);
        border-radius: 1rem;
        padding: 2rem;
        display: flex;
        align-items: flex-start;
        gap: 1.25rem;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    #custom-container-featured-clients .achievement-card:hover {
        transform: translateY(-5px);
        border-color: var(--brand-accent);
        box-shadow: 0 10px 30px rgba(44, 10, 113, 0.1);
    }

    #custom-container-featured-clients .achievement-icon {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
        transition: all 0.3s ease;
    }

    #custom-container-featured-clients .achievement-card:hover .achievement-icon {
        transform: scale(1.1);
    }

    #custom-container-featured-clients .achievement-text {
        font-size: var(--text-base);
        line-height: 1.6;
        color: var(--brand-neutral);
        font-weight: var(--font-weight-medium);
        margin: 0;
    }

    /* CTA Section */
    #custom-container-featured-clients .cta-section {
        padding: 5rem 0;
        background: var(--gradient-primary);
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    #custom-container-featured-clients .cta-pattern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.1;
        background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.3'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    }

    #custom-container-featured-clients .cta-content-wrapper {
        position: relative;
        z-index: 2;
    }

    #custom-container-featured-clients .cta-title {
        font-size: var(--text-4xl);
        font-weight: var(--font-weight-bold);
        color: white;
        margin-bottom: 1rem;
    }

    #custom-container-featured-clients .cta-description {
        font-size: var(--text-lg);
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    #custom-container-featured-clients .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    #custom-container-featured-clients .cta-btn {
        padding: 1rem 2rem;
        font-weight: var(--font-weight-semibold);
        text-decoration: none;
        border-radius: 0.5rem;
        transition: all 0.3s;
        display: inline-block;
    }

    #custom-container-featured-clients .cta-btn-primary {
        background: var(--brand-accent);
        color: var(--brand-dark);
    }

    #custom-container-featured-clients .cta-btn-primary:hover {
        background: var(--brand-accent);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 210, 31, 0.3);
    }

    #custom-container-featured-clients .cta-btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    #custom-container-featured-clients .cta-btn-secondary:hover {
        background: white;
        color: var(--brand-primary);
    }

    /* Responsive */
    @media (max-width: 768px) {
        #custom-container-featured-clients .hero-title {
            font-size: var(--text-3xl);
        }

        #custom-container-featured-clients .section-title {
            font-size: var(--text-2xl);
        }

        #custom-container-featured-clients .client-name {
            font-size: var(--text-xl);
        }
    }
