/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}


body {
    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;

    color: #17202a;

    background: #ffffff;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;
}


img {
    max-width: 100%;
}



/* ==========================================
   VARIABLES
========================================== */

:root {

    --primary: #275df5;

    --primary-dark: #1946d1;

    --primary-light: #7798ff;

    --dark: #121d2f;

    --dark-soft: #1a2940;

    --text: #17202a;

    --text-light: #647184;

    --light: #f5f7fb;

    --border: #dfe4eb;

    --green: #57dc9d;

    --radius: 18px;

    --font-display:
        "Montserrat",
        Arial,
        Helvetica,
        sans-serif;

    --font-body:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;
}



/* ==========================================
   TYPOGRAPHY
========================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
}


p {
    font-family: var(--font-body);
}


strong {
    font-weight: 700;
}



/* ==========================================
   GENERAL
========================================== */

.container {
    width: min(
        1180px,
        calc(100% - 48px)
    );

    margin: 0 auto;
}


.section {
    padding: 120px 0;
}


.eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    color: var(--primary);

    font-family: var(--font-display);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .16em;
}


.eyebrow.light {
    color: #8ea9ff;
}


.section-number {
    display: block;

    margin-bottom: 35px;

    color: #aab3bf;

    font-family: var(--font-display);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .08em;
}


.light-number {
    color: #64748b;
}



/* ==========================================
   BUTTONS
========================================== */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 54px;

    padding: 0 28px;

    border: 1px solid var(--primary);

    border-radius: 8px;

    background: var(--primary);

    color: #ffffff;

    font-family: var(--font-body);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: -.01em;

    transition:
        background .25s ease,
        border-color .25s ease,
        transform .25s ease;
}


.btn:hover {
    background: var(--primary-dark);

    border-color: var(--primary-dark);

    transform: translateY(-2px);
}


.btn-outline {
    background: transparent;

    border-color:
        rgba(255,255,255,.35);
}


.btn-outline:hover {
    background:
        rgba(255,255,255,.08);

    border-color: #ffffff;
}


.btn-small {
    min-height: 44px;

    padding: 0 22px;

    font-size: 13px;
}



/* ==========================================
   NAVBAR
========================================== */

.navbar {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    height: 96px;

    background:
        rgba(18,29,47,.96);

    border-bottom:
        1px solid rgba(255,255,255,.06);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);
}


.navbar-inner {
    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items: center;

    column-gap: 44px;

    height: 100%;
}



/* ==========================================
   NAVBAR LOGO
========================================== */

.navbar-logo-column {
    display: flex;

    align-items: center;

    justify-content: flex-start;
}


.logo-link {
    display: flex;

    align-items: center;

    height: 100%;
}


.logo-img {
    display: block;

    width: auto;

    height: 76px;

    max-width: 260px;

    object-fit: contain;
}



/* ==========================================
   NAVBAR MENU
========================================== */

.navbar-menu-column {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    min-width: 0;
}


.main-nav {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 36px;
}


.main-nav a {
    position: relative;

    color: #dfe5ee;

    font-family: var(--font-body);

    font-size: 13px;

    font-weight: 500;

    letter-spacing: -.01em;

    white-space: nowrap;

    transition: color .2s ease;
}


.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: width .25s ease;
}


.main-nav a:hover {
    color: #ffffff;
}


.main-nav a:hover::after {
    width: 100%;
}



/* ==========================================
   NAVBAR CTA
========================================== */

.navbar-cta-column {
    display: flex;

    align-items: center;

    justify-content: flex-end;
}



/* ==========================================
   HAMBURGER
========================================== */

.menu-toggle {
    display: none;
}


.hamburger {
    display: none;

    width: 44px;

    height: 44px;

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border:
        1px solid rgba(255,255,255,.15);

    border-radius: 8px;
}


.hamburger span {
    display: block;

    width: 20px;

    height: 2px;

    border-radius: 10px;

    background: #ffffff;

    transition:
        transform .25s ease,
        opacity .25s ease;
}



/* ==========================================
   HERO
========================================== */

.hero {
    position: relative;

    display: flex;

    align-items: center;

    min-height: calc(100vh - 96px);

    overflow: hidden;

    background:
        linear-gradient(
            115deg,
            #101b2c 0%,
            #172842 60%,
            #1c3151 100%
        );

    color: #ffffff;
}


