/* ==================================================
   ALOTE HOMEPAGE
   Premium Landing Page
================================================== */


/* ==================================================
   HERO
================================================== */

.hero {

    position: relative;

    overflow: hidden;

    padding:
        115px 0 95px;

    background:
        radial-gradient(
            circle at 50% -10%,
            rgba(79, 70, 229, 0.13),
            transparent 48%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}


/* Decorative glow */

.hero::before {

    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    top: -300px;
    left: -220px;

    border-radius: 50%;

    background:
        rgba(79, 70, 229, 0.035);

    pointer-events: none;
}


.hero::after {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    bottom: -250px;

    border-radius: 50%;

    background:
        rgba(99, 102, 241, 0.04);

    pointer-events: none;
}


.hero-container {

    position: relative;

    z-index: 1;

    width:
        min(940px, calc(100% - 48px));

    margin-inline:
        auto;

    text-align:
        center;
}


/* ==================================================
   HERO BADGE
================================================== */

.hero-badge {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    padding:
        7px 13px;

    margin-bottom:
        22px;

    border:
        1px solid
        rgba(79, 70, 229, 0.12);

    border-radius:
        999px;

    background:
        var(--primary-light);

    color:
        var(--primary);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        0.02em;
}


/* Small live indicator */

.hero-badge::before {

    content:
        "";

    width:
        6px;

    height:
        6px;

    border-radius:
        50%;

    background:
        #6366f1;

    box-shadow:
        0 0 0 4px
        rgba(99, 102, 241, 0.10);
}


/* ==================================================
   HERO TITLE
================================================== */

.hero h1 {

    max-width:
        850px;

    margin:
        0 auto;

    color:
        #0f172a;

    font-size:
        clamp(48px, 7vw, 78px);

    line-height:
        1.02;

    letter-spacing:
        -0.055em;

    font-weight:
        800;
}


.hero h1 span {

    color:
        var(--primary);
}


/* ==================================================
   HERO DESCRIPTION
================================================== */

.hero-description {

    max-width:
        600px;

    margin:
        25px auto 36px;

    color:
        var(--text-secondary);

    font-size:
        16px;

    line-height:
        1.75;
}


/* ==================================================
   SEARCH BOX
================================================== */

.search-box {

    position:
        relative;

    z-index:
        2;

    width:
        min(800px, 100%);

    margin:
        0 auto;

    padding:
        7px;

    display:
        flex;

    align-items:
        center;

    gap:
        6px;

    background:
        rgba(255, 255, 255, 0.96);

    border:
        1px solid
        rgba(226, 232, 240, 0.95);

    border-radius:
        16px;

    box-shadow:
        0 18px 45px
        rgba(15, 23, 42, 0.08),

        0 3px 10px
        rgba(15, 23, 42, 0.03);

    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}


.search-box:focus-within {

    transform:
        translateY(-1px);

    border-color:
        rgba(79, 70, 229, 0.35);

    box-shadow:
        0 0 0 4px
        rgba(79, 70, 229, 0.07),

        0 20px 50px
        rgba(15, 23, 42, 0.09);
}


/* ==================================================
   SEARCH INPUT
================================================== */

.search-input-container {

    flex:
        1;

    min-width:
        0;

    display:
        flex;

    align-items:
        center;

    padding:
        0 14px;
}


.search-icon {

    flex-shrink:
        0;

    margin-right:
        10px;

    color:
        #94a3b8;

    font-size:
        23px;

    line-height:
        1;
}


.search-input-container input {

    width:
        100%;

    min-width:
        0;

    height:
        50px;

    border:
        none;

    outline:
        none;

    background:
        transparent;

    color:
        var(--text-primary);

    font-size:
        14px;
}


.search-input-container input::placeholder {

    color:
        #94a3b8;
}


/* ==================================================
   SEARCH BUTTON
================================================== */

.search-box button {

    flex-shrink:
        0;

    min-height:
        48px;

    padding:
        0 23px;

    border:
        none;

    border-radius:
        11px;

    background:
        var(--primary);

    color:
        #ffffff;

    font-size:
        13px;

    font-weight:
        700;

    transition:
        transform var(--transition-fast),
        background var(--transition-fast),
        box-shadow var(--transition-fast);
}


.search-box button:hover {

    transform:
        translateY(-1px);

    background:
        var(--primary-dark);

    box-shadow:
        0 8px 20px
        rgba(79, 70, 229, 0.18);
}


/* ==================================================
   QUICK FILTERS
================================================== */

.quick-filters {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-wrap:
        wrap;

    gap:
        8px;

    margin-top:
        20px;

    color:
        var(--text-muted);

    font-size:
        11px;
}


.quick-filters a {

    padding:
        5px 10px;

    border:
        1px solid
        var(--border);

    border-radius:
        999px;

    background:
        #ffffff;

    color:
        var(--text-secondary);

    font-weight:
        500;

    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}


.quick-filters a:hover {

    transform:
        translateY(-1px);

    border-color:
        rgba(79, 70, 229, 0.25);

    background:
        var(--primary-light);

    color:
        var(--primary);
}


/* ==================================================
   WORK MODES
================================================== */

.work-modes-section {

    padding:
        95px 0;

    background:
        var(--background-soft);
}


.work-mode-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        16px;
}


