/* Recruiter Signup Page Styles */

/* Hero Section */
.recruiter-hero-callout {
    font-size: 20px;
    color: var(--headline-white);
    margin-top: 32px;
    font-weight: 600;
}

/* Section with Image Layout */
.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image on left layout - default order */
.section-with-image.image-left .section-image {
    order: 1;
}

.section-with-image.image-left .section-content {
    order: 2;
}

.section-content {
    width: 100%;
}

.section-image {
    width: 100%;
}

.recruiter-feature-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Who This Is For Section */
.recruiter-who-for {
    padding: 80px 0;
    background: var(--white);
}

.section-intro {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 32px;
    font-weight: 500;
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-purple);
}

.criteria-icon {
    font-size: 24px;
    color: var(--primary-purple);
    font-weight: 700;
    flex-shrink: 0;
}

.criteria-item p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.section-disclaimer {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* Certification Section */
.recruiter-certification {
    padding: 80px 0;
    background: var(--bg-purple-light);
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* How to Apply Section */
.recruiter-how-to-apply {
    padding: 80px 0;
    background: var(--white);
}

.apply-steps {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin: 48px 0;
    flex-wrap: wrap;
}

.apply-step {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    transition: var(--transition);
}

.apply-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.apply-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-purple);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.apply-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.4;
}

/* Why Choose Caddie Section */
.recruiter-why {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 48px auto;
}

.benefit-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.5;
}

.section-tagline {
    font-size: 20px;
    color: var(--primary-dark);
    text-align: center;
    font-weight: 500;
    margin-top: 40px;
}

/* Final CTA Section */
.recruiter-cta {
    padding: 100px 0;
    background: var(--primary-purple);
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 500;
    color: var(--headline-white);
    margin-bottom: 16px;
}

.cta-description {
    font-size: 20px;
    color: var(--body-text);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-contact {
    margin-top: 32px;
    font-size: 16px;
    color: var(--body-text);
}

.cta-contact a {
    color: var(--accent-lime);
    text-decoration: none;
    font-weight: 500;
}

.cta-contact a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-with-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-with-image .section-image,
    .section-with-image .section-content {
        order: unset;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 810px) {
    .recruiter-hero-callout {
        font-size: 18px;
    }

    .apply-steps {
        flex-direction: column;
        align-items: center;
    }

    .apply-step {
        max-width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 18px;
    }
}
