:root {
    --blue: #103f75;
    --blue-dark: #08294f;
    --blue-light: #eaf4ff;

    --orange: #ff8a00;
    --yellow: #ffbd22;

    --green: #2ca66f;

    --text: #17212b;
    --muted: #667788;

    --bg: #f7f9fc;
    --white: #ffffff;

    --border: #e2e8f0;

    --radius: 24px;

    --shadow:
        0 20px 60px rgba(24, 50, 78, 0.10);
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.5;
}


a {
    color: inherit;
    text-decoration: none;
}


.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* HEADER */

.header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0,0,0,.06);
}


.header-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}


.logo-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: white;

    font-size: 24px;

    background:
        linear-gradient(
            135deg,
            var(--orange),
            var(--yellow)
        );
}


.logo-text {
    line-height: 1;
}


.logo-text strong,
.logo-text b {
    display: block;
}


.logo-text strong {
    color: var(--blue);
    font-size: 17px;
}


.logo-text b {
    margin-top: 3px;

    color: var(--orange);
    font-size: 20px;
}


.nav {
    display: flex;
    gap: 30px;

    font-size: 15px;
    font-weight: 600;
}


.nav a {
    color: #536577;
}


.nav a:hover {
    color: var(--blue);
}


/* BUTTONS */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 25px;

    border: 0;
    border-radius: 14px;

    cursor: pointer;

    font-size: 16px;
    font-weight: 800;

    transition: .2s ease;
}


.button:hover {
    transform: translateY(-2px);
}


.button-small {
    min-height: 44px;

    padding: 0 20px;

    color: white;
    background: var(--blue);
}


.button-primary {
    color: white;

    background:
        linear-gradient(
            135deg,
            #155693,
            var(--blue)
        );

    box-shadow:
        0 12px 30px rgba(16, 63, 117, .22);
}


.button-secondary {
    color: var(--blue);
    background: var(--white);

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


.button-yellow {
    color: var(--blue-dark);

    background:
        linear-gradient(
            135deg,
            var(--yellow),
            #ffd75f
        );
}


.button-outline {
    color: var(--blue);
    background: transparent;

    border: 2px solid #dce6f0;
}


.button-full {
    width: 100%;
}


.button-large {
    min-height: 62px;
    padding: 0 32px;

    font-size: 18px;
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;

    padding: 100px 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 188, 32, .20),
            transparent 32%
        ),
        radial-gradient(
            circle at 10% 70%,
            rgba(16, 91, 170, .08),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #f8fbff,
            #ffffff
        );
}


.hero-grid {
    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 70px;

    align-items: center;
}


.badge,
.section-label {
    display: inline-flex;

    padding: 8px 14px;

    border-radius: 999px;

    color: #9a5b00;

    background: #fff4d6;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .04em;
}


.hero h1 {
    max-width: 700px;

    margin: 22px 0 20px;

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

    line-height: .98;
    letter-spacing: -.05em;
}


.hero h1 span {
    display: block;

    color: var(--orange);
}


.hero-description {
    max-width: 650px;

    margin: 0 0 32px;

    color: var(--muted);

    font-size: 21px;
    line-height: 1.55;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}


.hero-points {
    margin-top: 27px;

    display: flex;
    flex-wrap: wrap;

    gap: 18px;

    color: #566878;

    font-size: 14px;
    font-weight: 700;
}



.hero-card {
    padding: 30px;

    border-radius: 28px;

    background: var(--white);

    box-shadow:
        0 35px 80px rgba(21, 53, 85, .16);

    border: 1px solid #edf1f6;

    transform: rotate(1deg);
}