.hero::before {
    content: "";

    position: absolute;

    top: 60px;

    right: -170px;

    width: 700px;

    height: 700px;

    border:
        1px solid rgba(255,255,255,.06);

    border-radius: 50%;
}


.hero::after {
    content: "";

    position: absolute;

    top: 160px;

    right: -50px;

    width: 480px;

    height: 480px;

    border:
        1px solid rgba(255,255,255,.05);

    border-radius: 50%;
}


.hero-decoration {
    position: absolute;

    border-radius: 50%;

    background: var(--primary);

    filter: blur(1px);
}


.hero-decoration-one {
    right: -250px;

    bottom: -200px;

    width: 400px;

    height: 400px;

    opacity: .15;
}


.hero-decoration-two {
    top: 250px;

    left: -100px;

    width: 200px;

    height: 200px;

    opacity: .08;
}


.hero-content {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        1.2fr
        .8fr;

    align-items: center;

    gap: 100px;
}


.hero h1 {
    max-width: 800px;

    margin-bottom: 32px;

    font-family: var(--font-display);

    font-size:
        clamp(
            52px,
            5.7vw,
            78px
        );

    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -.035em;
}


.hero h1 span {
    color: #7398ff;
}


.hero-text > p {
    max-width: 590px;

    color: #bfc9d8;

    font-family: var(--font-body);

    font-size: 18px;

    font-weight: 400;

    line-height: 1.75;

    letter-spacing: -.01em;
}


.hero-buttons {
    display: flex;

    gap: 14px;

    margin-top: 40px;
}



/* ==========================================
   HERO CARD
========================================== */

.hero-card {
    position: relative;

    padding: 34px;

    border:
        1px solid rgba(255,255,255,.13);

    border-radius: 22px;

    background:
        rgba(255,255,255,.07);

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.20);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);
}


.hero-card-top {
    display: flex;

    align-items: center;

    gap: 10px;

    padding-bottom: 24px;

    border-bottom:
        1px solid rgba(255,255,255,.1);

    color: #b9c4d3;

    font-family: var(--font-body);

    font-size: 13px;

    font-weight: 500;
}


.status-dot {
    display: block;

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 0 5px
        rgba(87,220,157,.12);
}


.hero-card-number {
    padding: 30px 0;
}


.hero-card-number strong {
    display: block;

    font-family: var(--font-display);

    font-size: 64px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: -.035em;
}


.hero-card-number span {
    color: #abb8ca;

    font-family: var(--font-body);

    font-size: 14px;
}


.mini-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 1px;

    background:
        rgba(255,255,255,.1);
}


.mini-grid div {
    padding: 22px;

    background: #192b46;
}


.mini-grid strong {
    display: block;

    font-family: var(--font-display);

    font-size: 25px;

    font-weight: 700;

    letter-spacing: -.025em;
}


.mini-grid span {
    display: block;

    margin-top: 4px;

    color: #aeb9c8;

    font-family: var(--font-body);

    font-size: 12px;
}


.scroll-indicator {
    position: absolute;

    z-index: 5;

    bottom: 30px;

    left: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 4px;

    transform:
        translateX(-50%);

    color: #8795aa;

    font-family: var(--font-display);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .18em;
}


.scroll-indicator span {
    color: #ffffff;

    font-family: var(--font-body);

    font-size: 20px;
}



/* ==========================================
   ABOUT
========================================== */

.about {
    background: #ffffff;
}


.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, .95fr)
        minmax(0, 1.05fr);

    gap: 100px;
}


.section-intro h2,
.contacts-title h2 {
    font-family: var(--font-display);

    font-size:
        clamp(
            42px,
            4vw,
            59px
        );

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -.035em;
}


.about-text {
    padding-top: 72px;
}


.about-text > p {
    margin-bottom: 22px;

    color: var(--text-light);

    font-family: var(--font-body);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.75;

    letter-spacing: -.01em;
}


.about-text .lead {
    color: var(--text);

    font-family: var(--font-body);

    font-size: 22px;

    font-weight: 500;

    line-height: 1.55;
}


.values {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-top: 60px;
}


.value {
    padding-top: 24px;

    border-top:
        2px solid var(--primary);
}


.value > span {
    color: var(--primary);

    font-family: var(--font-display);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .1em;
}


.value h3 {
    margin: 10px 0;

    font-family: var(--font-display);

    font-size: 18px;

    font-weight: 700;

    letter-spacing: -.02em;
}


.value p {
    color: var(--text-light);

    font-family: var(--font-body);

    font-size: 13px;

    font-weight: 400;

    line-height: 1.7;
}