.work-mode-card {

    position:
        relative;

    min-height:
        190px;

    padding:
        25px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    overflow:
        hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        18px;

    background:
        #ffffff;

    box-shadow:
        var(--shadow-sm);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.work-mode-card::before {

    content:
        "";

    position:
        absolute;

    width:
        120px;

    height:
        120px;

    right:
        -60px;

    bottom:
        -60px;

    border-radius:
        50%;

    background:
        rgba(79, 70, 229, 0.035);

    transition:
        transform var(--transition);
}


.work-mode-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(79, 70, 229, 0.25);

    box-shadow:
        var(--shadow-lg);
}


.work-mode-card:hover::before {

    transform:
        scale(1.3);
}


/* ==================================================
   MODE ICON
================================================== */

.mode-icon {

    width:
        43px;

    height:
        43px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        12px;

    background:
        var(--primary-light);

    color:
        var(--primary);

    font-size:
        19px;

    transition:
        transform var(--transition),
        background var(--transition);
}


.work-mode-card:hover .mode-icon {

    transform:
        scale(1.06);

    background:
        var(--primary-soft);
}


.work-mode-card h3 {

    margin-top:
        17px;

    color:
        var(--text-primary);

    font-size:
        16px;

    font-weight:
        700;

    letter-spacing:
        -0.02em;
}


.work-mode-card p {

    margin-top:
        5px;

    color:
        var(--text-secondary);

    font-size:
        12px;

    line-height:
        1.6;
}


/* ==================================================
   CARD ARROW
================================================== */

.arrow {

    position:
        absolute;

    top:
        24px;

    right:
        24px;

    color:
        var(--text-muted);

    font-size:
        18px;

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}


.work-mode-card:hover .arrow {

    color:
        var(--primary);

    transform:
        translate(3px, -3px);
}


/* ==================================================
   CATEGORIES
================================================== */

.categories-section {

    padding:
        105px 0;

    background:
        #ffffff;
}


.categories-section .container {

    width:
        min(1180px, calc(100% - 48px));

    margin-inline:
        auto;
}


.category-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        13px;
}


.category-grid a {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    min-height:
        76px;

    padding:
        0 18px;

    overflow:
        hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        14px;

    background:
        #ffffff;

    color:
        var(--text-primary);

    font-size:
        13px;

    font-weight:
        650;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}


.category-grid a::before {

    content:
        "";

    position:
        absolute;

    left:
        0;

    top:
        0;

    bottom:
        0;

    width:
        3px;

    background:
        var(--primary);

    transform:
        scaleY(0);

    transform-origin:
        bottom;

    transition:
        transform var(--transition);
}


.category-grid a:hover {

    transform:
        translateY(-3px);

    border-color:
        rgba(79, 70, 229, 0.25);

    background:
        #fcfcff;

    box-shadow:
        var(--shadow-md);
}


.category-grid a:hover::before {

    transform:
        scaleY(1);
}


/* ==================================================
   LATEST JOBS
================================================== */

.latest-jobs {

    padding:
        100px 0;

    background:
        var(--background-soft);
}


.section-heading {

    margin-bottom:
        35px;
}


.section-label {

    display:
        block;

    margin-bottom:
        8px;
}


.section-heading h2 {

    color:
        var(--text-primary);

    font-size:
        36px;

    line-height:
        1.1;

    letter-spacing:
        -0.04em;
}


.section-heading p {

    max-width:
        580px;

    margin-top:
        11px;

    color:
        var(--text-secondary);

    font-size:
        14px;

    line-height:
        1.7;
}


/* ==================================================
   SECTION HEADER
================================================== */

