/* ==================================================
   WHY ALOTE — HERO
================================================== */

.why-hero {

    position: relative;

    padding: 115px 0 95px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(79, 70, 229, 0.10),
            transparent 32%
        ),
        #f8fafc;
}


.why-hero::after {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    bottom: -220px;

    border-radius: 50%;

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

    pointer-events: none;
}


.why-hero-container {

    position: relative;

    z-index: 1;

    max-width: 900px;
}


.why-hero h1 {

    max-width: 800px;

    margin: 0;

    color: #111827;

    font-size:
        clamp(46px, 6vw, 72px);

    line-height: 1.04;

    letter-spacing: -0.045em;
}


.why-hero-description {

    max-width: 680px;

    margin: 25px 0 0;

    color: #64748b;

    font-size: 18px;

    line-height: 1.75;
}


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

.hero-actions {

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 32px;
}


.hero-text-link {

    color: #475569;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        color 0.2s ease;
}


.hero-text-link:hover {

    color: #4f46e5;
}



/* ==================================================
   VALUE STRIP
================================================== */

.value-strip {

    border-top:
        1px solid #e2e8f0;

    border-bottom:
        1px solid #e2e8f0;

    background: #ffffff;
}


.value-grid {

    display: grid;

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


.value-item {

    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 25px 28px;

    border-right:
        1px solid #e2e8f0;
}


.value-item:first-child {

    padding-left: 0;
}


.value-item:last-child {

    border-right: none;

    padding-right: 0;
}


.value-item strong {

    color: #111827;

    font-size: 14px;

    font-weight: 750;

    letter-spacing: -0.01em;
}


.value-item span {

    color: #94a3b8;

    font-size: 13px;
}



/* ==================================================
   GENERAL SECTIONS
================================================== */

.why-section {

    padding: 105px 0;
}


.section-heading {

    max-width: 720px;

    margin-bottom: 52px;
}


.section-heading h2 {

    margin: 0;

    color: #111827;

    font-size: 42px;

    line-height: 1.12;

    letter-spacing: -0.035em;
}


.section-heading p {

    max-width: 650px;

    margin: 18px 0 0;

    color: #64748b;

    font-size: 16px;

    line-height: 1.75;
}



/* ==================================================
   BENEFIT GRID
================================================== */

.benefit-grid {

    display: grid;

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

    gap: 18px;
}


.benefit-card {

    position: relative;

    min-height: 290px;

    padding: 28px;

    background: #ffffff;

    border:
        1px solid #e2e8f0;

    border-radius: 20px;

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


.benefit-card:hover {

    transform: translateY(-5px);

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

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


.benefit-number {

    position: absolute;

    top: 24px;
    right: 25px;

    color: #cbd5e1;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.08em;
}


.benefit-icon {

    width: 52px;
    height: 52px;

    display: flex;

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

    margin-bottom: 35px;

    background: #eef2ff;

    border-radius: 15px;

    color: #4f46e5;

    font-size: 21px;

    font-weight: 700;
}


.benefit-card h3 {

    margin: 0 0 10px;

    color: #111827;

    font-size: 19px;

    letter-spacing: -0.02em;
}


.benefit-card p {

    margin: 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.75;
}



/* ==================================================
   COMPARISON SECTION
================================================== */

.comparison-section {

    padding: 105px 0;

    background: #f8fafc;
}


.comparison-table {

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid #e2e8f0;

    border-radius: 20px;

    box-shadow:
        0 15px 40px
        rgba(15, 23, 42, 0.04);
}


.comparison-header,
.comparison-row {

    display: grid;

    grid-template-columns:
        1.1fr 1fr 1fr;
}


.comparison-header {

    background: #f8fafc;

    border-bottom:
        1px solid #e2e8f0;
}


.comparison-header > *,
.comparison-row > * {

    padding: 19px 25px;

}


.comparison-header strong {

    color: #64748b;

    font-size: 13px;

    font-weight: 700;
}


.comparison-header .comparison-highlight {

    color: #4f46e5;
}


.comparison-row {

    border-bottom:
        1px solid #e2e8f0;
}


.comparison-row:last-child {

    border-bottom: none;
}


.comparison-row > span:first-child {

    color: #111827;

    font-size: 14px;

    font-weight: 650;
}


.comparison-row > span:nth-child(2) {

    color: #94a3b8;

    font-size: 14px;
}


.comparison-row > strong {

    color: #334155;

    font-size: 14px;

    font-weight: 650;

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



/* ==================================================
   HOW ALOTE WORKS
================================================== */

.process-section {

    padding: 110px 0;
}


.process-grid {

    display: grid;

    grid-template-columns:
        1fr auto 1fr auto 1fr auto 1fr;

    align-items: start;

    gap: 20px;
}


.process-step {

    position: relative;

    min-height: 225px;

    padding: 28px;

    background: #ffffff;

    border:
        1px solid #e2e8f0;

    border-radius: 20px;

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


.process-step:hover {

    transform: translateY(-4px);

    box-shadow:
        0 18px 40px
        rgba(15, 23, 42, 0.07);
}


.process-number {

    width: 42px;
    height: 42px;

    display: flex;

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

    margin-bottom: 28px;

    border-radius: 12px;

    background: #eef2ff;

    color: #4f46e5;

    font-size: 12px;

    font-weight: 800;
}


.process-step h3 {

    margin: 0 0 10px;

    color: #111827;

    font-size: 19px;

    letter-spacing: -0.02em;
}


.process-step p {

    margin: 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.75;
}


.process-connector {

    width: 30px;

    height: 1px;

    margin-top: 49px;

    background:
        #cbd5e1;
}



/* ==================================================
   REVIEW SECTION
================================================== */

.review-section {

    padding: 0 0 105px;
}


.review-card {

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 60px;

    align-items: center;

    padding: 58px 60px;

    background:
        linear-gradient(
            135deg,
            #111827,
            #1e1b4b
        );

    border-radius: 25px;

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


.review-content h2 {

    max-width: 700px;

    margin: 0;

    color: #ffffff;

    font-size: 34px;

    line-height: 1.25;

    letter-spacing: -0.035em;
}


.review-content p {

    max-width: 650px;

    margin: 18px 0 0;

    color: #94a3b8;

    line-height: 1.8;
}



/* ==================================================
   REVIEW FLOW
================================================== */

.review-flow {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;
}


.flow-step {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    text-align: center;
}


.flow-step span {

    width: 48px;
    height: 48px;

    display: flex;

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

    border-radius: 50%;

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

    color: #a5b4fc;

    font-size: 12px;

    font-weight: 800;
}


.flow-step strong {

    color: #ffffff;

    font-size: 13px;
}


.flow-line {

    width: 35px;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.18);
}



/* ==================================================
   EMPLOYER SECTION
================================================== */

.employer-section {

    background: #f8fafc;
}


.employer-benefits {

    max-width: 900px;
}


.employer-benefit {

    display: grid;

    grid-template-columns:
        60px 1fr;

    gap: 25px;

    padding: 28px 0;

    border-bottom:
        1px solid #e2e8f0;
}


.employer-benefit:first-child {

    border-top:
        1px solid #e2e8f0;
}


.employer-benefit > span {

    color: #4f46e5;

    font-size: 13px;

    font-weight: 800;
}


.employer-benefit h3 {

    margin: 0 0 8px;

    color: #111827;

    font-size: 19px;
}


.employer-benefit p {

    max-width: 650px;

    margin: 0;

    color: #64748b;

    line-height: 1.8;
}



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

.why-cta {

    padding: 105px 0;
}


.why-cta-card {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 58px 60px;

    background: #ffffff;

    border:
        1px solid #e2e8f0;

    border-radius: 25px;

    box-shadow:
        0 20px 50px
        rgba(15, 23, 42, 0.06);
}


.why-cta-card h2 {

    max-width: 650px;

    margin: 0;

    color: #111827;

    font-size: 34px;

    line-height: 1.25;

    letter-spacing: -0.035em;
}


.why-cta-card p {

    margin: 15px 0 0;

    color: #64748b;

    line-height: 1.7;
}


.cta-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.cta-primary,
.cta-secondary {

    display: inline-flex;

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

    min-height: 46px;

    padding: 13px 20px;

    border-radius: 11px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

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


.cta-primary {

    background: #4f46e5;

    color: #ffffff;
}


.cta-secondary {

    background: #f8fafc;

    border:
        1px solid #e2e8f0;

    color: #111827;
}


.cta-primary:hover,
.cta-secondary:hover {

    transform: translateY(-2px);
}


.cta-primary:hover {

    box-shadow:
        0 10px 25px
        rgba(79, 70, 229, 0.22);
}



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

html[lang="my"] .why-hero h1,
html[lang="my"] .section-heading h2,
html[lang="my"] .benefit-card h3,
html[lang="my"] .benefit-card p,
html[lang="my"] .review-content h2,
html[lang="my"] .review-content p,
html[lang="my"] .employer-benefit h3,
html[lang="my"] .employer-benefit p,
html[lang="my"] .why-cta-card h2,
html[lang="my"] .why-cta-card p,
html[lang="my"] .value-item,
html[lang="my"] .comparison-table,
html[lang="my"] .process-step {

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


/* ==================================================
   BURMESE HERO H1
================================================== */

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

    font-size:
        clamp(34px, 4vw, 48px);

    line-height: 1.55;

    letter-spacing: -0.025em;

    max-width: 780px;
}


/* ==================================================
   BURMESE H2
================================================== */

html[lang="my"] .section-heading h2 {

    font-size:
        clamp(28px, 3vw, 38px);

    line-height: 1.55;

    letter-spacing: -0.02em;

    max-width: 700px;
}


/* ==================================================
   BURMESE REVIEW H2
================================================== */

html[lang="my"] .review-content h2 {

    font-size:
        clamp(27px, 3vw, 36px);

    line-height: 1.55;

    letter-spacing: -0.02em;

    max-width: 650px;
}


/* ==================================================
   BURMESE CTA H2
================================================== */

html[lang="my"] .why-cta-card h2 {

    font-size:
        clamp(27px, 3vw, 36px);

    line-height: 1.55;

    letter-spacing: -0.02em;

    max-width: 650px;
}


/* ==================================================
   BURMESE CARD HEADINGS
================================================== */

html[lang="my"] .benefit-card h3,
html[lang="my"] .process-step h3,
html[lang="my"] .employer-benefit h3 {

    font-size: 17px;

    line-height: 1.6;

    letter-spacing: -0.01em;
}


/* ==================================================
   BURMESE BODY TEXT
================================================== */

html[lang="my"] .why-hero-description,
html[lang="my"] .section-heading p,
html[lang="my"] .benefit-card p,
html[lang="my"] .review-content p,
html[lang="my"] .employer-benefit p,
html[lang="my"] .why-cta-card p,
html[lang="my"] .process-step p {

    font-size: 14px;

    line-height: 1.9;

    letter-spacing: 0;
}



/* ==================================================
   RESPONSIVE — TABLET
================================================== */

@media (max-width: 1100px) {

    .benefit-grid {

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


    .process-grid {

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


    .process-connector {

        display: none;
    }


    .review-card {

        grid-template-columns: 1fr;

    }


    .review-flow {

        justify-content: flex-start;

    }

}



/* ==================================================
   RESPONSIVE — MOBILE
================================================== */

@media (max-width: 750px) {

    .why-hero {

        padding: 80px 0 65px;

    }


    .why-hero h1 {

        font-size: 44px;

    }


    .why-hero-description {

        font-size: 16px;

    }


    .hero-actions {

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;

    }


    .value-grid {

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


    .value-item {

        padding: 20px;

        border-bottom:
            1px solid #e2e8f0;
    }


    .value-item:nth-child(2) {

        border-right: none;
    }


    .value-item:nth-child(3),
    .value-item:nth-child(4) {

        border-bottom: none;
    }


    .value-item:first-child {

        padding-left: 20px;
    }


    .value-item:last-child {

        padding-right: 20px;
    }


    .why-section,
    .comparison-section,
    .process-section {

        padding: 75px 0;

    }


    .section-heading {

        margin-bottom: 38px;

    }


    .section-heading h2 {

        font-size: 34px;

    }


    .benefit-grid {

        grid-template-columns: 1fr;

    }


    .benefit-card {

        min-height: auto;

    }


    .comparison-table {

        border-radius: 16px;

    }


    .comparison-header,
    .comparison-row {

        grid-template-columns:
            1fr 0.9fr 1fr;
    }


    .comparison-header > *,
    .comparison-row > * {

        padding: 15px 13px;

        font-size: 12px;

    }


    .process-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .process-step {

        min-height: auto;

    }


    .review-section {

        padding: 0 0 75px;

    }


    .review-card {

        padding: 40px 28px;

        border-radius: 20px;

    }


    .review-content h2 {

        font-size: 28px;

    }


    .review-flow {

        gap: 8px;

    }


    .flow-line {

        width: 20px;

    }


    .why-cta {

        padding: 70px 0;

    }


    .why-cta-card {

        align-items: flex-start;

        flex-direction: column;

        padding: 40px 28px;

    }


    .why-cta-card h2 {

        font-size: 28px;

    }


    .cta-actions {

        width: 100%;

        flex-direction: column;

        align-items: stretch;

    }


    .cta-primary,
    .cta-secondary {

        width: 100%;

        text-align: center;

    }

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

@media (max-width: 760px) {

    /* ==============================================
       JOB SEEKERS
    ============================================== */

    .benefit-grid {

        display: grid;

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

        gap: 12px;
    }


    .benefit-card {

        min-width: 0;

        padding: 20px 16px;
    }


    .benefit-card h3 {

        font-size: 14px;

        line-height: 1.45;
    }


    .benefit-card p {

        font-size: 11px;

        line-height: 1.7;
    }


    .benefit-number {

        font-size: 10px;
    }


    .benefit-icon {

        width: 34px;
        height: 34px;

        margin-bottom: 13px;

        font-size: 15px;
    }


    /* ==============================================
       HOW ALOTE WORKS
    ============================================== */

    .process-grid {

        display: grid;

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

        gap: 12px;
    }


    /*
       The connectors are useful on desktop
       but would interfere with the 2 × 2 layout
       on mobile.
    */

    .process-connector {

        display: none;
    }


    .process-step {

        min-width: 0;

        padding: 20px 16px;

        border: 1px solid #e2e8f0;

        border-radius: 14px;

        background: #ffffff;
    }


    .process-number {

        width: 32px;
        height: 32px;

        margin-bottom: 14px;
    }


    .process-step h3 {

        font-size: 14px;

        line-height: 1.45;
    }


    .process-step p {

        font-size: 11px;

        line-height: 1.7;
    }

}
@media (max-width: 760px) {

    html[lang="my"] .benefit-card h3,
    html[lang="my"] .process-step h3 {

        font-size: 13px;

        line-height: 1.6;

    }


    html[lang="my"] .benefit-card p,
    html[lang="my"] .process-step p {

        font-size: 10px;

        line-height: 1.8;

    }

}