:root {
  --font-base: 14px;
  --font-h1: 45px;
  --font-title: 32px;
  --font-price: 22px;
  --grid-gutter: 10px;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #8E9099;
  --color-darkgray: #3D3F48;
  --color-bg: #F5F5F5;
  --color-text: #000000;
  --btn-radius: 12px;
  --header-h: 80vh;
}
@media (max-width: 768px) {
  :root {
    --font-base: 14px;
    --font-h1: 26px;
    --font-title: 18px;
    --grid-gutter: 10px;
    --btn-radius: 12px;
    --header-h: 600px;
  }
}
body {
  font-size: var(--font-base);
  font-family: 'Suisse Intl', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: var(--grid-gutter);
}
@media screen and (max-width: 768px) {
  .container {
    padding-inline: calc(var(--grid-gutter) * 2);
  }
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gutter);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gutter);
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gutter);
}
@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}
.btn {
  background: var(--color-accent);
  color: var(--color-black);
  text-decoration: none;
  display: inline-flex;
  padding: 15px 27px;
  border-radius: var(--btn-radius);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 12px 27px;
  }
}
.btn svg {
  display: flex;
  margin-left: 10px;
  height: 14px;
}
.btn--pill {
  font-size: 12px;
  padding: 10px 27px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  backdrop-filter: blur(1px) brightness(0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
}
.btn--pill._black {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}
.btn--pill._black img {
  height: 10px;
  position: relative;
  top: 1px;
}
.btn--pill._accent {
  margin-top: 50px;
  background: var(--color-accent);
  border: 0;
  color: var(--color-white);
  font-family: 'Grtsk Giga';
  font-size: 10px;
  border-radius: 25px;
  padding: 18px 27px;
}
@media screen and (max-width: 768px) {
  .btn--pill._accent {
    padding: 12px 27px;
  }
}
.btn--pill._accent:hover {
  background: var(--color-accent-hover);
}
.hero {
  position: relative;
  height: var(--header-h);
  color: var(--color-white);
  min-height: 800px;
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: unset;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero__top {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .hero__top {
    display: flex;
    justify-content: space-between;
    align-items: top;
    padding-top: 20px;
  }
}
.hero__content {
  margin-top: 20vh;
}
@media screen and (max-width: 768px) {
  .hero__content {
    margin-top: calc(var(--grid-gutter) * 10);
  }
}
@media screen and (max-width: 768px) {
  .hero__content p {
    font-size: 12px;
    padding-right: calc(var(--grid-gutter) * 10);
  }
}
.hero__title {
  font-size: var(--font-h1);
  font-family: 'Grtsk Giga';
}
.hero__buttons {
  margin-top: calc(var(--grid-gutter) * 4);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .hero__buttons {
    margin-top: calc(var(--grid-gutter) * 2);
  }
}
.hero__buttons .btn {
  width: fit-content;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .hero__logo-left img {
    max-height: 100px;
    max-width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .hero__logo-right {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .hero__logo-right img {
    max-height: 25px;
  }
}
@media screen and (max-width: 768px) {
  .banners {
    position: relative;
    margin-top: -75px;
    margin-bottom: 40px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-right: 24px;
    -webkit-overflow-scrolling: touch;
  }
}
.banner {
  position: relative;
  top: -75px;
  background: var(--color-white);
  border-radius: var(--btn-radius);
  border-top-right-radius: 50px;
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 10px;
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .banner {
    border-radius: var(--btn-radius);
    grid-template-columns: 100fr 0fr;
    flex: 0 0 100%;
    z-index: 10;
    position: static;
  }
}
.banner__left {
  display: flex;
  flex-direction: column;
  padding: calc(var(--grid-gutter) * 3) var(--grid-gutter) calc(var(--grid-gutter) * 3) calc(var(--grid-gutter) * 9);
  position: relative;
}
@media screen and (max-width: 768px) {
  .banner__left {
    padding: calc(var(--grid-gutter) * 2) var(--grid-gutter) calc(var(--grid-gutter) * 3) calc(var(--grid-gutter) * 6);
  }
}
.banner__left h3 {
  font-size: 18px;
  font-family: 'Grtsk Giga';
  margin-bottom: calc(var(--grid-gutter) * 1);
}
.banner__left p {
  color: #8E9099;
  margin-bottom: 0;
  font-size: 12px;
}
.banner__right {
  background: linear-gradient(180deg, #090714 20%, var(--color-accent) 90%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%, 0 0, 0 0);
  position: relative;
  border-top-right-radius: var(--btn-radius);
  border-bottom-right-radius: var(--btn-radius);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .banner__right {
    display: none;
  }
}
.banner__icon {
  position: absolute;
  top: calc(var(--grid-gutter) * 2.5);
  left: calc(var(--grid-gutter) * 4);
}
@media screen and (max-width: 768px) {
  .banner__icon {
    left: calc(var(--grid-gutter) * 1.5);
    top: calc(var(--grid-gutter) * 1.5);
  }
}
.banner__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 120%;
  height: 100%;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: bottom right;
}
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(var(--grid-gutter) * 1);
}
.pricing-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gutter);
  background: var(--color-white);
  border-radius: var(--btn-radius);
  overflow: hidden;
  padding: var(--grid-gutter);
}
@media screen and (max-width: 768px) {
  .pricing-card {
    display: flex;
    flex-direction: column;
  }
}
.pricing-card__top {
  display: flex;
  flex-direction: column;
  gap: calc(var(--grid-gutter) * 1);
  padding: calc(var(--grid-gutter) * 3) calc(var(--grid-gutter) * 1) calc(var(--grid-gutter) * 1) calc(var(--grid-gutter) * 1);
}
@media screen and (max-width: 768px) {
  .pricing-card__top {
    padding-top: calc(var(--grid-gutter) * 1);
  }
}
.pricing-card ul {
  padding: 0;
  margin: 0;
  margin-top: calc(var(--grid-gutter) * 0.5);
  list-style: none;
}
.pricing-card ul li {
  margin-bottom: calc(var(--grid-gutter) * 0.35);
  position: relative;
  padding-left: 15px;
}
.pricing-card ul li:after {
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 18px;
  content: "‣";
}
.pricing-card ul li span {
  opacity: 0.7;
  display: inline-block;
  margin: 0 3px;
}
.pricing-card__title {
  font-size: var(--font-title);
  font-weight: 500;
  color: var(--color-black);
  font-family: 'Grtsk Giga';
}
.pricing-card__price {
  font-size: var(--font-price);
  font-weight: 500;
  color: var(--color-accent);
  font-family: 'Grtsk Giga';
}
.pricing-card__actions {
  margin-top: calc(var(--grid-gutter) * 4);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .pricing-card__actions {
    margin-top: calc(var(--grid-gutter) * 1);
  }
}
.pricing-card__desc {
  font-size: 14px;
  color: #ccc;
}
.pricing-card__desc-params {
  display: flex;
  gap: calc(var(--grid-gutter) * 3);
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .pricing-card__desc-params {
    gap: calc(var(--grid-gutter) * 1);
    flex-direction: column;
  }
}
.pricing-card__desc-params div {
  flex-direction: column;
  border-right: 1px solid #D0D1D7;
  padding-right: calc(var(--grid-gutter) * 3);
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .pricing-card__desc-params div {
    border-right: 0;
    flex: 1;
    padding-right: calc(var(--grid-gutter) * 1);
  }
}
.pricing-card__desc-params div:last-child {
  border-right: 0;
  padding-right: 0;
}
.pricing-card__desc-params div span {
  color: var(--color-gray);
  display: block;
}
.pricing-card__cta {
  margin-top: auto;
  align-self: flex-start;
  color: var(--color-white);
  font-family: 'Grtsk Giga';
  font-size: 10px;
  border-radius: 25px;
}
.pricing-card__cta:hover {
  background: var(--color-accent-hover);
}
.pricing-card__bottom {
  text-align: right;
  height: 250px;
  border-radius: var(--btn-radius);
  overflow: hidden;
}
.pricing-card__image {
  height: 250px;
}
.pricing-card__image img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .pricing-card__image img {
    height: auto;
  }
}
.steps {
  margin-top: calc(var(--grid-gutter) * 8);
}
@media screen and (max-width: 768px) {
  .steps {
    margin-top: calc(var(--grid-gutter) * 4);
  }
}
.steps .section-title {
  font-size: var(--font-title);
  margin-bottom: calc(var(--grid-gutter) * 8);
  font-family: 'Grtsk Giga';
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .steps .section-title {
    margin-bottom: calc(var(--grid-gutter) * 6);
  }
}
@media screen and (max-width: 768px) {
  .steps__scroll {
    overflow-x: auto;
    gap: 12px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
}
.steps__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto calc(var(--grid-gutter) * 1);
  position: relative;
}
.steps__description {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto calc(var(--grid-gutter) * 4);
  position: relative;
}
@media screen and (max-width: 768px) {
  .steps__description {
    margin: 0 auto;
  }
}
.steps__text {
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .steps__text {
    flex: 0 0 50vw;
  }
}
.steps__text._small {
  font-size: 12px;
  color: #888;
  margin-top: calc(var(--grid-gutter) * 3);
}
@media screen and (max-width: 768px) {
  .steps__text._small {
    margin-top: calc(var(--grid-gutter) * 1);
  }
}
.steps__btn {
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .steps__btn {
    margin-top: calc(var(--grid-gutter) * 2);
  }
}
.steps .step {
  position: relative;
  flex: 1;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .steps .step {
    flex: 0 0 50vw;
    scroll-snap-align: start;
    position: relative;
  }
}
.steps .step__dots {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  position: absolute;
  left: -3px;
  top: calc(50% - 2px);
  z-index: 10;
}
.steps .step:before {
  content: '';
  position: absolute;
  top: calc(50% - 0px);
  left: 0;
  right: 0;
  height: 1px;
  border-top: 1px dashed #bbb;
  z-index: -1;
}
.steps .step:first-child:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: linear-gradient(to right, #f5f5f5 70%, rgba(245, 245, 245, 0) 100%);
}
.steps .step:first-child .step__dots {
  display: none;
}
.steps .step:nth-child(2):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: linear-gradient(to right, rgba(245, 245, 245, 0) 0%, #f5f5f5 70%, rgba(245, 245, 245, 0) 100%);
}
.steps .step:nth-child(3):after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: linear-gradient(to right, rgba(245, 245, 245, 0) 0%, #f5f5f5 70%, rgba(245, 245, 245, 0) 100%);
}
.steps .step:last-child:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  height: 100%;
  width: 50%;
  z-index: -1;
  background: #f5f5f5;
}
.steps .step__circle {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border: 1px solid #0b3d2e;
  border-radius: 50%;
  font-size: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b3d2e;
  background: var(--color-white);
  text-align: center;
  position: relative;
  font-family: 'Grtsk Thin Giga';
  font-weight: 100;
}
.steps .step__title {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  margin-bottom: calc(var(--grid-gutter) * 1);
}
@media screen and (max-width: 768px) {
  .steps .step__title {
    font-size: 12px;
  }
}
.steps__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0b3d2e;
  color: #fff;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.steps__button:hover {
  background: #0a3326;
}
.steps__button:hover .icon {
  transform: translateX(3px);
}
.steps__button .icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .steps .step__circle {
    width: 80px;
    height: 80px;
    font-size: 32px;
    line-height: 80px;
  }
  .steps .step__desc {
    max-width: 100%;
  }
}
.warning {
  background: var(--color-white);
  padding: calc(var(--grid-gutter) * 6) calc(var(--grid-gutter) * 6) calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 6);
  margin: calc(var(--grid-gutter) * 6) 0;
}
@media screen and (max-width: 768px) {
  .warning {
    padding: calc(var(--grid-gutter) * 4) calc(var(--grid-gutter) * 0);
  }
}
.warning .section-title {
  font-size: var(--font-title);
  margin-bottom: calc(var(--grid-gutter) * 8);
  font-family: 'Grtsk Giga';
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .warning .section-title {
    margin-bottom: calc(var(--grid-gutter) * 1);
  }
}
.warning .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gutter);
}
@media screen and (max-width: 768px) {
  .warning .container {
    grid-template-columns: 1fr;
  }
}
.warning small {
  font-size: 10px;
  opacity: 0.5;
}
.warning ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.warning ul li {
  margin-bottom: calc(var(--grid-gutter) * 1);
  position: relative;
  padding-left: 15px;
}
.warning ul li:after {
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 18px;
  content: "‣";
}
.gallery {
  margin-top: calc(var(--grid-gutter) * 8);
}
@media screen and (max-width: 768px) {
  .gallery {
    margin-top: calc(var(--grid-gutter) * 4);
  }
}
.gallery .section-title {
  font-size: var(--font-title);
  margin-bottom: calc(var(--grid-gutter) * 4);
  font-family: 'Grtsk Giga';
  display: flex;
  justify-content: space-between;
}
.gallery .section-title__arrow {
  border-radius: 999px;
  height: 44px;
  padding: 0 6px;
  display: flex;
  border: 1px solid rgba(9, 7, 20, 0.1);
  align-items: center;
  background: var(--color-white);
}
@media screen and (max-width: 768px) {
  .gallery .section-title__arrow {
    display: none;
  }
}
.gallery .section-title__arrow .swiper-button-disabled {
  opacity: 0.3;
}
.gallery .section-title__arrow button {
  width: 32px;
  height: 32px;
  background: var(--color-white);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--color-black);
  border: 0;
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}
.gallery .tabs {
  display: flex;
  gap: calc(var(--grid-gutter) * 1);
  margin-bottom: calc(var(--grid-gutter) * 2);
}
.gallery .tabs button {
  border: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
  padding: calc(var(--grid-gutter) * 1) calc(var(--grid-gutter) * 2);
  border-radius: 32px;
  cursor: pointer;
  font-family: 'Grtsk Giga';
  font-size: 10px;
}
.gallery .tabs button.active {
  color: var(--color-accent);
  border: 1px solidvar(--color-accent);
}
.gallery .gallery__swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 460px;
  overflow: hidden;
  border-radius: var(--btn-radius);
}
@media screen and (max-width: 768px) {
  .gallery .gallery__swiper .swiper-slide {
    height: 300px;
  }
}
.gallery .gallery__swiper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.features {
  margin-top: calc(var(--grid-gutter) * 8);
}
@media screen and (max-width: 768px) {
  .features {
    margin-top: calc(var(--grid-gutter) * 4);
  }
}
.features .section-title {
  border: 1px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
  padding: calc(var(--grid-gutter) * 1) calc(var(--grid-gutter) * 2);
  border-radius: 32px;
  cursor: pointer;
  font-family: 'Grtsk Giga';
  font-size: 10px;
  width: fit-content;
}
.features .section-title._top {
  margin-top: calc(var(--grid-gutter) * 2);
}
.features .section-title._bottom {
  margin-bottom: calc(var(--grid-gutter) * 2);
}
.features__image {
  margin: 0;
  background: var(--color-white);
  padding: calc(var(--grid-gutter) / 2);
  border-radius: var(--btn-radius);
  height: 750px;
}
@media screen and (max-width: 900px) {
  .features__image {
    height: auto;
  }
}
.features__image img {
  max-width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  border-radius: 6px;
}
@media screen and (max-width: 900px) {
  .features__image img {
    height: auto;
    object-position: unset;
    object-fit: unset;
  }
}
.features__list {
  display: flex;
  gap: calc(var(--grid-gutter) * 1);
  flex-direction: column;
  justify-content: space-between;
}
.features__list ul {
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: calc(var(--grid-gutter) * 1);
  background: var(--color-white);
  border-radius: var(--btn-radius);
  padding: calc(var(--grid-gutter) * 2);
}
@media screen and (max-width: 768px) {
  .features__list ul {
    padding: calc(var(--grid-gutter) * 1);
  }
}
.features__list li {
  display: flex;
  align-items: center;
  gap: calc(var(--grid-gutter) * 1);
  background: var(--color-bg);
  padding: calc(var(--grid-gutter) / 2);
  padding-right: calc(var(--grid-gutter) * 5);
  border-radius: var(--btn-radius);
  position: relative;
}
.features__list li:after {
  position: absolute;
  right: 10px;
  top: calc(50% - 7px);
  content: "";
  z-index: 1;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
}
.features__list li span {
  display: inline-grid;
  place-items: center;
  min-width: 70px;
  width: 70px;
  height: 56px;
  border-radius: 12px;
  background: #6BB07733;
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .features .grid-2 {
    grid-template-columns: 2fr 3fr;
  }
}
@media screen and (max-width: 868px) {
  .features .grid-2 {
    grid-template-columns: 1fr;
  }
}
.footer {
  margin-top: 50px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 16px;
  border-top-right-radius: var(--btn-radius);
  border-top-left-radius: var(--btn-radius);
  background: var(--color-black);
  padding: calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 2) calc(var(--grid-gutter) * 4);
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 10px;
  }
}
.footer--bg {
  position: relative;
}
.footer__logo {
  margin-bottom: calc(var(--grid-gutter) * 2);
}
.footer__logo img {
  max-height: 20px;
}
.footer a {
  color: var(--color-white);
  text-decoration: none;
}
.footer__col span {
  display: block;
  height: 24px;
  opacity: 0.5;
  font-size: 10px;
}
.footer__icons {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  display: flex;
  gap: calc(var(--grid-gutter) * 1);
}
@media screen and (max-width: 768px) {
  .footer__icons {
    top: unset;
    bottom: 0;
  }
}
.footer__copyright {
  margin-top: calc(var(--grid-gutter) * 2);
  opacity: 0.5;
}
@media (max-width: 768px) {
  .pricing-card__actions {
    flex-direction: column;
    gap: calc(var(--grid-gutter) * 2);
  }
  .banners--pricing .banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .banners--pricing .banner .banner__right {
    order: -1;
    text-align: center;
  }
  .banners--pricing .banner .banner__cta {
    align-self: center;
  }
}
.tooltip {
  position: relative;
  display: inline-block;
}
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.tooltip:hover::after {
  opacity: 1;
}
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 90%;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .cookie-banner {
    font-size: 12px;
  }
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}
.cookie-banner a {
  color: #000;
  text-decoration: underline;
}
.cookie-banner__btn {
  background: #f5f5f5;
  color: var(--color-black);
  border: none;
  border-radius: var(--btn-radius);
  padding: 8px 20px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}
@media screen and (max-width: 768px) {
  .cookie-banner__btn {
    margin: 0 auto;
  }
}
.cookie-banner__btn:hover {
  background: #e8e8e8;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
}
.hidden {
  display: none;
}