.section-header {

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        25px;

    margin-bottom:
        34px;
}


.section-header h2 {

    margin-top:
        7px;

    color:
        var(--text-primary);

    font-size:
        36px;

    line-height:
        1.1;

    letter-spacing:
        -0.04em;
}


.view-all {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        6px;

    color:
        var(--primary);

    font-size:
        13px;

    font-weight:
        650;

    white-space:
        nowrap;

    transition:
        transform var(--transition-fast),
        color var(--transition-fast);
}


.view-all:hover {

    color:
        var(--primary-dark);

    transform:
        translateX(2px);
}


/* ==================================================
   JOB GRID
================================================== */

.job-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        17px;
}


/* ==================================================
   JOB CARD
================================================== */

.job-card {

    position:
        relative;

    padding:
        25px;

    overflow:
        hidden;

    border:
        1px solid
        rgba(226, 232, 240, 0.95);

    border-radius:
        18px;

    background:
        #ffffff;

    box-shadow:
        var(--shadow-sm);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.job-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(79, 70, 229, 0.22);

    box-shadow:
        var(--shadow-lg);
}


/* ==================================================
   JOB CARD TOP
================================================== */

.job-card-top {

    display:
        flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    gap:
        12px;

    margin-bottom:
        20px;
}


.company-logo {

    width:
        46px;

    height:
        46px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex-shrink:
        0;

    border-radius:
        12px;

    background:
        var(--primary-light);

    color:
        var(--primary);

    font-size:
        11px;

    font-weight:
        750;
}


/* ==================================================
   JOB BADGES
================================================== */

.job-badge {

    padding:
        5px 9px;

    border-radius:
        999px;

    font-size:
        9px;

    font-weight:
        700;

    white-space:
        nowrap;
}


.job-badge.remote {

    background:
        var(--success-bg);

    color:
        var(--success);
}


.job-badge.hybrid {

    background:
        var(--warning-bg);

    color:
        var(--warning);
}


.job-badge.onsite {

    background:
        #f1f5f9;

    color:
        #475569;
}


/* ==================================================
   JOB TITLE
================================================== */

.job-card h3 {

    color:
        var(--text-primary);

    font-size:
        17px;

    line-height:
        1.3;

    letter-spacing:
        -0.025em;
}


.company-name {

    margin-top:
        5px;

    color:
        var(--text-secondary);

    font-size:
        12px;
}


/* ==================================================
   JOB INFORMATION
================================================== */

.job-info {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        6px;

    margin-top:
        19px;
}


.job-info span {

    padding:
        5px 8px;

    border-radius:
        6px;

    background:
        var(--background-soft);

    color:
        var(--text-secondary);

    font-size:
        9px;
}


/* ==================================================
   JOB CARD FOOTER
================================================== */

.job-card-footer {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        12px;

    margin-top:
        23px;

    padding-top:
        14px;

    border-top:
        1px solid
        var(--border);

    color:
        var(--text-muted);

    font-size:
        9px;
}


.job-card-footer a {

    color:
        var(--primary);

    font-size:
        11px;

    font-weight:
        650;

    transition:
        color var(--transition-fast);
}


.job-card-footer a:hover {

    color:
        var(--primary-dark);
}


/* ==================================================
   WHY ALOTE
================================================== */

.why-alote {

    position:
        relative;

    overflow:
        hidden;

    padding:
        110px 0;

    background:
        #111827;

    color:
        #ffffff;
}


.why-alote::before {

    content:
        "";

    position:
        absolute;

    width:
        500px;

    height:
        500px;

    top:
        -250px;

    right:
        -150px;

    border-radius:
        50%;

    background:
        rgba(99, 102, 241, 0.08);

    pointer-events:
        none;
}


.why-container {

    position:
        relative;

    z-index:
        1;

    width:
        min(1180px, calc(100% - 48px));

    margin-inline:
        auto;

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        90px;

    align-items:
        center;
}


/* ==================================================
   WHY CONTENT
================================================== */

.why-content .section-label {

    color:
        #a5b4fc;
}


.why-content h2 {

    max-width:
        540px;

    margin-top:
        12px;

    color:
        #ffffff;

    font-size:
        43px;

    line-height:
        1.12;

    letter-spacing:
        -0.045em;
}


.why-content h2 span {

    color:
        #a5b4fc;
}


.why-content > p {

    max-width:
        500px;

    margin:
        19px 0 27px;

    color:
        #94a3b8;

    font-size:
        14px;

    line-height:
        1.8;
}


