@font-face {
    font-family: "Roboto Slab";
    src: url("../fonts/RobotoSlab-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto Slab", serif;
    background: linear-gradient(to right, #F7FAFF, #EEF4FF);
    color: #24446B;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 1270px;
    margin: 0 auto;
}

/* HEADER */

.header {
    padding-top: 58px;
}

.header-inner {
    height: 68px;
    background: white;
    border: 1px solid #D9E5F5;
    border-radius: 22px;
    padding: 0 20px 0 10px;
    display: flex;
    align-items: center;
}

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

.logo {
    cursor: pointer;
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo span {
    margin-left: 8px;
    font-size: 32px;
    line-height: 1;
    color: #24446B;
    font-weight: 900;
}

.right-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav a {
    color: #24446B;
    text-decoration: none;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    cursor: pointer;
    white-space: nowrap;
}

.nav a.active {
    background: #CFE0FA;
    color: #31547D;
    border-radius: 11px;
    padding: 3px 9px 5px;
}

.btn {
    border: none;
    background: #2F80ED;
    color: white;
    border-radius: 12px;
    padding: 9px 17px 11px;
    font-family: "Roboto Slab", serif;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 128, 237, 0.3);
}

/* HERO */

.hero {
    padding-top: 72px;
}

.hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.left {
    width: 470px;
    padding-left: 6px;
}

.left h1 {
    font-size: 58px;
    line-height: 1.32;
    letter-spacing: 8px;
    color: #214D73;
    font-weight: 900;
}

.subtext {
    margin-top: 14px;
    color: #214D73;
    font-size: 22px;
    line-height: 1.32;
    font-weight: 900;
    letter-spacing: 1px;
}

.btn.big {
    margin-top: 22px;
    padding: 13px 21px 15px;
    border-radius: 19px;
    font-size: 23px;
    letter-spacing: 0;
}

.list {
    list-style: none;
    margin-top: 32px;
}

.list li {
    position: relative;
    margin-bottom: 24px;
    padding-left: 45px;
    color: #284A72;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
}

.list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -8px;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #8CCB8F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
}

.right {
    width: 765px;
    position: relative;
    padding-top: 82px;
}

.scheme {
    width: 100%;
    height: auto;
    display: block;
}