/* ==========================================
   CAREERS
========================================== */

.careers {
    background: var(--dark);

    color: #ffffff;
}


.careers-grid {
    display: grid;

    grid-template-columns:
        .9fr
        1.1fr;

    align-items: start;

    gap: 100px;
}


.careers-content {
    position: sticky;

    top: 130px;
}


.careers-content h2 {
    font-family: var(--font-display);

    font-size:
        clamp(
            45px,
            4vw,
            59px
        );

    font-weight: 800;

    line-height: 1.06;

    letter-spacing: -.035em;
}


.careers-content > p {
    max-width: 470px;

    margin-top: 30px;

    color: #aab6c7;

    font-family: var(--font-body);

    font-size: 16px;

    font-weight: 400;

    line-height: 1.8;
}


.career-features {
    display: grid;

    gap: 15px;

    margin-top: 45px;
}


.career-features div {
    display: flex;

    align-items: center;

    gap: 14px;

    font-family: var(--font-body);

    font-size: 14px;

    font-weight: 500;
}


.career-features span {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 25px;

    height: 25px;

    border-radius: 50%;

    background:
        rgba(87,220,157,.12);

    color: var(--green);

    font-family: var(--font-body);

    font-size: 11px;
}



/* ==========================================
   FORM
========================================== */

.form-card {
    padding: 46px;

    border-radius: 20px;

    background: #ffffff;

    color: var(--text);

    box-shadow:
        0 30px 90px
        rgba(0,0,0,.22);
}


.form-header {
    margin-bottom: 35px;
}


.form-header span {
    color: var(--primary);

    font-family: var(--font-display);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .13em;
}


.form-header h3 {
    margin-top: 6px;

    font-family: var(--font-display);

    font-size: 34px;

    font-weight: 800;

    letter-spacing: -.03em;
}


.form-row {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 18px;
}


.form-group {
    margin-bottom: 21px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    font-family: var(--font-body);

    font-size: 12px;

    font-weight: 600;
}


input,
textarea,
select {
    width: 100%;

    border:
        1px solid var(--border);

    border-radius: 7px;

    outline: none;

    background: #ffffff;

    color: var(--text);

    font-family: var(--font-body);

    font-size: 14px;

    font-weight: 400;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


input,
select {
    height: 50px;

    padding: 0 14px;
}


textarea {
    min-height: 120px;

    padding: 14px;

    resize: vertical;
}


input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px
        rgba(39,93,245,.07);
}


.file-upload {
    padding: 20px;

    border:
        1px dashed #bec7d3;

    border-radius: 8px;

    background: #fafbfc;
}


.file-upload input {
    height: auto;

    padding: 0;

    border: 0;

    box-shadow: none;
}


.file-upload span {
    display: block;

    margin-top: 10px;

    color: #8791a0;

    font-family: var(--font-body);

    font-size: 11px;
}


.privacy-check {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-top: 4px;

    cursor: pointer;
}


.privacy-check input {
    flex-shrink: 0;

    width: 17px;

    height: 17px;

    margin-top: 2px;
}


.privacy-check span {
    color: var(--text-light);

    font-family: var(--font-body);

    font-size: 12px;

    font-weight: 400;

    line-height: 1.6;
}


.privacy-check a {
    color: var(--primary);

    font-weight: 600;

    text-decoration: underline;
}


.submit-btn {
    width: 100%;

    margin-top: 25px;

    justify-content: space-between;

    cursor: pointer;
}


.required-text {
    margin-top: 12px;

    color: #9aa3ad;

    font-family: var(--font-body);

    font-size: 10px;

    text-align: center;
}


.website-field {
    position: absolute;

    left: -99999px;

    width: 1px;

    height: 1px;

    overflow: hidden;
}



/* ==========================================
   CONTACTS
========================================== */

.contacts {
    background: var(--light);
}


.contacts-title {
    display: grid;

    grid-template-columns:
        .8fr
        1.2fr;

    align-items: end;

    gap: 100px;
}


.contacts-title p {
    max-width: 600px;

    color: var(--text-light);

    font-family: var(--font-body);

    font-size: 17px;

    font-weight: 400;

    line-height: 1.8;
}


.contacts-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

    margin-top: 70px;
}


.contact-card {
    display: flex;

    flex-direction: column;

    min-height: 220px;

    padding: 32px;

    border:
        1px solid #eaedf1;

    border-radius: 14px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.contact-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 15px 50px
        rgba(25,45,80,.08);
}