.why-content .primary-button {

    background:
        #ffffff;

    color:
        var(--primary);
}


.why-content .primary-button:hover {

    background:
        #eef2ff;

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.15);
}


/* ==================================================
   BENEFITS
================================================== */

.benefits {

    display:
        flex;

    flex-direction:
        column;
}


.benefit {

    display:
        grid;

    grid-template-columns:
        45px 1fr;

    gap:
        18px;

    padding:
        24px 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.09);
}


.benefit:first-child {

    padding-top:
        0;
}


.benefit:last-child {

    border-bottom:
        none;

    padding-bottom:
        0;
}


.benefit-number {

    color:
        #6366f1;

    font-size:
        10px;

    font-weight:
        800;

    letter-spacing:
        0.05em;
}


.benefit h3 {

    color:
        #ffffff;

    font-size:
        15px;

    font-weight:
        700;
}


.benefit p {

    margin-top:
        5px;

    color:
        #94a3b8;

    font-size:
        11px;

    line-height:
        1.65;
}


/* ==================================================
   EMPLOYER CTA
================================================== */

.home-employer-cta {

    padding: 100px 0;

    background: #f8fafc;
}


.home-employer-card {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

    min-height: 280px;

    padding: 55px 60px;

    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            #111827 0%,
            #17164a 55%,
            #312e81 100%
        );

    overflow: hidden;

    box-shadow:
        0 25px 70px
        rgba(15, 23, 42, 0.14);
}


/* Decorative glow */

.home-employer-card::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -100px;
    top: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(129, 140, 248, 0.30),
            transparent 68%
        );

    pointer-events: none;
}


/* Second decorative circle */

.home-employer-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: 230px;
    bottom: -130px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    pointer-events: none;
}


/* Content */

.home-employer-content {

    position: relative;

    z-index: 2;

    max-width: 650px;
}


.home-employer-content .section-label {

    display: inline-block;

    margin-bottom: 14px;

    color: #a5b4fc;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.home-employer-content h2 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.1;

    letter-spacing: -0.04em;
}


.home-employer-content p {

    max-width: 560px;

    margin: 17px 0 0;

    color: #aeb8ca;

    font-size: 14px;

    line-height: 1.8;
}


/* ==================================================
   POST JOB BUTTON
================================================== */

.home-employer-button {

    position: relative;

    z-index: 3;

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 22px;

    min-width: 155px;

    padding: 8px 9px 8px 20px;

    border-radius: 13px;

    background: #ffffff;

    color: #111827;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.home-employer-button span {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 10px;

    background: #4f46e5;

    color: #ffffff;

    transition:
        transform 0.25s ease;
}


.home-employer-button:hover {

    transform: translateY(-3px);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.28);
}


.home-employer-button:hover span {

    transform: translateX(3px);
}


/* ==================================================
   EMPLOYER CTA RESPONSIVE
================================================== */

@media (max-width: 800px) {

    .home-employer-card {

        align-items: flex-start;

        flex-direction: column;

        gap: 30px;

        padding: 45px 35px;

    }


    .home-employer-button {

        width: 100%;

        box-sizing: border-box;

    }

}


@media (max-width: 600px) {

    .home-employer-cta {

        padding: 70px 0;

    }


    .home-employer-card {

        min-height: auto;

        padding: 35px 25px;

        border-radius: 20px;

    }


    .home-employer-content h2 {

        font-size: 30px;

    }


    .home-employer-content p {

        font-size: 13px;

    }

}


/* ==================================================
   BURMESE TYPOGRAPHY
================================================== */

html[lang="my"] .hero h1 {

    font-family:
        "Noto Sans Myanmar",
        "Myanmar Text",
        sans-serif;

    font-size:
        clamp(34px, 5vw, 50px);

    line-height:
        1.45;

    letter-spacing:
        0;

    max-width:
        820px;
}


html[lang="my"] .hero-description,
html[lang="my"] .work-mode-card,
html[lang="my"] .category-grid,
html[lang="my"] .job-card,
html[lang="my"] .why-content,
html[lang="my"] .benefits {

    font-family:
        "Noto Sans Myanmar",
        "Myanmar Text",
        sans-serif;
}


html[lang="my"] .hero-description {

    font-size:
        14px;

    line-height:
        1.9;
}


