/* wp96aj */
/* Zmienne */
:root {
  --color-border: rgba(255, 255, 255, 0.5);
  --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 {
  min-width: 320px;
  color: var(--color-text);
  font-weight: var(--font-weight-normal);
  font-size: 1.6rem;
  font-family: var(--font-family), sans-serif;
  line-height: 1.2;
  background-color: var(--color-white);
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utils */

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

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

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

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

/* Kontener */

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

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

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

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

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

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

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

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

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

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

/* Header */
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  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.1);
}

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

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

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

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

.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) {
  width: 0;
  opacity: 0;
}

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

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

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

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

.header__nav-item {
  width: 100%;
}

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

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

.header__cta svg {
  margin-left: 0.4rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Zastosowanie */
.application {
  width: 100%;
  max-width: 100vw;
  padding: 4rem 0;
  overflow: hidden;
  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.2);
}

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

.application__content {
  width: 100%;
}

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

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

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

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

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

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

.slide__link {
  text-decoration: none;
}

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

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

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

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

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

.application__slider .swiper-scrollbar-drag {
  height: 100%;
  border-radius: 10px;
  background: var(--color-red);
  cursor: grab;
  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 {
  width: 44px;
  height: 44px;
  color: var(--color-white);
}

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

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

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

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

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

.benefits__left {
  flex: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
  max-width: 100%;
  margin: 0 auto;
}

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

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

.newsletter__form {
  background: transparent;
}

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

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

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

.newsletter__step-number {
  color: #b3b3b3;
  font-weight: var(--font-weight-semibold);
  font-size: 1.8rem;
  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 {
  margin-bottom: 1.6rem;
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
  font-size: 2.1rem;
  line-height: 1.5;
}

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

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

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

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

.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 {
  display: none;
  margin-bottom: 1.2rem;
  color: var(--color-text);
  font-weight: 400;
  font-size: 1.2rem;
}

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

.form-input option {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.15);
  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 {
  border-color: var(--color-text);
  background: rgba(255, 255, 255, 0.15);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

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

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

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

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

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

.video-popup__close svg {
  display: block;
}

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

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

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

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

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

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

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

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

.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 {
    width: fit-content;
    font-size: 1.8rem;
  }

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

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

  .header__hamburger {
    display: none;
  }

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

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

  .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 {
    width: auto;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .banner {
    max-height: 586px;
  }

  .banner__content {
    gap: 3rem;
  }

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

  .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 {
    margin-bottom: 4rem;
    padding: 0 var(--padding-frame-tablet);
    font-size: 4rem;
  }

  .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 {
    width: calc(100% - 2 * var(--padding-frame-tablet));
    height: 10px;
  }

  .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 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    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 {
    padding: 6rem 0 8rem 0;
    background-image: url("../assets/benefits_background_desktop_zk49wp.avif"),
      url("../assets/benefits_background_desktop_zk49wp.jpg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
  }

  .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 {
    padding: 8px 24px;
    font-size: 3rem;
  }

  .product__container {
    gap: 3.2rem;
  }

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

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

  .benefits {
    padding: 8rem 0;
  }

  .benefits__content {
    gap: 6rem;
  }

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

  .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-right: var(--padding-frame-desktop);
    padding-left: var(--padding-frame-desktop);
  }

  .header__nav-list {
    gap: 4rem;
  }

  .header__menu {
    gap: 4rem;
  }

  .banner {
    max-height: 800px;
  }

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

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

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

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

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

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

  .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) 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 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-content: center;
    align-items: center;
    justify-content: center;
  }

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

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

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

  .newsletter__steps {
    margin: 1.6rem 0;
  }
}
