/* wp96aj */
/* Zmienne */
:root {
    --color-border: rgba(255, 255, 255, 0.50);
    --color-primary: #01204e;
    --color-text: #00053e;
    --color-red: #c4261d;
    --color-white: #ffffff;

    --font-family: 'source-sans-pro', 'Roboto';
    --font-weight-bold: 900;
    --font-weight-semibold: 700;
    --font-weight-medium: 600;
    --font-weight-normal: 400;

    --padding-frame-mobi: 1rem;
    --padding-frame-tablet: 2.4rem;
    --padding-frame-desktop: 13.5rem;

    --header-height: 6.5rem;
}

/* Reset i podstawowe style */
*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    max-width: 100vw;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-white);
    color: var(--color-text);
    font-display: swap;
    font-family: var(--font-family), sans-serif;
    font-size: 1.6rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.2;
    min-width: 320px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utils */

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.svg {
    display: none;
    height: 0;
    position: absolute;
    width: 0;
}

section {
    scroll-margin-top: var(--header-height);
}

/* Kontener */

.container {
    margin: 0 auto;
    max-width: 1440px;
    padding-left: var(--padding-frame-mobi);
    padding-right: var(--padding-frame-mobi);
}

/* Utils */
.button {
    align-content: center;
    align-items: flex-start;
    background-color: var(--color-red);
    border-radius: 0;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    font-size: 1.6rem;
    font-weight: var(--font-weight-medium);
    justify-content: center;
    line-height: 1.2;
    margin: 0 auto;
    padding: 1.2rem 1.6rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: fit-content;
}

.button.--outline {
    align-items: center;
    background: transparent;
    border: 2px solid var(--color-white);
    border-radius: 0;
    display: flex;
    font-size: 1.6rem;
    font-weight: normal;
    gap: 2.4rem;
    justify-content: center;
    margin: 0;
    padding: 1rem 2.4rem;
    text-transform: unset;
    width: 100%;
}

.button.--dark {
    background-color: var(--color-primary);
}

.button.--left {
    margin: 0;
}

.button.--wide {
    width: 100%;
}

.button.button--secondary {
    background-color: transparent;
    border: 2px solid var(--color-text);
    color: var(--color-text);
    gap: 0.8rem;
    margin: 0 0 2rem 0;
}

.button.button--secondary:hover {
    background-color: var(--color-text);
    color: var(--color-white);
}

.button.button--secondary svg {
    fill: currentColor;
}

.svg__back {
    transform: rotate(180deg);
}

/* Header */
.header {
    background: radial-gradient(78% 107.56% at 76.53% 108.12%, #033276 0%, var(--color-primary) 65.87%);
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.10);
    position: fixed;
    width: 100%;
    z-index: 10;
}

.header__container {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 1440px;
    padding: var(--padding-frame-mobi);
}

.header__logo,
.header__logo img,
.header__logo svg {
    height: 40px;
    width: 129px;
}

.header__hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    margin-left: auto;
    padding: 0.8rem;
}

.header__hamburger-bar {
    background-color: var(--color-white);
    border-radius: 2px;
    display: block;
    height: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    width: 24px;
}

.header__hamburger[aria-expanded="true"] .header__hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__hamburger[aria-expanded="true"] .header__hamburger-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.header__hamburger[aria-expanded="true"] .header__hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header__menu {
    background-color: var(--color-primary);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 1.6rem var(--padding-frame-mobi);
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 100;
}

