/* =========================================
   AI ADOPTION LOGO SECTION
   High-Impact Monochrome Gold Treatment
   ========================================= */

.adoption-logos-section {
    position: relative;
    padding: var(--space-8) 0;
    /* Shorter height, neat and tidy */
    /* Premium "Champagne Gold" (Distinct from hero purple and section white) */
    background: #FDF6E3;
    color: var(--color-gray-900);
    border-top: 1px solid rgba(30, 11, 77, 0.05);
    z-index: 1;
}

.adoption-grid {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    /* Back to clean 2-column layout */
    gap: var(--space-12);
    align-items: flex-start;
    /* Align with top of logos for professional edge */
}

/* --- Content Styling --- */
.adoption-content {
    position: relative;
    padding-top: 5px;
    /* Nudge down slightly so first line of title hits the visual top of logos */
}

.adoption-content h2 {
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-2);
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    font-weight: 800;
}

.adoption-content p {
    font-size: var(--text-lg);
    color: var(--color-gray-700);
    margin-bottom: 0;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* --- Brand Arrow --- */
.adoption-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--color-gold);
    animation: arrowPulse 2s infinite ease-in-out;
    /* Re-enabled animation */
}

.adoption-arrow svg {
    width: 60px;
    height: 24px;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

/* --- Logo Grid Styling --- */
.logo-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    align-items: center;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: all var(--transition-base);
    /* Monochrome Gold Filter - Tuned for warm background */
    filter: grayscale(100%) brightness(0.6) sepia(100%) hue-rotate(5deg) saturate(500%) brightness(1.1);
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-5px);
    filter: none;
}

.logo-item img {
    max-width: 100px;
    height: auto;
    max-height: 40px;
    object-fit: contain;
}

.logo-label {
    margin-top: var(--space-3);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
    color: var(--color-gray-500);
}

.more-label {
    grid-column: span 4;
    text-align: right;
    font-size: 1.5rem;
    /* Larger and Bolder */
    color: var(--color-primary);
    font-weight: 900;
    /* Max Boldness */
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
    margin-top: var(--space-4);
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    /* Subtle depth */
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    .logo-showcase {
        gap: var(--space-4);
    }
}

@media (max-width: 992px) {
    .adoption-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-8);
    }

    .adoption-content p {
        justify-content: center;
    }

    .adoption-arrow {
        transform: rotate(90deg);
        margin: var(--space-2) 0;
        animation: arrowPulseMobile 2s infinite ease-in-out;
    }

    @keyframes arrowPulseMobile {

        0%,
        100% {
            transform: rotate(90deg) translateX(0);
        }

        50% {
            transform: rotate(90deg) translateX(10px);
        }
    }

    .logo-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

    .more-label {
        grid-column: span 3;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .logo-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .more-label {
        grid-column: span 2;
    }
}