html[lang="my"] .explore-jobs-button {

    font-family:
        "Noto Sans Myanmar",
        "Myanmar Text",
        sans-serif;

    font-size:
        12px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .work-mode-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .category-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .job-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .why-container {

        grid-template-columns:
            1fr;

        gap:
            60px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 760px) {

    .hero {

        padding:
            78px 0 65px;
    }


    .hero-container {

        width:
            calc(100% - 32px);
    }


    .hero h1 {

        font-size:
            45px;

        line-height:
            1.04;

        letter-spacing:
            -0.035em;
    }


    .hero-description {

        margin-top:
            20px;

        margin-bottom:
            28px;

        font-size:
            14px;
    }


    .search-box {

        flex-direction:
            column;

        padding:
            7px;

        border-radius:
            14px;
    }


    .search-input-container {

        width:
            100%;

        padding:
            0 10px;
    }


    .search-input-container input {

        height:
            46px;
    }


    .search-box button {

        width:
            100%;

        min-height:
            46px;
    }


    .quick-filters {

        margin-top:
            16px;
    }


    .work-modes-section,
    .categories-section,
    .latest-jobs,
    .why-alote {

        padding:
            70px 0;
    }


    .work-mode-grid,
    .category-grid,
    .job-grid {

        grid-template-columns:
            1fr;
    }


    .work-mode-card {

        min-height:
            165px;

        padding:
            22px;
    }


    .category-grid a {

        min-height:
            68px;
    }


    .section-heading h2,
    .section-header h2 {

        font-size:
            29px;
    }


    .section-header {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            10px;
    }


    .why-container {

        width:
            calc(100% - 32px);

        gap:
            48px;
    }


    .why-content h2 {

        font-size:
            34px;
    }


    .benefit {

        grid-template-columns:
            35px 1fr;

        gap:
            14px;

        padding:
            20px 0;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 420px) {

    .hero {

        padding:
            65px 0 55px;
    }


    .hero-container {

        width:
            calc(100% - 28px);
    }


    .hero h1 {

        font-size:
            40px;
    }


    .hero-description {

        font-size:
            13px;
    }


    .hero-badge {

        font-size:
            10px;
    }


    .quick-filters {

        gap:
            6px;
    }


    .quick-filters a {

        padding:
            5px 8px;

        font-size:
            10px;
    }


    .work-mode-card {

        min-height:
            150px;
    }


    .job-card {

        padding:
            21px;
    }


    .why-content h2 {

        font-size:
            30px;
    }

}
/* ==================================================
   HERO VISUAL
================================================== */

.hero-visual {
    position: relative;

    width: 100%;
    max-width: 520px;

    min-height: 390px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==================================================
   MAIN HERO CARD
================================================== */

.hero-card-main {

    position: relative;
    z-index: 2;

    width: 320px;

    padding: 28px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 22px;

    box-shadow:
        0 25px 60px
        rgba(15, 23, 42, 0.10);

    transform: rotate(-2deg);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.hero-visual:hover .hero-card-main {

    transform:
        rotate(0deg)
        translateY(-5px);

    box-shadow:
        0 30px 70px
        rgba(15, 23, 42, 0.14);
}


/* ==================================================
   MAIN CARD HEADER
================================================== */

.hero-card-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 24px;
}


.hero-card-label {

    color: #94a3b8;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.10em;

    text-transform: uppercase;
}


.hero-card-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 10px;

    background: #eef2ff;

    color: #4f46e5;

    font-size: 15px;
}


/* ==================================================
   MAIN CARD TITLE
================================================== */

.hero-card-main h3 {

    margin: 0 0 22px;

    color: #0f172a;

    font-size: 25px;

    line-height: 1.15;

    letter-spacing: -0.035em;
}


/* ==================================================
   JOB CATEGORY ITEMS
================================================== */

.hero-job-list {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.hero-job-item {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 13px 14px;

    background: #f8fafc;

    border: 1px solid #eef2f7;

    border-radius: 11px;

    color: #334155;

    font-size: 12px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.hero-job-item:hover {

    background: #f8f8ff;

    border-color: #dfe2ff;

    transform: translateX(3px);
}


.hero-job-item span:last-child {

    color: #4f46e5;

    font-size: 14px;
}


/* ==================================================
   SMALL FLOATING CARD
================================================== */

.hero-card-small {

    position: absolute;

    z-index: 3;

    right: 0;

    bottom: 35px;

    width: 205px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e2e8f0;

    border-radius: 17px;

    box-shadow:
        0 20px 45px
        rgba(15, 23, 42, 0.12);

    animation:
        heroFloat 4s ease-in-out infinite;
}


.hero-card-small-label {

    display: block;

    margin-bottom: 8px;

    color: #94a3b8;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.09em;

    text-transform: uppercase;
}


.hero-card-small strong {

    display: block;

    margin-bottom: 5px;

    color: #0f172a;

    font-size: 14px;

    line-height: 1.3;
}


.hero-card-small p {

    margin: 0;

    color: #64748b;

    font-size: 11px;

    line-height: 1.6;
}


/* ==================================================
   SUCCESS / MATCH INDICATOR
================================================== */

.hero-match {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 14px;

    padding-top: 13px;

    border-top: 1px solid #f1f5f9;

    color: #15803d;

    font-size: 10px;

    font-weight: 700;
}


.hero-match-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: #dcfce7;

    color: #15803d;

    font-size: 10px;
}


/* ==================================================
   DECORATIVE BACKGROUND
================================================== */

.hero-visual::before {

    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(79, 70, 229, 0.10),
            transparent 70%
        );

    z-index: 0;
}


.hero-visual::after {

    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    top: 30px;
    right: 25px;

    border-radius: 22px;

    border:
        1px solid
        rgba(79, 70, 229, 0.12);

    transform: rotate(12deg);

    z-index: 0;
}


/* ==================================================
   FLOATING ANIMATION
================================================== */

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* ==================================================
   HERO VISUAL RESPONSIVE
================================================== */

@media (max-width: 900px) {

    .hero-visual {

        max-width: 460px;

        min-height: 350px;

        margin-top: 25px;

    }


    .hero-card-main {

        width: 300px;

    }


    .hero-card-small {

        right: 5px;

        bottom: 20px;

    }

}


@media (max-width: 600px) {

    .hero-visual {

        min-height: 330px;

        margin-top: 10px;

    }


    .hero-card-main {

        width: 270px;

        padding: 22px;

    }


    .hero-card-main h3 {

        font-size: 21px;

    }


    .hero-card-small {

        right: 0;

        bottom: 15px;

        width: 175px;

        padding: 16px;

    }


    .hero-card-small strong {

        font-size: 12px;

    }


    .hero-job-item {

        padding: 11px 12px;

        font-size: 11px;

    }

}
/* ==================================================
   MOBILE CATEGORY CARDS — CLEAN ALIGNMENT
================================================== */

@media (max-width: 700px) {

    .category-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }


    .category-card {

        min-height: 88px;

        display: grid;

        grid-template-columns:
            34px
            minmax(0, 1fr)
            16px;

        align-items: center;

        column-gap: 10px;

        padding: 14px;

        border-radius: 15px;

        box-sizing: border-box;
    }


    /* ICON */

    .category-icon {

        width: 34px;
        height: 34px;

        display: flex;

        align-items: center;
        justify-content: center;

        margin: 0;

        border-radius: 9px;

        font-size: 14px;

        flex-shrink: 0;
    }


    /* TEXT */

    .category-card > div {

        min-width: 0;

        margin: 0;
    }


    .category-card h3 {

        margin: 0 0 3px;

        font-size: 11px;

        line-height: 1.35;

        letter-spacing: -0.01em;

        white-space: normal;
    }


    .category-card p {

        margin: 0;

        font-size: 9px;

        line-height: 1.45;

        color: #64748b;
    }


    /* ARROW */

    .category-arrow {

        display: flex;

        align-items: center;
        justify-content: center;

        width: 16px;
        height: 16px;

        margin: 0;

        font-size: 12px;

        color: #94a3b8;
    }

}
/* ==================================================
   MOBILE — 2 × 2 GRIDS
================================================== */

@media (max-width: 700px) {

    /* ==============================================
       EXPLORE OPPORTUNITIES
       4 cards → 2 × 2
    ============================================== */

    .work-mode-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }


    .work-mode-card {
        min-height: 190px;
        padding: 18px;
        border-radius: 16px;
    }


    .mode-card-top {
        margin-bottom: 18px;
    }


    .mode-icon {
        width: 36px;
        height: 36px;

        border-radius: 10px;

        font-size: 14px;
    }


    .mode-number {
        font-size: 10px;
    }


    .work-mode-card h3 {
        font-size: 14px;
        line-height: 1.35;
    }


    .work-mode-card p {
        margin-top: 6px;

        font-size: 10px;
        line-height: 1.6;
    }


    .work-mode-card .arrow {
        font-size: 14px;
    }
}