:root {
    --blue-deep: #1046a8;
    --blue: #00469A;
    --blue-dark: #0c3585;
    --orange: #FFA500;
    --orange-dark: #e0921a;
    --ink: #14181f;
    --ink-soft: #4a5262;
    --grey-bg: #f4f5f7;
    --card-radius: 18px;
    --peach: #fbe6d4;
    --lightblue: #dbe9ff;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --radius-20: 20px;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- HERO ---------- */
.hero {
    padding: 80px 40px 56px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

    .hero h1 {
        font-size: 40px !important;
        line-height: 1.2;
        margin: 0 0 18px;
        font-weight: 700;
        letter-spacing: -0.5px;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
        font-family: --font;
    }

    .hero p {
        font-size: 16px;
        color: var(--ink-soft);
        max-width: 750px;
        margin: 0 auto 28px;
        line-height: 1.6;
    }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    transition: background .15s ease, transform .15s ease;
}

    .btn:hover {
        background: var(--blue-dark);
        transform: translateY(-1px);
    }

    .btn svg {
        width: 15px;
        height: 15px;
        transition: transform .15s ease;
    }

    .btn:hover svg {
        transform: translateX(3px);
    }

.btn-block {
    width: 100%;
    justify-content: center;
}

/* hero cards */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1fr;
    gap: 18px;
    margin-top: 44px;
    align-items: stretch;
}

.hero-card {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    min-height: 260px;
}

.card-first {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card-photo {
    flex: 1;
    min-height: 180px;
    border-radius: var(--radius-20);
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.2) 100%), url('/Content/aboutge/img/1.png');
}

    .card-photo.laptop {
        flex: none;
        min-height: 260px;
        background-image: url('/Content/aboutge/img/2.png');
    }

.promise-tag {
    border-radius: var(--radius-20);
    background-image: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: #20180a;
    padding: 18px 20px;
    font-size: 12.5px;
    line-height: 1.6;
    text-align: left;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index:1;
}

    .promise-tag strong {
        align-self: flex-end;
        font-size: 26px;
        font-weight: 700;
    }

/* dark talent card */
.card-talent {
    position: relative;
    overflow: hidden;
    background: #181c11;
    border-radius: 26px;
    color: #fff;
}

/* -------------------------
   HEADER
-------------------------- */

.talent-header {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: 44px;
}

.talent-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 10px;
    color: #AEAEAE;
}

.talent-text h3 {
    margin: 0;
    color: #fff;
    font-size: 38px !important;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -2px;
}


/* -------------------------
   ORBITS
-------------------------- */

.orbit {
    position: absolute;
    width: 324px;
    height: 324px;
    left: 0;
    top: 230px;
}
.orbit2 {
    position: absolute;
    width: 450px;
    height: 450px;
    left: -70px;
    top: 145px;
}
/*
    Static circle.

    This stays in place.
*/
.orbit-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
}


/*
    Rotating container.

    The avatars move around the circle.
*/
.orbit-spin {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    animation: talentOrbit 24s linear infinite;
}


/* -------------------------
   AVATARS
-------------------------- */

.avatar {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%);
}

.talent-text {
    margin-top: 40px;
}

.a1 {
    left: 50%;
    top: 0;
    background-image: url("/Content/aboutge/rotationinnerline/construct.png");
}

.a2 {
    left: 88%;
    top: 15%;
    background-image: url("/Content/aboutge/rotationinnerline/construction.png");
}

.a3 {
    left: 100%;
    top: 50%;
    background-image: url("/Content/aboutge/rotationinnerline/Cook.png");
}

.a4 {
    left: 12%;
    top: 15%;
    background-image: url("/Content/aboutge/rotationinnerline/Cooks.png");
}
.a5 {
    right: 35%;
    bottom: -15%;
    background-image: url("/Content/aboutge/rotationinnerline/handy worker.png");
}

.a6 {
    right: 70%;
    bottom: 0%;
    background-image: url("/Content/aboutge/rotationinnerline/nurse.png");
}

.a7 {
    right: 86%;
    bottom: 33%;
    background-image: url("/Content/aboutge/rotationinnerline/tailor.png");
}

.a8 {
    right: -2%;
    bottom: 4%;
    background-image: url("/Content/aboutge/rotationinnerline/worker.png");
}
.b1 {
    left: 50%;
    top: 0;
    background-image: url("/Content/aboutge/rotationouterline/accountant.png");
}

.b2 {
    left: 88%;
    top: 15%;
    background-image: url("/Content/aboutge/rotationouterline/constr.png");
}

.b3 {
    left: 100%;
    top: 50%;
    background-image: url("/Content/aboutge/rotationouterline/construction.png");
}

.b4 {
    left: 12%;
    top: 15%;
    background-image: url("/Content/aboutge/rotationouterline/delivery.png");
}

.b5 {
    right: 35%;
    bottom: -15%;
    background-image: url("/Content/aboutge/rotationouterline/nurse.png");
}

.b6 {
    right: 70%;
    bottom: 0%;
    background-image: url("/Content/aboutge/rotationouterline/sales person.png");
}

.b7 {
    right: 86%;
    bottom: 33%;
    background-image: url("/Content/aboutge/rotationouterline/sales.png");
}

.b8 {
    right: -2%;
    bottom: 4%;
    background-image: url("/Content/aboutge/rotationouterline/security.png");
}