.hero-card-top {
    display: flex;
    gap: 13px;
    align-items: center;

    padding-bottom: 22px;

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


.hero-card-top > span {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: #fff1dd;

    font-size: 25px;
}


.hero-card-top small,
.hero-card-top strong {
    display: block;
}


.hero-card-top small {
    margin-bottom: 3px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 900;
}


.hero-card-top strong {
    font-size: 18px;
}


.salary {
    padding: 26px 0 15px;

    font-size: 17px;
}


.salary b {
    display: block;

    color: var(--blue);

    font-size: 38px;
}


.salary span {
    color: var(--muted);

    font-size: 14px;
}


.job-info {
    margin: 10px 0 28px;

    display: grid;

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

    gap: 12px;
}


.job-info > div {
    display: flex;
    align-items: center;

    gap: 10px;

    padding: 13px;

    border-radius: 14px;

    background: var(--bg);
}


.job-info span {
    font-size: 21px;
}


.job-info p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


.job-info strong {
    display: block;

    color: var(--text);

    font-size: 13px;
}


/* STATEMENT */

.statement {
    padding: 100px 0;

    text-align: center;

    background: var(--white);
}


.statement h2,
.section-heading h2,
.community h2,
.support h2 {
    margin: 18px 0;

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.05;

    letter-spacing: -.04em;
}


.statement h2 span,
.section-heading h2 span,
.community h2 span {
    color: var(--orange);
}


.statement > .container > p {
    max-width: 760px;

    margin: 0 auto 48px;

    color: var(--muted);

    font-size: 19px;
}


.warm-grid {
    display: grid;

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

    gap: 18px;
}


.warm-card {
    padding: 30px 24px;

    border-radius: var(--radius);

    background: var(--bg);

    text-align: left;
}


.warm-card span {
    display: block;

    margin-bottom: 20px;

    font-size: 34px;
}


.warm-card strong {
    display: block;

    margin-bottom: 9px;

    color: var(--blue);

    font-size: 18px;
}


.warm-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
}


/* BENEFITS */

.benefits {
    padding: 100px 0;

    background: var(--bg);
}


.section-heading {
    margin-bottom: 50px;

    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 40px;
}


.section-heading h2 {
    max-width: 750px;
}


.section-heading > p {
    max-width: 350px;

    color: var(--muted);

    font-size: 17px;
}


.benefits-grid {
    display: grid;

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

    gap: 20px;
}


.benefit {
    padding: 30px;

    border-radius: var(--radius);

    background: white;

    border: 1px solid #edf0f4;

    box-shadow:
        0 10px 30px rgba(30, 50, 70, .04);
}


.benefit-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-bottom: 22px;

    border-radius: 17px;

    background: #fff2d9;

    font-size: 25px;
}


.benefit h3 {
    margin: 0 0 10px;

    font-size: 19px;
}


.benefit p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
}


/* CHECK */

.check {
    padding: 80px 0;

    background: white;
}


.check-box {
    padding: 55px;

    display: grid;

    grid-template-columns:
        1fr .8fr;

    gap: 50px;

    align-items: center;

    border-radius: 32px;

    color: white;

    background:
        linear-gradient(
            135deg,
            #0c3768,
            #155c9e
        );
}


.section-label-light {
    color: #ffe097;

    background: rgba(255,255,255,.12);
}


.check h2 {
    margin: 16px 0;

    font-size: 42px;
}


.check p {
    max-width: 650px;

    margin: 0;

    color: #d7e7f5;

    font-size: 17px;
}


.check-form {
    padding: 10px;

    display: flex;

    border-radius: 18px;

    background: white;
}


.check-form input {
    width: 100%;

    padding: 0 15px;

    border: 0;
    outline: none;

    font-size: 15px;
}


/* COMMUNITY */

.community {
    padding: 110px 0;

    background:
        linear-gradient(
            180deg,
            #f7faff,
            white
        );
}


.community-grid {
    display: grid;

    grid-template-columns:
        1fr .85fr;

    gap: 80px;

    align-items: center;
}


.community-lead {
    max-width: 650px;

    color: var(--muted);

    font-size: 18px;
}


.questions {
    margin-top: 35px;

    display: grid;
    gap: 14px;
}