.contact-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    margin-bottom: auto;

    border-radius: 50%;

    background: #edf2ff;

    color: var(--primary);

    font-family: var(--font-body);
}


.contact-card > span {
    margin-top: 35px;

    color: #97a1ad;

    font-family: var(--font-display);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .15em;
}


.contact-card a {
    margin-top: 5px;

    font-family: var(--font-display);

    font-size: 17px;

    font-weight: 600;

    line-height: 1.4;

    letter-spacing: -.02em;
}


.contact-card p {
    margin-top: 5px;

    font-family: var(--font-body);

    font-size: 17px;

    font-weight: 500;

    line-height: 1.5;
}



/* ==========================================
   FOOTER
========================================== */

footer {
    padding-top: 65px;

    background: #0d1624;

    color: #ffffff;
}


.footer-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    padding-bottom: 55px;
}


.footer-logo-link {
    display: inline-flex;
}


.footer-logo-img {
    display: block;

    width: auto;

    height: 60px;

    max-width: 220px;

    object-fit: contain;
}


.footer-brand p {
    margin-top: 12px;

    color: #718096;

    font-family: var(--font-body);

    font-size: 13px;
}


.footer-company {
    text-align: right;
}


.footer-company strong {
    display: block;

    margin-bottom: 8px;

    font-family: var(--font-display);

    font-size: 13px;

    font-weight: 700;
}


.footer-company p {
    margin-top: 4px;

    color: #8490a0;

    font-family: var(--font-body);

    font-size: 12px;
}


.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 75px;

    border-top:
        1px solid rgba(255,255,255,.07);

    color: #647184;

    font-family: var(--font-body);

    font-size: 11px;
}


.footer-bottom div {
    display: flex;

    gap: 25px;
}


.footer-bottom a {
    transition: color .2s ease;
}


.footer-bottom a:hover {
    color: #ffffff;
}



/* ==========================================
   PRIVACY MODAL
========================================== */

.privacy-modal {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


.privacy-modal:target {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


.privacy-modal-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(8,15,27,.78);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);
}


.privacy-modal-content {
    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    width: min(850px, 100%);

    max-height:
        calc(100vh - 60px);

    overflow: hidden;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.35);
}


.privacy-modal-header {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    flex-shrink: 0;

    gap: 30px;

    padding:
        32px
        38px
        25px;

    border-bottom:
        1px solid #e8ebef;
}


.privacy-modal-header .eyebrow {
    margin-bottom: 5px;
}


.privacy-modal-header h2 {
    margin: 0;

    font-family: var(--font-display);

    font-size: 31px;

    font-weight: 800;

    letter-spacing: -.03em;
}


.privacy-close {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #f3f5f8;

    color: #17202a;

    font-family: var(--font-body);

    font-size: 28px;

    font-weight: 300;

    line-height: 1;

    transition:
        background .2s ease,
        transform .2s ease;
}


.privacy-close:hover {
    background: #e8ecf2;

    transform: rotate(5deg);
}


.privacy-modal-body {
    flex: 1;

    overflow-y: auto;

    padding:
        30px
        38px
        40px;
}


.privacy-update {
    margin-bottom: 35px;

    padding: 18px 20px;

    border-radius: 9px;

    background: #f2f5ff;

    color: #516078;

    font-family: var(--font-body);

    font-size: 13px;
}


.privacy-modal-body section {
    margin-bottom: 32px;
}


.privacy-modal-body section:last-child {
    margin-bottom: 0;
}


.privacy-modal-body h3 {
    margin-bottom: 12px;

    color: #17202a;

    font-family: var(--font-display);

    font-size: 17px;

    font-weight: 700;

    letter-spacing: -.02em;
}


.privacy-modal-body p,
.privacy-modal-body li {
    color: #647184;

    font-family: var(--font-body);

    font-size: 14px;

    font-weight: 400;

    line-height: 1.75;
}


.privacy-modal-body p + p {
    margin-top: 12px;
}


.privacy-modal-body ul {
    margin: 14px 0;

    padding-left: 22px;
}


.privacy-modal-body li {
    margin-bottom: 7px;
}


.privacy-modal-footer {
    display: flex;

    justify-content: flex-end;

    flex-shrink: 0;

    padding:
        18px
        38px;

    border-top:
        1px solid #e8ebef;

    background: #ffffff;
}