.header__menu.is-open {
    background: radial-gradient(78% 107.56% at 76.53% -8.12%, #033276 0%, var(--color-primary) 65.87%);
    display: flex;
    height: 100vh;
}

.header__nav-list {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.header__nav-item {
    width: 100%;
}

.header__nav-item a {
    color: var(--color-white);
    display: block;
    font-family: var(--font-family), sans-serif;
    font-size: 1.8rem;
    font-weight: var(--font-weight-medium);
    padding: 2.4rem 0;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.header__cta {
    padding-top: 1.6rem;
    text-align: center;
    width: 100%;
}

/* Banner */
.banner {
    height: 100vh;
    max-height: calc(586px + var(--header-height));
    padding-top: var(--header-height);
    position: relative;
    width: 100%;
}

.banner__content {
    align-content: flex-start;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    height: 100%;
    justify-content: center;
    position: relative;
    text-align: center;
    z-index: 1;
}

.banner__badge {
    align-items: center;
    background: var(--color-red);
    color: var(--color-white);
    display: flex;
    font-size: 2.4rem;
    font-weight: var(--font-weight-bold);
    justify-content: center;
    padding: 6px 16px;
    text-align: center;
}

.banner__h1 {
    color: var(--color-white);
    font-size: 5rem;
    font-style: normal;
    font-weight: var(--font-weight-bold);
    letter-spacing: -1.5px;
    line-height: 1;
    margin: 0;
    overflow: hidden;
    padding: 0;
    text-align: left;
    text-edge: cap;
    text-overflow: ellipsis;
}

.banner__h2 {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    margin: 0;
    padding: 0;
    text-align: left;
    max-width: 47rem;
}

.banner__video {
    height: 100%;
    left: 0;
    object-fit: cover;
    padding-top: var(--header-height);
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

/*Produkt*/
.product {
    background-image:
        url("../assets/product_tytan_background_tablet_zk49wp.avif"),
        url("../assets/product_tytan_background_tablet_zk49wp.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    padding: 4rem 0;
}

.product__container {
    display: flex;
    flex-direction: column-reverse;
}

.product__img {
    align-items: center;
    display: flex;
    justify-content: center;
}

.product__title {
    font-size: 3rem;
    font-style: normal;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.product__desc {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: var(--font-weight-normal);
    line-height: 1.3;
    margin: 2.4rem 0 0 0;
}

.product__desc.--fat {
    font-size: 1.8rem;
    font-weight: var(--font-weight-medium);
}

.product__list {
    margin: 3.2rem 0 3.2rem;
}

.product__list li {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 2.4rem;
    justify-content: flex-start;
    padding: 1.6rem 1rem 0 0;
}

.product__list li:not(:last-child) {
    border-bottom: 2px solid var(--color-text);
    padding: 1.6rem 1rem 1.6rem 0;
}

.product__list svg {
    --size: 5rem;
    height: var(--size);
    min-width: var(--size);
    width: var(--size);
}

.product__list p {
    font-size: 1.8rem;
    font-weight: var(--font-weight-semibold);
}

/* Zastosowanie */
.application {
    background: radial-gradient(169.92% 139.44% at 13.26% 111.29%, #033276 0%, #01204E 65.87%);
    box-shadow: 0 0 43px 0 rgba(1, 32, 78, 0.20);
    max-width: 100vw;
    overflow: hidden;
    padding: 4rem 0;
    width: 100%;
}

.application__container {
    max-width: 1440px;
    padding-left: var(--padding-frame-mobi);
    width: 100%;
}

.application__content {
    width: 100%;
}

.application__title {
    color: var(--color-white);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 3.2rem;
    padding-right: var(--padding-frame-mobi);
}

.application__slider {
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.application__slider .swiper {
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 0 6rem;
    width: 100%;
}

.application__slider .swiper-wrapper {
    box-sizing: border-box;
    display: flex;
}

.application__slider .swiper-slide {
    box-sizing: border-box;
    flex-shrink: 0;
    height: auto;
    max-width: 25rem;
    width: calc(100vw - var(--padding-frame-mobi) - var(--padding-frame-mobi) - 4rem);
}

.slide__content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    max-height: 28rem;
    overflow: hidden;
    padding: 2.4rem;
    text-align: left;
}

.slide__link {
    text-decoration: none;
}

.slide__icon {
    align-items: center;
    display: flex;
    justify-content: center;
}

.slide__icon svg {
    color: var(--color-white);
    display: block;
    fill: var(--color-primary);
    height: 36px;
    width: 36px;
}


.slide__title {
    color: var(--color-white);
    font-size: 2.2rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin: 6rem 0 0.5rem;
}

.slide__subtitle {
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.4;
    margin: 0;
}

/* Swiper */
.application__slider .swiper-scrollbar {
    background: rgba(15, 77, 167, 0.50);
    border-radius: 10px;
    bottom: 2rem;
    height: 8px;
    left: 0;
    position: absolute;
    right: 0;
    width: calc(100% - var(--padding-frame-mobi));
}

.application__slider .swiper-scrollbar-drag {
    background: var(--color-red);
    border-radius: 10px;
    cursor: grab;
    height: 100%;
    transition: background-color 0.3s ease;
}

.application__slider .swiper-scrollbar-drag:active {
    cursor: grabbing;
}

.application__slider .swiper-scrollbar-drag:hover {
    background: var(--color-red);
}

.application__slider .swiper-button-prev,
.application__slider .swiper-button-next {
    color: var(--color-white);
    height: 44px;
    width: 44px;
}

.application__slider .swiper-button-prev::after,
.application__slider .swiper-button-next::after {
    font-size: 2.4rem;
    font-weight: var(--font-weight-bold);
}

.application__slider .swiper-button-prev {
    left: 0;
}

.application__slider .swiper-button-next {
    right: 0;
}

/* Benefits */
.benefits {
    background-image:
        url("../assets/benefits_background_tablet_zk49wp.avif"),
        url("../assets/benefits_background_tablet_zk49wp.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0;
}

.benefits__content {
    display: flex;
    flex-direction: column-reverse;
    gap: 4rem;
}

.benefits__left {
    flex: 1;
}

.benefits__title {
    color: var(--color-text);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 3.2rem;
}

.benefits__list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    list-style: none;
    margin: 0;
    padding: 0 2rem 0 0;
}

.benefits__item {
    align-items: flex-start;
    display: flex;
    gap: 0.8rem;
}

.benefits__icon {
    color: var(--color-primary);
    flex-shrink: 0;
    height: 32px;
    width: 28px;
}

.benefits__text {
    flex: 1;
    margin: 0.4rem 0 0 0;
}

.benefits__heading {
    color: var(--color-text);
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin: 0 0 0.8rem;
}

.benefits__desc {
    color: var(--color-text);
    font-size: 1.6rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    margin: 0;
}

.benefits__right {
    align-items: center;
    display: flex;
    justify-content: center;
}

.benefits__right img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}

/* More */
.more {
    background-image: url("../assets/more_background_mobile_zk49wp.svg");
    background-position: 0 13rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.more__container {
    display: flex;
    flex-direction: column;
    padding: 0 0 6rem 0;
}

.more__left {
    align-items: center;
    display: flex;
    justify-content: center;
}

.more__left img,
.more__left picture {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
    z-index: -1;
}

.more__right {
    flex: 1;
    padding-left: var(--padding-frame-mobi);
    padding-right: var(--padding-frame-mobi);
}

.more__heading {
    color: var(--color-white);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.more__desc {
    color: var(--color-white);
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.5;
    margin: 0;
    padding: 2.6rem 0;
}


/* Newsletter Section */
.newsletter {
    background-image:
        url("../assets/benefits_background_tablet_zk49wp.avif"),
        url("../assets/benefits_background_tablet_zk49wp.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--color-text);
    padding: 4rem 0 6rem 0;
}

.newsletter__container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 4rem var(--padding-frame-mobi) 0 var(--padding-frame-mobi);
}

.newsletter__content {
    margin: 0 auto;
    max-width: 100%;
}

.newsletter__title {
    color: var(--color-text);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 3.2rem;
    text-align: left;
}

.newsletter__description {
    color: var(--color-text);
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 3.2rem;
    text-align: left;
}

.newsletter__form {
    background: transparent;
}

/* Pseudo-menu z krokami */
.newsletter__steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2rem 0;
    width: 100%;
}

.newsletter__step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 0;
    background-color: transparent;
    border: 3px solid #B3B3B3;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.newsletter__step--active {
    background-color: transparent;
    border-color: var(--color-text);
}

.newsletter__step-number {
    color: #B3B3B3;
    font-size: 1.8rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    transition: color 0.3s ease;
}

.newsletter__step--active .newsletter__step-number {
    color: var(--color-text);
}

.newsletter__step-line {
    flex: 1;
    height: 3px;
    background-color: #B3B3B3;
}

.newsletter__form-title {
    color: var(--color-text);
    font-size: 2.1rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1.5;
    margin-bottom: 1.6rem;
}

.newsletter-bottom {
    width: 100%;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.newsletter-bottom svg {
    height: 55px;
    width: 178px;
}

.newsletter__rules {
    padding: 1.6rem 0 3.2rem 0;
    text-align: center;
    width: 100%;
}

.newsletter__rules a {
    color: var(--color-text);
    font-size: 1.6rem;
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    margin: 1.6rem auto;
}

.newsletter__picture {
    text-align: center;
}

.newsletter__picture img {
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group.--centered-mobile {
    text-align: center;
}

.form-label {
    color: var(--color-text);
    display: none;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.form-input {
    align-items: center;
    align-self: stretch;
    background: rgba(154, 157, 193, 0.10);
    border-radius: 5px;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    display: flex;
    font-size: 1.2rem;
    height: 48px;
    justify-content: center;
    padding: 0 15px 3px 15px;
    width: 100%;
}

.form-input option {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-text);
    cursor: pointer;
}

select.form-input {
    cursor: pointer;
}

.form-input::placeholder,
select.form-input.placeholder-selected,
select.form-input option.form-group-option-placeholder {
    color: var(--color-text);
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-text);
}

.form-input-position-other {
    display: none;
    margin-top: 2rem;
}

.form-checkboxes {
    margin-bottom: 3rem;
}

.form-checkbox-group {
    align-items: flex-start;
    display: flex;
    margin-bottom: 1.6rem;
}

.form-checkbox {
    accent-color: var(--color-red);
    appearance: none;
    background: rgba(154, 157, 193, 0.10);
    border-radius: 5px;
    border: 1px solid var(--color-text);
    color: var(--color-text);
    cursor: pointer;
    height: 2rem;
    margin-right: 1.2rem;
    min-width: 2rem;
    position: relative;
    transition: all 0.2s ease;
    width: 2rem;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.form-checkbox:checked {
    border-color: var(--color-text);
}

.form-checkbox:checked::after {
    color: var(--color-text);
    content: '✔';
    font-size: 1.4rem;
    font-weight: bold;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.form-checkbox:hover {
    border-color: var(--color-text);
}

.form-checkbox-label {
    color: var(--color-text);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    user-select: none;
}

.rodo-text {
    color: var(--color-text);
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 2rem;
}

.toggle-short,
.toggle-full {
    display: inline;
}

.toggle-trigger {
    background: transparent;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold) !important;
    margin-left: 0.5rem;
    padding: 0;
    text-decoration: none;
}

/* Komunikaty formularza */
.form-message {
    border-radius: 0.4rem;
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.6rem;
    padding: 1.2rem 1.6rem;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message--success {
    background-color: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.form-message--error {
    background-color: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

.button--loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Błędy pól formularza */
.field-error {
    color: #ef4444;
    font-size: 1.2rem;
    font-weight: var(--font-weight-medium);
    margin-top: 0.4rem;
    animation: slideIn 0.3s ease-out;
    display: block;
}

.form-input--error {
    border-color: #ef4444 !important;
    background-color: rgba(239, 68, 68, 0.05) !important;
}

.form-checkbox.form-input--error {
    border-color: #ef4444 !important;
    outline: 2px solid rgba(239, 68, 68, 0.2);
}

.video-popup {
    align-items: center;
    display: none;
    height: 100%;
    justify-content: center;
    left: 0;
    padding: 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.video-popup.is-active {
    display: flex;
}

.video-popup__overlay {
    background-color: #191e48;
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0.9;
    position: absolute;
    top: 0;
    width: 100%;
}

.video-popup__container {
    max-width: 120rem;
    position: relative;
    width: 100%;
    z-index: 10;
}

.video-popup__close {
    align-items: center;
    background: transparent;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    cursor: pointer;
    display: flex;
    height: 3rem;
    justify-content: center;
    outline: none !important;
    position: absolute;
    right: 0;
    top: -4rem;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    width: 3rem;
    z-index: 11;
}

.video-popup__close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.video-popup__close svg {
    display: block;
}

.video-popup__content {
    background-color: #000;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    width: 100%;
}

.video-popup__content:has(.video-popup__consent-message) {
    min-height: auto;
    padding-bottom: 0;
}

.video-popup__content iframe {
    border: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.video-popup__consent-message {
    align-items: center;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    padding: 4rem 2rem;
    position: static;
    text-align: center;
}

.video-popup__consent-icon {
    color: var(--color-red);
    margin-bottom: 2rem;
}

.video-popup__consent-icon svg {
    display: block;
}

.video-popup__consent-message h3 {
    color: var(--color-white);
    font-size: 2.4rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1.3;
    margin-bottom: 1.6rem;
}

.video-popup__consent-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    max-width: 60rem;
}

.video-popup__consent-button {
    margin-top: 2rem;
}


body.popup-open {
    overflow: hidden;
}

@media (min-width: 360px) {
    .more {
        background-position: 0 15rem;
    }
}

@media (min-width: 425px) {
    .button.--outline {
        width: fit-content;
    }

    .more {
        background-position: 0 20rem;
    }
}

@media (min-width: 500px) {
    .more {
        background-position: 0 25rem;
    }
}

@media (min-width: 600px) {
    .more {
        background-position: 0 34rem;
    }
}

@media (max-width: 767px) {
    .application__slider .swiper-button-prev,
    .application__slider .swiper-button-next {
        display: none;
    }

    .video-popup {
        padding: 1rem;
    }

    .video-popup__close {
        top: -4rem;
    }

    .video-popup__close svg {
        width: 24px;
        height: 24px;
    }

    .video-popup__consent-message {
        min-height: 300px;
        padding: 3rem 1.5rem;
    }

    .video-popup__consent-message h3 {
        font-size: 2rem;
    }

    .video-popup__consent-message p {
        font-size: 1.4rem;
    }
}

@media (min-width: 768px) {
    section {
        scroll-margin-top: 0;
    }

    .header {
        position: relative;
    }

    .banner {
        padding-top: 0;
    }

    .banner__video {
        padding-top: 0;
    }

    .button.--outline {
        font-size: 1.8rem;
        width: fit-content;
    }

    .container {
        padding-left: var(--padding-frame-tablet);
        padding-right: var(--padding-frame-tablet);
    }

    .header__logo,
    .header__logo img,
    .header__logo svg {
        height: 62px;
        width: 199px;
    }

    .header__hamburger {
        display: none;
    }

    .header__container {
        justify-content: space-between;
        padding: calc(0.5 * var(--padding-frame-tablet)) var(--padding-frame-tablet);
    }

    .header__menu {
        align-items: center;
        background: none;
        display: flex;
        flex-direction: row;
        gap: var(--padding-frame-tablet);
        padding: 0;
        position: static;
        width: auto;
    }

    .header__nav-list {
        flex-direction: row;
        gap: 2rem;
        width: auto;
    }

    .header__nav-item {
        width: auto;
    }

    .header__nav-item + .header__nav-item {
        border-top: none;
    }

    .header__nav-item a {
        width: auto;
    }

    .header__cta {
        border-top: none;
        margin-top: 0;
        padding-top: 0;
        width: auto;
    }

    .banner {
        max-height: 586px;
    }

    .banner__content {
        gap: 3rem;
    }

    .banner__badge {
        font-size: 2.8rem;
        padding: 8px 18px;
    }

    .banner__h1 {
        font-size: 6rem;
        letter-spacing: -1.8px;
    }

    .banner__h2 {
        font-size: 2.2rem;
    }

    .product__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin: 4rem 3rem;
        padding: 3rem 4rem 3rem 0;
        background: #FFF;
        box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.15);
    }

    .product__list {
        margin: 3.2rem 0 0 0;
    }

    .application__container {
        padding-left: var(--padding-frame-tablet);
    }

    .application__title {
        font-size: 4rem;
        margin-bottom: 4rem;
        padding: 0 var(--padding-frame-tablet);
    }

    .application__slider {
        padding-left: var(--padding-frame-tablet);
    }

    .application__slider .swiper {
        padding: 0 0 6rem;
    }

    .application__slider .swiper-slide {
        max-width: 40rem;
    }

    .application__slider .swiper-scrollbar {
        height: 10px;
        width: calc(100% - 2 * var(--padding-frame-tablet));
    }

    .slide__title {
        margin: 10rem 0 0.5rem;
    }

    .benefits {
        padding: 6rem 0;
    }

    .benefits__content {
        flex-direction: row;
        gap: 5rem;
        padding: 0 var(--padding-frame-tablet);
    }

    .benefits__heading {
        font-size: 1.6rem;
    }

    .benefits__text {        margin: 0.8rem 0 0 0;
    }

    .benefits__desc {
        font-size: 1.4rem;
    }

    .benefits__right {
        flex: 0 0 45%;
    }

    .more {
        overflow: hidden;
        background-position: center;
    }

    .more__container {
        align-items: end;
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: space-between;
        justify-items: center;
        padding: 0;
    }

    .more__left img,
    .more__left picture {
        z-index: 1;
    }

    .more__right {
        padding: 0 var(--padding-frame-tablet) 2rem;
    }

    .newsletter {
        background-image:
            url("../assets/benefits_background_desktop_zk49wp.avif"),
            url("../assets/benefits_background_desktop_zk49wp.jpg");
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 6rem 0 8rem 0;
    }

    .newsletter__content {
        padding: 0 var(--padding-frame-tablet) 0 var(--padding-frame-tablet);
    }

    .newsletter__title {
        font-size: 3.2rem;
    }

    .newsletter__description {
        font-size: 1.7rem;
    }

    .newsletter__form-title {
        font-size: 2.2rem;
    }
}

@media (min-width: 1024px) {
    .header__nav-list {
        gap: 3rem;
    }

    .header__menu {
        gap: 3rem;
    }

    .banner__badge {
        font-size: 3rem;
        padding: 8px 24px;
    }

    .product__container {
        gap: 3.2rem;
    }

    .application__title {
        font-size: 3.4rem;
        margin-bottom: 5rem;
    }

    .application__slider .swiper-scrollbar {
        height: 12px;
    }

    .benefits {
        padding: 8rem 0;
    }

    .benefits__content {
        gap: 6rem;
    }

    .benefits__title {
        font-size: 4.8rem;
        margin-bottom: 4rem;
    }

    .benefits__list {
        gap: 3rem;
    }

    .benefits__heading {
        font-size: 2.2rem;
    }

    .benefits__text {
        margin: 0.4rem 0 0 0;
    }


    .benefits__desc {
        font-size: 1.6rem;
    }

    .benefits__right {
        flex: 0 0 50%;
    }

    .more__container {
        flex-direction: row;
        gap: 3rem;
    }

    .more__right {
        padding: 0 calc(2 * var(--padding-frame-tablet)) 4rem;
    }

    .more__right h2 {
        font-size: 4rem;
    }

    .more__right p {
        font-size: 1.7rem;
    }
}

@media (min-width: 1200px) {
    .button.--outline {
        font-size: 2.2rem;
    }

    .container {
        padding-left: var(--padding-frame-desktop);
        padding-right: var(--padding-frame-desktop);
    }

    .header__nav-list {
        gap: 4rem;
    }

    .header__menu {
        gap: 4rem;
    }

    .banner {
        max-height: 800px;
    }

    .banner__badge {
        font-size: 3.2rem;
        padding: 8px 30px;
    }

    .banner__h1 {
        font-size: 15rem;
        letter-spacing: -4.5px;
    }

    .banner__h2 {
        font-size: 3.4rem;
        max-width: 65rem;
    }

    .product {
        background-image:
            url("../assets/product_tytan_background_desktop_zk49wp.avif"),
            url("../assets/product_tytan_background_desktop_zk49wp.jpg");
        padding: 5rem 0;
    }

    .application__container {
        margin: 0 auto;
        overflow: hidden;
        padding-left: var(--padding-frame-desktop);
    }

    .application__slider .swiper-slide:not(.swiper-slide-active, .swiper-slide-next)::after {
        background: linear-gradient(to right, transparent 0%, rgba(1, 32, 78, 0.6) 30%);
        content: '';
        height: 100%;
        pointer-events: none;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 2;
    }

    .application__slider .swiper-slide {
        position: relative;
    }

    .application__slider .swiper-scrollbar {
        max-width: 1120px;
    }

    .application__slider .swiper-slide {
        max-width: 45rem;
    }

    .benefits {
        background-image:
            linear-gradient(178deg, rgba(255, 255, 255, 0.00) 13.49%, #FFF 92.25%),
            url("../assets/benefits_background_desktop_zk49wp.avif"),
            url("../assets/benefits_background_desktop_zk49wp.jpg");
    }

    .benefits__item {
        gap: 1.6rem;
    }

    .benefits__title {
        font-size: 3.4rem;
    }

    .more {
        background-position: top;
    }

    .more__container {
        padding-top: 4rem;
    }

    .more__right {
        padding: 0 0 6rem;
    }

    .newsletter__content {
        align-content: center;
        align-items: center;
        display: grid;
        gap: 3rem;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }

    .newsletter__title {
        font-size: 3.4rem;
        margin-bottom: 1.6rem;
    }

    .newsletter__description {
        font-size: 1.8rem;
        margin-bottom: 1.6rem;
    }

    .newsletter__form-title {
        font-size: 2.2rem;
    }

    .newsletter__steps {
        margin: 1.6rem 0;
    }
}