/* -------------------------
   ROTATION
-------------------------- */

@keyframes talentOrbit {

    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/*
    Counter rotation.

    This keeps the avatars upright
    while their parent rotates.
*/

.avatar {
    animation: avatarCounterRotate 24s linear infinite;
}

@keyframes avatarCounterRotate {

    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}


/* -------------------------
   FOOTER
-------------------------- */

.talent-footer {
    position: absolute;
    z-index: 20;
    left: 50%;
    bottom: 10px;
    width: 196px;
    transform: translateX(-50%);
    color: #a8aaa5;
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
}


/* -------------------------
   OPTIONAL HOVER PAUSE
-------------------------- */

.card-talent:hover .orbit-spin,
.card-talent:hover .avatar {
    animation-play-state: paused;
}


/* -------------------------
   MOBILE
-------------------------- */

@media (max-width: 500px) {
    .talent-header h3 {
        font-size: 44px;
    }

    .talent-footer {
        width: 85%;
        font-size: 17px;
    }
}

/* ---------- WHAT WE OFFER ---------- */
.offer-section {
    background: var(--grey-bg);
    padding: 70px 40px 80px;
}

.offer-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

    .offer-head h2 {
        font-size: 40px;
        font-weight: 700;
        margin: 0 0 10px;
    }

    .offer-head p {
        font-size: 16px;
        color: var(--ink-soft);
        margin: 0;
        line-height: 1.6;
    }

.offer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 2fr 2fr;
    gap: 18px;
}

.offer-card {
    border-radius: var(--card-radius);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .offer-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 28px rgba(20,24,31,0.10);
    }

.card-transparency {
    grid-row: 1 / 3;
    background: linear-gradient(165deg, #1a5ce0 0%, #0f3fa8 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
}

.icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-transparency .icon-badge {
    margin-bottom: auto;
}

.offer-card h3 {
    font-size: 24px !important;
    font-weight: 700;
    margin: 0 0 10px;
}
.offer-card h4 {
    font-size: 18px !important;
    font-weight: 700;
    margin: 0 0 10px;
}
.offer-card p {
    color: rgba(0, 0, 0, 0.70);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
}

.card-transparency p {
    color: #dbe6fb;
}

.card-equal {
    background: #fff;
}

.icon-green {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #e6f6ea;
    color: #1d9147;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-equal p, .card-market p {
    color: var(--ink-soft);
}

.card-mockup {
    background: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-img {
    width: 100%;
    border-radius: 8px;
}

.card-market {
    background: #FFF7ED;
    border: 1px solid var(--orange-200, #FED7AA);
}

.icon-pin {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #fde0c4;
    color: #c9711b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-about-mockup {
    grid-column: 3 / 2;
    background: #fff;
    padding: 16px;
}

.card-freejob {
    grid-column: 3/ 5;
    background: var(--lightblue);
    display: flex;
    align-items: center;
}

.free-badge {
    display: inline-block;
    background: #fff;
    color: #0E46A1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 4px 8px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
    border-radius: 4px;
}

.free-head {
    display: flex;
    align-items: center;
    gap: 0;
    margin-right: 24px;
}

.icon-check {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #0E46A1;
}

/* ---------- HAVE QUESTIONS ---------- */
.contact-section {
    padding: 70px 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

    .contact-section h2 {
        font-size: 26px;
        font-weight: 700;
        margin: 0 0 10px;
    }

    .contact-section .phone {
        font-size: 16px;
        color: #1B1B20;
        margin: 0 0 4px;
    }

        .contact-section .phone a {
            color: var(--blue);
            font-weight: 600;
        }

    .contact-section .sub {
        font-size: 16px;
        color: #1B1B20;
        margin: 0 0 34px;
    }

.cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cta-card {
    border-radius: var(--card-radius);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 16px;
}

.cta-hiring {
    background: var(--blue-deep);
    color: #fff;
}

.cta-looking {
    background: var(--orange);
    color: #fff;
}

.cta-card h4 {
    font-size: 20px;
    margin: 0 0 4px;
    font-weight: 700;
}

.cta-card p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-btn {
    flex-shrink: 0;
    background: #fff;
    color: var(--blue-deep);
    border: none;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    border-radius: 999px;
}

.cta-looking .cta-btn {
    color: var(--orange);
}

footer {
    height: 60px;
    background: var(--grey-bg);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .offer-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .card-transparency {
        grid-row: auto;
        min-height: 320px;
    }

    .card-about-mockup {
        grid-column: 1 / 3;
    }

    .card-freejob {
        grid-column: 1 / 3;
    }
}

@media (max-width: 860px) {
    footer{
        height: unset;
    }
    .hero {
        padding: 48px 22px 40px;
    }

    .hero h1 {
            font-size: 27px;
    }

    .hero-cards {
        display: flex;
        flex-direction: column-reverse;
    }

    .card-talent {
        min-height: 420px;
    }

    .card-photo {
        min-height: 180px;
    }

    .offer-section {
        padding: 50px 22px 60px;
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .card-transparency, .card-about-mockup, .card-freejob, .card-market, .card-equal, .card-mockup {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .contact-section {
        padding: 50px 22px;
    }

    .cta-row {
        grid-template-columns: 1fr;
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-btn {
        margin-top: 6px;
    }

    .wrap, .nav {
        padding-left: 22px;
        padding-right: 22px;
    }
}
.wave {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}