/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

    .navbar-inner {
        column-gap: 26px;
    }


    .main-nav {
        gap: 22px;
    }


    .hero {
        min-height: auto;

        padding:
            110px
            0
            100px;
    }


    .hero-content {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .hero-card {
        max-width: 620px;
    }


    .about-grid,
    .careers-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .about-text {
        padding-top: 0;
    }


    .careers-content {
        position: static;
    }


    .contacts-title {
        grid-template-columns: 1fr;

        gap: 25px;
    }

}



/* ==========================================
   MOBILE NAVIGATION
========================================== */

@media (max-width: 760px) {

    html {
        scroll-padding-top: 86px;
    }


    .navbar {
        height: 86px;
    }


    .navbar-inner {
        grid-template-columns:
            1fr
            auto;

        column-gap: 20px;
    }


    .navbar-logo-column {
        grid-column: 1;
    }


    .navbar-menu-column {
        grid-column: 2;

        justify-content: flex-end;
    }


    .navbar-cta-column {
        display: none;
    }


    .logo-img {
        height: 68px;

        max-width: 220px;
    }


    .hamburger {
        display: flex;
    }


    .main-nav {
        position: absolute;

        top: 86px;

        left: -16px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        width:
            calc(100% + 32px);

        padding:
            12px
            16px
            22px;

        border-top:
            1px solid rgba(255,255,255,.05);

        background:
            rgba(18,29,47,.99);

        box-shadow:
            0 25px 50px
            rgba(0,0,0,.18);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        pointer-events: none;

        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .25s ease;
    }


    .main-nav a {
        width: 100%;

        padding:
            17px
            8px;

        border-bottom:
            1px solid rgba(255,255,255,.07);

        font-size: 14px;
    }


    .main-nav a:last-child {
        border-bottom: 0;
    }


    .main-nav a::after {
        display: none;
    }


    .menu-toggle:checked ~ .main-nav {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);

        pointer-events: auto;
    }


    .menu-toggle:checked + .hamburger span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }


    .menu-toggle:checked + .hamburger span:nth-child(2) {
        opacity: 0;
    }


    .menu-toggle:checked + .hamburger span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

}



/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .container {
        width:
            min(
                calc(100% - 32px),
                1180px
            );
    }


    .section {
        padding:
            85px
            0;
    }


    .hero {
        min-height:
            calc(100vh - 86px);

        padding:
            90px
            0;
    }


    .hero h1 {
        font-size: 46px;

        line-height: 1.04;

        letter-spacing: -.035em;
    }


    .hero-text > p {
        font-size: 16px;
    }


    .hero-content {
        gap: 55px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-card {
        padding: 24px;
    }


    .hero-card-number strong {
        font-size: 52px;
    }


    .mini-grid div {
        padding: 18px;
    }


    .scroll-indicator {
        display: none;
    }


    .values {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .form-card {
        padding:
            30px
            22px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .privacy-check {
        gap: 10px;
    }


    .privacy-check span {
        font-size: 12px;
    }


    .contacts-grid {
        grid-template-columns: 1fr;
    }


    .footer-top {
        flex-direction: column;

        gap: 35px;
    }


    .footer-company {
        text-align: left;
    }


    .footer-bottom {
        flex-direction: column;

        justify-content: center;

        gap: 12px;

        padding:
            25px
            0;

        text-align: center;
    }


    .privacy-modal {
        align-items: flex-end;

        padding: 0;
    }


    .privacy-modal-content {
        width: 100%;

        max-height: 94vh;

        border-radius:
            18px
            18px
            0
            0;
    }


    .privacy-modal-header {
        padding:
            24px
            20px
            20px;
    }


    .privacy-modal-header h2 {
        font-size: 25px;
    }


    .privacy-modal-body {
        padding:
            24px
            20px
            35px;
    }


    .privacy-modal-footer {
        padding:
            15px
            20px;
    }


    .privacy-modal-footer .btn {
        width: 100%;
    }

}



/* ==========================================
   VERY SMALL SCREENS
========================================== */

@media (max-width: 430px) {

    .logo-img {
        height: 62px;

        max-width: 190px;
    }


    .hero h1 {
        font-size: 39px;

        letter-spacing: -.03em;
    }


    .mini-grid {
        grid-template-columns: 1fr;
    }


    .section-intro h2,
    .contacts-title h2 {
        font-size: 37px;

        letter-spacing: -.03em;
    }


    .careers-content h2 {
        font-size: 39px;

        letter-spacing: -.03em;
    }

}