/* Component-specific styles to keep style.css clean */

/* --- TALENT TICKER --- */
.talent-ticker-wrapper {
    width: 100%;
    background: var(--col-neutral-offwhite);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6rem;
    /* Aggressive spacing to prevent overlap */
    z-index: 5;
}

.ticker-container {
    display: flex;
    width: fit-content;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #666;
    /* Muted specific color for logos */
    margin: 0 3rem;
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.ticker-item:hover {
    opacity: 1;
    color: var(--col-primary-dark);
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -12px;
    background: var(--col-neutral-offwhite);
    padding: 0 1rem;
    font-size: 0.75rem;
    color: var(--col-primary-forest);
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 10;
    text-transform: uppercase;
}


/* --- COMPARISON CARD (21st.dev style) --- */
.comparison-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--col-neutral-offwhite), white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.comparison-card {
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.card-agency {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #888;
}

.card-collective {
    background: var(--col-primary-dark);
    color: white;
    box-shadow: 0 20px 40px rgba(31, 61, 43, 0.25);
    transform: scale(1.05);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.cost-display {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1;
}

.cost-sub {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.7;
    display: block;
    margin-top: 5px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.card-collective .feature-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.check-icon {
    color: var(--col-accent-blue);
    margin-right: 8px;
}

.cross-icon {
    color: #ccc;
    margin-right: 8px;
}

.vs-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    color: var(--col-primary-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 3;
    font-family: 'Outfit', sans-serif;
}

@media(max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-collective {
        transform: scale(1);
    }

    .vs-badge {
        top: 0;
        transform: translate(-50%, -50%);
    }
}