/* ============================================================
   REGISTRATION LANDING — Hero + Employer/Jobseeker cards
   The "fe-*" sections (who-are-we, partners, why-us, roles) are
   styled by for-employers.css, which this page also loads.
   ============================================================ */

/* ===================== HERO SECTION ===================== */
.reg-hero {
    position: relative;
    padding-bottom: 120px;
    background: #f5f7fb;
}

.reg-hero__bg {
    position: relative;
    overflow: hidden;
    background-image: url('/new-design/assets/pictures/registration/hero-bg.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    min-height: 680px;
}

.reg-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 56px 24px 180px;
    max-width: 780px;
    margin: 0 auto;
}

/* Badge */
.reg-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 1.5px solid var(--primary0);
    border-radius: 50px;
    margin-bottom: 28px;
    background: rgba(38, 92, 255, 0.06);
}

.reg-badge__text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--primary0);
    text-transform: uppercase;
}

/* Heading */
.reg-heading {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.18;
    color: var(--text-header);
    margin: 0 0 20px;
    font-style: normal;
}

.reg-heading--blue {
    color: var(--primary0);
    font-style: normal;
    font-weight: 600;
}

/* Subheading */
.reg-subheading {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: #444;
    max-width: 620px;
    margin: 0 auto 48px;
}

.reg-subheading strong {
    font-weight: 600;
    color: var(--text-header);
}

/* ===================== REGISTRATION CARDS ===================== */
.reg-cards {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 960px;
    margin: -80px auto 0;
    padding: 0 24px;
}

.reg-card {
    background: #ffffff;
    border: 1px solid #e8ecf2;
    border-radius: 16px;
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
}

.reg-card__icon {
    margin-bottom: 24px;
}

.reg-card__icon img {
    width: 48px;
    height: 48px;
}

.reg-card__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-header);
    margin: 0 0 16px;
}

.reg-card__desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    margin: 0 0 24px;
}

.reg-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.reg-card__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #333;
}

.reg-card__check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.reg-card__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    background: var(--primary0);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
    margin-top: auto;
}

.reg-card__btn:hover {
    box-shadow: 0 6px 20px rgba(38, 92, 255, 0.35);
    text-decoration: none;
    color: #ffffff;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .reg-heading {
        font-size: 36px;
    }

    .reg-subheading {
        font-size: 15px;
        margin: 0 auto 24px;
    }

    .reg-hero__content {
        padding: 40px 20px 0;
    }

    .reg-hero__bg {
        min-height: 540px;
    }
}

@media (max-width: 768px) {
    .reg-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: -60px;
    }

    .reg-heading {
        font-size: 32px;
    }

    .reg-badge__text {
        font-size: 11px;
    }

    .reg-hero {
        padding-bottom: 40px;
    }

    .reg-hero__bg {
        min-height: 470px;
    }
}

@media (max-width: 480px) {
    .reg-heading {
        font-size: 28px;
    }

    .reg-card {
        padding: 28px 24px 24px;
    }

    .reg-card__title {
        font-size: 20px;
    }

    .reg-hero__bg {
        min-height: 420px;
    }
}
