@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

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

body { background-color: #02253c; color: #fff; font-family: 'Open Sans', sans-serif; min-height: 100vh; display: flex; flex-direction: column; }

.header { display: flex; justify-content: center; padding: 40px 64px 0;}

.stage { flex: 1; position: relative; display: flex; align-items: center; overflow: hidden; padding-inline: 64px;}
.stage__illustration { overflow: hidden; pointer-events: none; height: 450px; width: 100%; display: flex; align-items: center;justify-content: center;}
.stage__illustration-img { width: 186.36%; height: 134.76%; object-fit: contain; }
.stage__content { display: flex; flex-direction: column; gap: 32px; max-width: 564px; position: relative; z-index: 1; }

.stage__topline { font-weight: 700; font-size: 18px; line-height: 1.4; text-transform: uppercase; }
.stage__text { display: flex; flex-direction: column; gap: 16px; }

.stage__headline { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 48px; line-height: 1.3;}
.stage__subline { font-weight: 400; font-size: 18px; line-height: 1.4; }

.stage__cta-label { font-weight: 700; font-size: 16px; line-height: 1.5;}
.stage__buttons { display: flex; gap: 32px; flex-wrap: wrap; }

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: #fff;
    color: #02253c;
    font-weight: 600;
    border-radius: 0 0 4px 4px;
    text-decoration: none;
    transition: top 0.1s;
}

.skip-link:focus { top: 0; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    min-width: 200px;
    padding: 12px 16px;
    border-radius: 12px;
    background-color: #32aaff;
    color: #1a1a1a;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease-in-out;
}

.btn:hover { background-color: #B4E1FF }
.btn:hover svg { scale: 1.1 }

.btn__icon { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.btn__icon svg { width: auto; height: auto; display: block; transition: scale 0.3s ease-in-out; }

.footer { display: flex; flex-direction: column; gap: 40px; padding: 48px 64px; }

.footer__divider { height: 1px; background-color: #757d83; }
.footer__logo { width: 122px; height: 48px; }
.footer__meta { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.footer__social { display: flex; gap: 16px; align-items: center; }

.footer__social-link { display: flex; width: 32px; height: 32px; align-items: center; justify-content: center; }
.footer__social-link:hover svg { scale: 1.1 }
.footer__social-link svg { width: 24px; height: 24px; display: block; transition: scale 0.3s ease-in-out; }

.footer__legal { display: flex; gap: 32px; align-items: center; }
.footer__legal-link { font-weight: 600; font-size: 14px; line-height: 1.4; color: #fff; text-decoration: none; }
.footer__legal-link:hover { text-decoration: underline; }

header, main, footer { width: 100%; max-width: 1920px; margin-inline: auto; }

.legal { flex: 1; padding: 48px 64px; }

.legal__content { width: 100%; max-width: 1024px; display: flex; flex-direction: column; gap: 32px; }

.legal__headline { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 48px; line-height: 1.3; }

.legal__section { display: flex; flex-direction: column; gap: 12px; }

.legal__subheadline { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 20px; line-height: 1.4; margin-top: 8px; }
.legal__subsubheadline { font-weight: 700; font-size: 16px; line-height: 1.5; }

.legal__section p,
.legal__section address { font-size: 15px; line-height: 1.7; font-style: normal; }

.legal__section a { color: #32aaff; text-decoration: none; }
.legal__section a:hover { text-decoration: underline; }

.legal__footnote { font-size: 13px; line-height: 1.6; color: #a0adb5; }

.legal__cookie-group { display: flex; flex-direction: column; gap: 12px; }
.legal__cookie-group-header { display: flex; align-items: baseline; gap: 12px; }
.legal__cookie-count { font-size: 13px; color: #a0adb5; }

.legal table { width: 100%; border-collapse: collapse; font-size: 13px; line-height: 1.5; }
.legal th { text-align: left; font-weight: 600; padding: 8px 12px; background-color: rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.15); }
.legal td { padding: 8px 12px; border-bottom: 1px solid rgba(255,255,255,0.07); vertical-align: top; }
.legal tr:last-child td { border-bottom: none; }
.legal tbody tr:hover { background-color: rgba(255,255,255,0.04); }

@media (min-width: 1280px) {
    .stage__illustration { width: 664px; height: 517px; }
    .stage { flex-direction: row-reverse; justify-content: space-between; }
}

@media (max-width: 1279px) {
    .stage { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .stage { flex-direction: column-reverse; }
}

@media (max-width: 1023px) {
    .stage { padding: 0 32px 48px; }
    .header { padding: 32px 32px 0; }
    .footer { padding: 40px 32px; }
    .legal { padding: 32px 32px 48px; }
}

@media (min-width: 768px) {
    .footer__logo { display: none; }
}

@media (max-width: 767px) {
    .header { padding: 28px 24px 0; }
    .stage__illustration { height: 300px; }
    .stage__illustration-img { width: 750px; height: auto; object-fit: contain;}
    .stage__headline { font-size: 36px; }
    .stage__buttons { gap: 16px; }
    .footer { padding: 32px 24px; row-gap: 48px; align-items: center; }
    .footer__meta { flex-direction: column; height: auto; row-gap: 32px; align-items: center; }
    .footer__legal { flex-direction: column; row-gap: 24px; align-items: center; }
    .footer__divider { display: none; }
    .legal { padding: 24px 24px 48px; }
    .legal__headline { font-size: 36px; }
}

@media (max-width: 480px) {
    .stage__illustration-img { position: absolute; }
    .stage__buttons { flex-direction: column; row-gap: 32px; }
    .btn { width: auto; max-width: max-content }
}