.questions > div {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 18px;

    border-radius: 16px;

    background: white;

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


.questions span {
    font-size: 22px;
}


.questions p {
    margin: 0;

    font-weight: 650;
}


.community-card {
    padding: 28px;

    border-radius: 28px;

    background: white;

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


.online {
    margin-bottom: 22px;

    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--green);

    font-size: 13px;
    font-weight: 800;
}


.online i {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: var(--green);
}


.chat {
    display: grid;
    gap: 13px;

    margin-bottom: 25px;
}


.message {
    max-width: 88%;

    padding: 15px 17px;

    border-radius: 17px 17px 17px 5px;

    background: #f0f4f8;
}


.message-answer {
    margin-left: auto;

    border-radius: 17px 17px 5px 17px;

    background: #e7f2ff;
}


.message strong {
    color: var(--blue);

    font-size: 13px;
}


.message p {
    margin: 4px 0 0;

    font-size: 14px;
}


/* SUPPORT */

.support {
    padding: 20px 0 100px;

    background: white;
}


.support-box {
    padding: 42px;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    gap: 25px;

    align-items: center;

    border-radius: 28px;

    background: #fff7e7;

    border: 1px solid #ffe4ac;
}


.support-icon {
    width: 75px;
    height: 75px;

    display: grid;
    place-items: center;

    border-radius: 22px;

    background: white;

    font-size: 34px;
}


.support h2 {
    margin: 9px 0;

    font-size: 30px;
}


.support p {
    max-width: 670px;

    margin: 0;

    color: #6e6657;
}


/* VACANCIES */

.vacancies {
    padding: 100px 0;

    background: var(--bg);
}


.vacancy-grid {
    display: grid;

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

    gap: 20px;
}


.vacancy {
    padding: 28px;

    border-radius: var(--radius);

    background: white;

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


.vacancy-top {
    display: flex;
    justify-content: space-between;

    gap: 15px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 900;
}


.vacancy-top small {
    color: var(--muted);
    font-weight: 600;
}


.vacancy h3 {
    margin: 22px 0 8px;

    font-size: 22px;
}


.vacancy-salary {
    color: var(--blue);

    font-size: 25px;
    font-weight: 900;
}


.vacancy ul {
    margin: 24px 0;

    padding: 0;

    list-style: none;

    color: var(--muted);
}


.vacancy li {
    margin: 9px 0;
}


/* CTA */

.cta {
    padding: 90px 0;

    background: white;
}


.cta-box {
    padding: 55px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 50px;

    border-radius: 34px;

    color: white;

    background:
        radial-gradient(
            circle at 90% 30%,
            rgba(255,190,35,.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #08294f,
            #104d89
        );
}


.cta-box > div > span {
    color: var(--yellow);

    font-size: 13px;
    font-weight: 900;
}


.cta h2 {
    max-width: 650px;

    margin: 13px 0;

    font-size: 42px;

    line-height: 1.08;
}


.cta h2 strong {
    color: var(--yellow);
}


.cta p {
    margin: 0;

    color: #dceafa;

    font-size: 17px;
}


/* FOOTER */

.footer {
    padding: 50px 0;

    color: white;

    background: #061d37;
}


.footer-inner {
    display: grid;

    grid-template-columns:
        1fr auto auto;

    gap: 40px;

    align-items: center;
}


.footer-brand strong {
    color: var(--yellow);
}


.footer-brand p {
    margin: 5px 0 0;

    color: #91a7bb;

    font-size: 13px;
}


.footer-links {
    display: flex;

    gap: 20px;

    color: #c1d1df;

    font-size: 13px;
}


.copyright {
    color: #7f96aa;

    font-size: 12px;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .nav {
        display: none;
    }

    .hero {
        padding: 70px 0;
    }

    .hero-grid,
    .community-grid,
    .check-box {
        grid-template-columns: 1fr;
    }

    .warm-grid,
    .benefits-grid,
    .vacancy-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .section-heading {
        display: block;
    }

    .support-box {
        grid-template-columns:
            auto 1fr;
    }

    .support-box .button {
        grid-column: 1 / -1;
    }

    .cta-box {
        display: block;
    }

    .cta-box .button {
        margin-top: 25px;
    }

}


@media (max-width: 650px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 68px;
    }

    .header .button {
        display: none;
    }

    .hero {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        display: grid;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-points {
        display: grid;
        gap: 8px;
    }

    .hero-card {
        padding: 22px;

        transform: none;
    }

    .job-info {
        grid-template-columns: 1fr;
    }

    .statement,
    .benefits,
    .community,
    .vacancies {
        padding: 70px 0;
    }

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

    .statement h2,
    .section-heading h2,
    .community h2 {
        font-size: 36px;
    }

    .check {
        padding: 60px 0;
    }

    .check-box {
        padding: 30px 22px;
    }

    .check h2 {
        font-size: 34px;
    }

    .check-form {
        display: grid;

        gap: 10px;

        padding: 10px;
    }

    .check-form input {
        min-height: 48px;
    }

    .support-box {
        padding: 28px 22px;

        grid-template-columns: 1fr;
    }

    .support-icon {
        width: 60px;
        height: 60px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .cta h2 {
        font-size: 34px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-wrap: wrap;
    }

}

/* assembled: logo as image */
img.logo-icon {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    background: none;
    padding: 0;
}
