

:root {
    --font-main: "Inter", ui-sans-serif, system-ui, sans-serif;
    --font-heading: "Fraunces", Georgia, serif;
    --color-white: #ffffff;
    --color-ink: #333333;
    --color-contact: #002643;
    --color-blue-dark: #002f72;
    --color-blue-header: #0b3483;
    --color-blue: #1685eb;
    --color-blue-soft: #d8edfd;
    --color-orange: #ff642c;
    --color-orange-hover: #ff8559;
    --shadow-soft: 0 4px 22px 8px rgba(11, 0, 165, 0.04);
    --shadow-cta: 0 4px 22px 22px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    color: var(--color-ink);
    background: var(--color-white);
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    overflow-x: clip;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

h1,
.h1 {
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
}

h2,
.h2 {
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
}

h3,
.h3 {
    color: var(--color-ink);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0;
}

.h4 {
    color: var(--color-ink);
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0;
}

.h5 {
    color: var(--color-ink);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.15px;
}

@media (max-width: 767px) {
    h1,
    .h1 {
        font-size: 36px;
        line-height: normal;
    }

    h2,
    .h2 {
        font-size: 32px;
        line-height: normal;
    }

    h3,
    .h3 {
        font-size: 20px;
        line-height: normal;
    }

    body {
        font-size: 16px;
        line-height: 24px;
    }
}

.wrapper {
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 15px;
}

.page {
    flex: 1 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 22px 58px;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    gap: 10px;
    color: var(--color-white);
    background: var(--color-orange);
}

.btn-primary::after {
    content: "";
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    background: url("../imgs/button-icon.svg") center / contain no-repeat;
}

.btn-primary:hover {
    background: var(--color-orange-hover);
}

@media (max-width: 767px) {
    .btn {
        width: 100%;
        min-height: 70px;
        padding: 22px;
        font-size: 18px;
        line-height: 26px;
    }
}

.site-header {
    position: relative;
    z-index: 20;
    background: var(--color-blue-header);
}

.site-header__row {
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.site-logo img {
    width: 190px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 54px;
    margin: 0;
    padding: 0;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    list-style: none;
    white-space: nowrap;
}

.site-nav a:not(.btn):hover {
    opacity: 0.6;
}

.site-nav a.active:not(.btn) {
    text-decoration: underline;
}

.site-header__cta {
    gap: 13px;
    padding: 10px 18px;
    border-color: var(--color-white);
    border-radius: 4px;
    background: transparent;
    box-shadow: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

.site-header__cta::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-orange);
}

.site-header__cta:hover {
    color: var(--color-ink);
    background: var(--color-orange-hover);
}

.site-nav-toggle {
    display: none;
}

.site-header.is-form-page .site-header__row {
    justify-content: center;
}

@media (max-width: 1100px) {
    .site-nav {
        gap: 28px;
    }
}

@media (max-width: 991px) {
    .site-header__row {
        min-height: 45px;
    }

    .site-logo img {
        width: 114px;
    }

    .site-nav-toggle {
        position: relative;
        z-index: 2;
        display: grid;
        width: 38px;
        height: 38px;
        place-items: center;
        border: 0;
        border-radius: 4px;
        padding: 0;
        background: transparent;
        cursor: pointer;
    }

    .site-nav-toggle span {
        position: absolute;
        width: 22px;
        height: 2px;
        border-radius: 2px;
        background: var(--color-white);
        transition: transform 0.2s ease;
    }

    .site-nav-toggle span:first-child {
        transform: translateY(-5px);
    }

    .site-nav-toggle span:last-child {
        transform: translateY(5px);
    }

    .site-header.is-menu-open .site-nav-toggle span:first-child {
        transform: rotate(45deg);
    }

    .site-header.is-menu-open .site-nav-toggle span:nth-child(2) {
        display: none;
    }

    .site-header.is-menu-open .site-nav-toggle span:last-child {
        transform: rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        top: 0;
        right: 0;
        display: none;
        width: 300px;
        padding: 83px 40px 45px;
        flex-direction: column;
        align-items: center;
        gap: 36px;
        border-bottom-left-radius: 14px;
        background: linear-gradient(270deg, #3f75dd 0%, #0c327c 100%);
        box-shadow: var(--shadow-cta);
        white-space: normal;
    }

    .site-header.is-menu-open .site-nav {
        display: flex;
    }

    .site-nav__item--cta {
        margin-top: 8px;
    }

    .site-header__cta {
        width: 148px;
        padding: 10px 18px;
        min-height: auto;
    }
}

.hero {
    color: var(--color-white);
    background: linear-gradient(270deg, #174fbb 0%, #001c52 100%);
    box-shadow: 0 0 44px 33px rgba(230, 227, 227, 0.3);
}

.hero__layout {
    display: grid;
    min-height: 764px;
    grid-template-columns: 769px minmax(320px, 465px);
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 90px 0 70px;
}

.hero__content {
    display: grid;
    justify-items: start;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.hero-badges li {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 17px;
    padding: 7px 20px 7px 16px;
    background: #072f7c;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

.hero-badges li::before {
    content: "";
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    background: url("../imgs/round-checkmark-icon.svg") center / contain no-repeat;
}

.hero__title {
    max-width: 770px;
    color: var(--color-white);
}

.hero__subtitle {
    margin-top: 32px;
    color: var(--color-white);
}

.hero__text {
    max-width: 640px;
    margin-top: 33px;
    color: var(--color-white);
}

.hero .btn {
    margin-top: 50px;
}

.hero__media {
    align-self: end;
}

.hero__media img {
    width: 465px;
    max-width: 100%;
}

@media (max-width: 1100px) {
    .hero__layout {
        min-height: 680px;
        grid-template-columns: minmax(0, 1fr) 440px;
        gap: 36px;
        padding: 70px 0 45px;
    }
}

@media (max-width: 900px) {
    .hero__layout {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 52px 0 0;
    }

    .hero__content {
        justify-items: stretch;
    }

    .hero-badges {
        gap: 8px;
        margin-bottom: 24px;
    }

    .hero-badges li {
        min-height: 30px;
        padding: 6px 13px;
        font-size: 13px;
    }

    .hero__subtitle {
        margin-top: 22px;
    }

    .hero__text {
        margin-top: 22px;
    }

    .hero .btn {
        margin-top: 32px;
    }

    .hero__media {
        justify-self: center;
        max-width: 82%;
    }
}

.damage-section {
    padding: 90px 0 100px;
    background: var(--color-white);
}

.damage-section__layout {
    display: grid;
    grid-template-columns: 638px minmax(0, 560px);
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.damage-cards {
    display: grid;
    grid-template-columns: repeat(2, 306px);
    gap: 25px 27px;
}

.damage-card {
    width: 306px;
    height: 306px;
    border-radius: 12px;
}

.damage-card--image {
    object-fit: cover;
}

.damage-card--icon {
    display: grid;
    place-items: center;
    padding: 45px 36px;
    background-color: var(--color-white);
    box-shadow: 4px 4px 22px 14px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.damage-card--icon:nth-child(4) {
    background-image: url("../imgs/waves.svg");
    background-size: contain;
}

.damage-card--icon img {
    max-width: 90px;
    max-height: 108px;
}

.damage-card--icon .h3 {
    max-width: 190px;
    color: var(--color-ink);
}

.damage-card--icon .h3::first-letter {
    color: inherit;
}

.damage-card--icon .h3 span {
    display: inline-block;
    width: 16px;
    height: 17px;
    background-image: url("../imgs/checkmark.svg");
    transform: translateX(-5px) translateY(1px);
}

.damage-section__content {
    display: grid;
    justify-items: start;
}

.damage-section__content > .h3 {
    max-width: 560px;
    margin-top: 28px;
}

.damage-list {
    display: grid;
    gap: 14px;
    margin: 60px 0 0;
    padding: 0;
    list-style: none;
}

.damage-list li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    color: var(--color-ink);
    font-size: 18px;
    line-height: 26px;
}

.damage-list__icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 9px;
    background: var(--color-blue-soft);
}

.damage-list__icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.damage-section .btn {
    margin-top: 58px;
}

@media (max-width: 1200px) {
    .damage-section__layout {
        grid-template-columns: 306px minmax(0, 1fr);
        align-items: start;
        justify-content: stretch;
        gap: 85px;
    }

    .damage-cards {
        grid-template-columns: 306px;
        gap: 17px;
        justify-content: start;
    }

    .damage-card {
        width: 306px;
        height: 147px;
    }

    .damage-card:nth-child(3) {
        order: 4;
    }

    .damage-card:nth-child(4) {
        order: 3;
    }

    .damage-card--icon {
        grid-template-columns: 65px minmax(0, 1fr);
        place-items: center start;
        gap: 12px;
        padding: 24px;
        text-align: center;
    }

    .damage-card--icon:nth-child(4) {
        background-image: none;
    }

    .damage-card--icon img {
        max-width: 74px;
        max-height: 94px;
    }

    .damage-card--icon .h3 {
        max-width: none;
    }
}

@media (max-width: 991px) {
    .damage-section__layout {
        grid-template-columns: 1fr;
    }

    .damage-cards {
        grid-template-columns: 1fr;

        gap: 17px;
        justify-content: center;
        justify-items: center;
    }

    .damage-card {
        height: 147px;
        width: 100%;
        max-width: 500px;
    }

    .damage-card--image {
        display: none;
    }

    .damage-card--icon {
        grid-template-columns: 65px minmax(0, 1fr);
        place-items: center start;
        gap: 12px;
        padding: 24px;
        text-align: center;
    }

    .damage-card--icon:nth-child(4) {
        background-image: none;
    }

    .damage-card--icon img {
        max-width: 74px;
        max-height: 94px;
    }

    .damage-card--icon .h3 {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .damage-section {
        padding: 64px 0 70px;
    }

    .damage-section__layout {
        gap: 46px;
    }

    .damage-cards {
        gap: 17px;
        justify-content: center;
        justify-items: center;
    }

    .damage-card {
        width: 100%;
        height: 147px;
    }

    .damage-card--icon .h3 {
        font-size: 16px;
        line-height: 1.2;
    }

    .damage-section__content > .h3 {
        margin-top: 22px;
    }

    .damage-list {
        gap: 12px;
        margin-top: 34px;
    }

    .damage-list li {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 14px;
        font-size: 16px;
        line-height: 24px;
    }

    .damage-list__icon {
        width: 40px;
        height: 40px;
    }

    .damage-list__icon img {
        width: 20px;
        height: 20px;
    }

    .damage-section .btn {
        margin-top: 34px;
    }
}

.statement-section {
    padding: 80px 0;
    color: var(--color-white);
    background:
        linear-gradient(270deg, rgba(63, 117, 221, 0.9) 0%, #00205c 100%),
        var(--color-blue-dark);
    box-shadow: 0 0 44px 33px rgba(230, 227, 227, 0.3);
}

.statement-section__layout {
    display: grid;
    grid-template-columns: minmax(0, 770px) 492px;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.statement-section__content .h1,
.statement-section__content .h3 {
    color: var(--color-white);
}

.statement-section__content .h3 {
    max-width: 410px;
    margin-top: 30px;
}

.statement-section img {
    width: 492px;
    border-radius: 20px;
}

@media (max-width: 1100px) {
    .statement-section__layout {
        grid-template-columns: minmax(0, 1fr) 210px;
        gap: 30px;
    }

    .statement-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .statement-section {
        padding: 58px 0;
    }

    .statement-section__layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .statement-section img {
        width: 100%;
    }

    .statement-section img {
        border-radius: 30px;
    }
}

@media (max-width: 450px) {
    .statement-section img {
        border-radius: 15px;
    }
}

.steps-section {
    padding: 80px 0 100px;
    background: var(--color-white);
}

.steps-section .wrapper {
    display: grid;
    justify-items: center;
}

.steps-section__header {
    text-align: center;
}

.steps-section__header .h3 {
    margin-top: 25px;
    color: #2550a2;
}

.steps-list {
    position: relative;
    display: grid;
    width: 100%;
    --steps-body-min: 119px;
    --steps-line-top: calc(129px + 30px + var(--steps-body-min) + 36px);
    grid-template-columns: repeat(3, minmax(0, 330px));
    justify-content: space-between;
    gap: 40px;
    margin-top: 60px;
}

.steps-list::before {
    content: "";
    position: absolute;
    top: var(--steps-line-top);
    right: 320px;
    left: 10px;
    z-index: 0;
    height: 1px;
    background: var(--color-blue);
}

.steps-card {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    justify-items: start;
}

.steps-card__image {
    width: 120px;
    height: 129px;
    object-fit: contain;
}

.steps-card__body {
    min-height: var(--steps-body-min);
    margin-top: 30px;
}

.steps-card__body .h3 {
    max-width: 330px;
}

.steps-card__body p {
    max-width: 330px;
    margin-top: 14px;
    color: var(--color-ink);
    font-size: 18px;
    line-height: 26px;
}

.steps-card__check {
    position: relative;
    z-index: 2;
    display: block;
    width: 20px;
    height: 20px;
    margin-top: 26px;
    border-radius: 50%;
    background: var(--color-blue);
}

.steps-card__check::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: var(--color-white);
}

.steps-section .btn {
    margin-top: 56px;
}

@media (max-width: 1200px) {
    .steps-list {
        --steps-body-min: 180px;
        grid-template-columns: repeat(3, minmax(0, 290px));
        gap: 32px;
    }

    .steps-list::before {
        right: 280px;
    }

    .steps-card__body .h3,
    .steps-card__body p {
        max-width: 290px;
    }
}

@media (max-width: 991px) {
    .steps-section {
        padding: 64px 0 70px;
    }

    .steps-section .wrapper {
        justify-items: stretch;
    }

    .steps-section__header {
        text-align: left;
    }

    .steps-section__header .h3 {
        margin-top: 16px;
    }

    .steps-list {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-top: 42px;
    }

    .steps-list::before,
    .steps-card__check {
        display: none;
    }

    .steps-card {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-card__body {
        min-height: 0;
        margin-top: 0;
    }

    .steps-card__body .h3,
    .steps-card__body p {
        max-width: none;
    }

    .steps-section .btn {
        justify-self: start;
        margin-top: 44px;
    }
}

@media (max-width: 767px) {
    .steps-section {
        padding: 58px 0 64px;
    }

    .steps-list {
        gap: 28px;
        margin-top: 36px;
    }

    .steps-card {
        gap: 18px;
    }

    .steps-card__image {
        width: 100px;
        height: auto;
    }

    .steps-card__body p {
        font-size: 16px;
        line-height: 24px;
    }
}

.faq-preview-section {
    position: relative;
    min-height: 901px;
    padding: 60px 0 90px;
    background: #f9f9f9;
    overflow: hidden;
}

.faq-preview-section__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 673px;
    background: url("../imgs/faq-preview.jpg") center / cover no-repeat;
}

.faq-preview-section .wrapper {
    position: relative;
    z-index: 1;
}

.faq-preview-section__content {
    max-width: 770px;
}

.faq-preview-section__title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.faq-preview-section__title-icon {
    display: grid;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 6px;
    background: var(--color-blue);
}

.faq-preview-section__title-icon img {
    width: 14px;
    height: 20px;
}

.faq-preview-section .accordeon {
    display: grid;
    gap: 14px;
    margin: 0;
}

.faq-preview-section .box-acc {
    overflow: hidden;
    border-radius: 12px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    border: 1px solid transparent;
}

.faq-preview-section .box-acc:hover {
    border-color: #FF642C;
    transition: border-color .2s;
}

.faq-preview-section .ac-head {
    display: grid;
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) 18px;
    align-items: center;
    gap: 24px;
    padding: 20px 30px;
    cursor: pointer;
}

.faq-preview-section .ac-head h4 {
    color: var(--color-ink);
}

.faq-preview-section .ac-head__icon {
    width: 18px;
    height: 11px;
    background: url("../imgs/faq-icon.svg") center / contain no-repeat;
    transition: transform 0.2s ease;
}

.faq-preview-section .box-acc.in .ac-head__icon {
    transform: rotate(180deg);
}

.faq-preview-section .ac-body {
    padding: 0 30px 24px;
}

.faq-preview-section .ac-body p {
    max-width: 680px;
    padding-top: 18px;
    border-top: 1px solid rgba(51, 51, 51, 0.12);
    color: var(--color-ink);
    font-size: 18px;
    line-height: 26px;
}

@media (max-width: 1700px) {
    .faq-preview-section__media {
        max-width: 480px;
    }
}

@media (max-width: 1500px) {
    .faq-preview-section__media {
        max-width: 380px;
    }
}

@media (max-width: 1400px) {
    .faq-preview-section {
        min-height: 760px;
        padding: 60px 0 70px;
    }

    .faq-preview-section__media {
        max-width: 320px;
        background-position: center;
    }

    .faq-preview-section__content {
        max-width: calc(100% - 380px);
    }
}

@media (max-width: 991px) {
    .faq-preview-section .wrapper {
        order: 1;
    }

    .faq-preview-section__media {
        display: none;
    }

    .faq-preview-section__content {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .faq-preview-section {
        padding-top: 58px;
    }

    .faq-preview-section__title {
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 34px;
    }

    .faq-preview-section__title-icon {
        width: 36px;
        height: 36px;
    }

    .faq-preview-section .accordeon {
        gap: 12px;
    }

    .faq-preview-section .ac-head {
        min-height: 64px;
        gap: 18px;
        padding: 18px 16px;
    }

    .faq-preview-section .ac-body {
        padding: 0 16px 20px;
    }

    .faq-preview-section .ac-body p {
        padding-top: 16px;
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 540px) {
    .faq-preview-section__title {
        flex-direction: column;
    }
}

.why-section {
    padding-top: 83px;
    background: var(--color-white);
}

.why-section .wrapper {
    max-width: 1340px;
}

.why-section__panel {
    display: grid;
    min-height: 668px;
    grid-template-columns: 371px minmax(0, 627px);
    column-gap: 162px;
    padding: 50px 90px 80px 60px;
    border-radius: 22px;
    background: linear-gradient(90deg, #0c327c 0%, #3f75dd 100%);
    box-shadow: 0 0 44px 33px rgba(230, 227, 227, 0.3);
    color: var(--color-white);
}

.why-section__title .h3 {
    margin-top: 16px;
}

.why-section__media {
    display: block;
    width: 371px;
    max-width: 100%;
    height: auto;
    margin-top: 43px;
}

.why-list {
    display: grid;
    gap: 30px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.why-list li {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 34px;
}

.why-list__icon {
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    border-radius: 9px;
    background: var(--color-blue);
}

.why-list__icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.why-section__title .h1,
.why-section__title .h3,
.why-list__content .h3,
.why-list__content .h4 {
    color: var(--color-white);
}

.why-list__content {
    display: grid;
    gap: 2px;
}

@media (max-width: 1300px) {
    .why-section__panel {
        grid-template-columns: minmax(300px, 371px) minmax(0, 1fr);
        column-gap: 80px;
        padding-right: 60px;
    }
}

@media (max-width: 1100px) {
    .why-section__panel {
        grid-template-columns: 800px;
        justify-content: center;
        gap: 35px;
    }

    .why-list li {
        gap: 24px;
    }

    .why-section__intro {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .why-section__panel {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-section__media {
        margin-top: 30px;
    }

    .why-list {
        margin-top: 0;
    }

    .why-section__intro {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .why-section {
        padding: 70px 0 32px;
        background: linear-gradient(90deg, #0c327c 0%, #3f75dd 100%);
        box-shadow: 0 0 44px 33px rgba(230, 227, 227, 0.3);
    }

    .why-section__panel {
        display: block;
        min-height: 0;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .why-section__title .h3 {
        margin-top: 7px;
    }

    .why-section__media {
        width: 100%;
        margin-top: 25px;
    }

    .why-list {
        gap: 25px;
        margin-top: 30px;
    }

    .why-list li {
        display: block;
    }

    .why-list__icon {
        margin-bottom: 20px;
    }
}

.cta-section {
    position: relative;
    padding: 0 0 0;
    background: linear-gradient(180deg, var(--color-white) 0%, #cce9fe 100%);
    overflow: hidden;
}

.cta-section .wrapper {
    position: relative;
    z-index: 1;
    max-width: 1350px;
}

.cta-section__panel {
    display: grid;
    min-height: 571px;
    justify-items: center;
    align-content: center;
    padding: 80px 110px 92px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.cta-section__panel .h2 {
    max-width: 924px;
}

.cta-section__panel > .h4 {
    max-width: 910px;
    margin-top: 30px;
    color: #000000;
}

.cta-section__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 38px;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.cta-section__badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-section__badges li::before {
    content: "";
    height: 17px;
    width: 16px;
    background-image: url(../imgs/checkmark.svg);
}

.cta-section__note {
    margin-top: 36px;
}

.cta-section .btn {
    margin-top: 40px;
}

.cta-section__decor {
    position: absolute;
    bottom: 0;
    z-index: 0;
    width: 324px;
    height: 487px;
    object-fit: contain;
    pointer-events: none;
}

.cta-section__decor--left {
    left: 100px;
}

.cta-section__decor--right {
    right: 116px;
}

@media (max-width: 1500px) {
    .cta-section__decor--left {
        left: -80px;
    }

    .cta-section__decor--right {
        right: -80px;
    }
}

@media (max-width: 1100px) {
    .cta-section__panel {
        min-height: 520px;
        padding: 70px 5px 82px;
    }

    .cta-section__decor {
        width: 173px;
        height: auto;
    }

    .cta-section__decor--left {
        left: 30px;
    }

    .cta-section__decor--right {
        right: 30px;
    }
}

@media (max-width: 767px) {
    .cta-section {
        background: none;
    }

    .cta-section__panel {
        min-height: 0;
        padding: 58px 0 50px;
        border-radius: 0;
    }

    .cta-section__panel > .h4 {
        margin-top: 20px;
    }

    .cta-section__badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }

    .cta-section__note {
        margin-top: 30px;
    }

    .cta-section .btn {
        margin-top: 50px;
        box-shadow: 0 4px 22px 22px rgba(0, 0, 0, 0.08);
    }

    .cta-section__decor {
        display: none;
    }
}

.contact-section {
    min-height: 780px;
    padding: 90px 0;
    color: var(--color-contact);
    background: var(--color-white);
}

.contact-section__layout {
    display: grid;
    grid-template-columns: minmax(0, 570px) minmax(0, 1fr);
    gap: 135px;
    align-items: start;
}

.contact-section__content {
    padding-top: 50px;
}

.contact-section__intro .h1,
.contact-section__intro .h3,
.contact-list__content .h3,
.contact-list__content .h5 {
    color: var(--color-contact);
}

.contact-section__intro .h1::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 14px;
    background: #002643;
}

.contact-section__intro .h3 {
    margin-top: 18px;
}

.contact-list {
    display: grid;
    gap: 28px;
    margin: 58px 0 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 25px;
    align-items: center;
}

.contact-list__icon {
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(90deg, #0c327c 0%, #3f75dd 100%);
}

.contact-list__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.contact-list__content {
    display: grid;
    grid-template-columns: 168px 1fr;
    align-items: center;
    gap: 47px;
}

.contact-list__content .h3 {
    flex-shrink: 0 ;
}

.contact-list__content .h5 {
    margin-top: 12px;
}

.contact-section__map {
    height: 520px;
    overflow: hidden;
}

.contact-section__map iframe {
    display: block;
}

@media (max-width: 1200px) {
    .contact-section {
        min-height: 535px;
        padding: 58px 0;
    }

    .contact-section__layout {
        grid-template-columns: minmax(0, 530px) minmax(0, 1fr);
        gap: 50px;
    }

    .contact-list__content {
        gap: 15px;
    }

    .contact-section__content {
        padding-top: 0;
    }

    .contact-list {
        gap: 22px;
        margin-top: 36px;
    }

    .contact-section__map {
        height: 390px;
    }
}

@media (max-width: 991px) {
    .contact-section {
        min-height: 864px;
        padding: 51px 0 50px;
    }

    .contact-section__layout {
        display: block;
    }

    .contact-section__intro::after {
        margin-top: 14px;
    }

    .contact-section__intro .h3 {
        margin-top: 7px;
    }

    .contact-list {
        gap: 20px;
        margin-top: 40px;
    }

    .contact-list li {
        gap: 16px;
    }

    .contact-list__content {
        grid-template-columns: 1fr;
        padding-top: 14px;
    }

    .contact-list__content .h5 {
        margin-top: 14px;
    }

    .contact-section__map {
        height: 274px;
        margin-top: 40px;
    }
}

.site-footer {
    flex: 0 0 auto;
    padding: 40px 0;
    color: var(--color-white);
    background: var(--color-blue-dark);
}

.site-footer__top,
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-footer__top {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.site-footer__logo img {
    width: 190px;
}

.site-footer__nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 18px;
    line-height: 26px;
    white-space: nowrap;
}

.site-footer__nav span {
    display: none;
}

.site-footer__nav a:hover {
        opacity: 0.6;
}

.site-footer__nav a.active {
    text-decoration: underline;
}

.site-footer__bottom {
    padding-top: 30px;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

.site-footer__text {
    max-width: 940px;
}

.copyright {
    order: 2;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .site-footer {
        padding: 32px 0;
    }

    .site-footer__top,
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__nav {
        flex-wrap: wrap;
        gap: 18px;
        font-size: 16px;
        line-height: 24px;
        white-space: normal;
    }

    .site-footer__bottom {
        font-size: 14px;
        line-height: 20px;
    }

    .copyright {
        order: 0;
    }
}


.legal-content,
.embedded-form {
    padding: 70px 0;
}

.legal-content {
    padding-block: 43px 40px;
}

.legal-content h1 {
    margin-block-end: 43px;
}

.legal-content {
    font-size: 20px;
}

.legal-content p {
    margin-block-end: 24px;
}

.legal-content p > strong {
    font-size: 24px;
    font-weight: 700;
}

.legal-content a {
    color: #1685EB ;
}

.legal-content a:hover {
    text-decoration: underline;
}
