/* --- Client Landing Page Consolidated Styles --- */

/* Action Buttons */
.hire_top_talent {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hire_top_talent:hover {
    color: #ffa500 !important; /* Orange */
    border-color: #ffa500 !important;
    text-decoration: none;
}

/* Section Spacing & Containers */
.section-hero-landing {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.section-features-landing {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.section-cta-dark {
    background-color: #0f172a; /* Slate 900 */
    color: #ffffff;
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

/* Grid & Layout Helpers */
.container-6xl {
    max-width: 72rem;
    margin: 0 auto;
}

.grid-2-col {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-2-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Typography & Elements */
.title-main {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.text-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    margin-bottom: 1rem;
    width: 100%;
}

.feature-card {
    padding-bottom: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.card-title {
    color: #4b5563;
}

.cta-title-xl {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .cta-title-xl {
        font-size: 4.5rem;
    }
}

.cta-subtitle-light {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 48rem;
    margin: 0 auto 3rem auto;
}

.highlight-orange {
    color: #f97316;
}

.flex-stack-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .flex-stack-mobile {
        flex-direction: row;
    }
}